Internal
problem
ID
[15373]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
6.
Introduction
to
Systems
of
ODEs.
Problems
page
408
Problem
number
:
Problem
2(a)
Date
solved
:
Thursday, October 02, 2025 at 10:12:19 AM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(y(t),t),t)+2*diff(y(t),t)+y(t) = 1; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]+2*D[y[t],t]+y[t]==1; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t) + 2*Derivative(y(t), t) + Derivative(y(t), (t, 2)) - 1,0) ics = {} dsolve(ode,func=y(t),ics=ics)