Internal
problem
ID
[14024]
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(d)
Date
solved
:
Monday, March 31, 2025 at 08:22:19 AM
CAS
classification
:
[[_3rd_order, _missing_x]]
ode:=diff(diff(diff(y(t),t),t),t)+3*diff(diff(y(t),t),t)+3*diff(y(t),t)+y(t) = 5; dsolve(ode,y(t), singsol=all);
ode=D[ y[t],{t,3}]+3*D[y[t],{t,2}]+3*D[y[t],t]+y[t]==5; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t) + 3*Derivative(y(t), t) + 3*Derivative(y(t), (t, 2)) + Derivative(y(t), (t, 3)) - 5,0) ics = {} dsolve(ode,func=y(t),ics=ics)