Internal
problem
ID
[2724]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
2.
Second
order
differential
equations.
Section
2.15,
Higher
order
equations.
Excercises
page
263
Problem
number
:
15
Date
solved
:
Tuesday, March 04, 2025 at 02:40:23 PM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
ode:=diff(diff(diff(diff(y(t),t),t),t),t)+2*diff(diff(y(t),t),t)+y(t) = t^2*sin(t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,4}]+2*D[y[t],{t,2}]+y[t]==t^2*Sin[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-t**2*sin(t) + y(t) + 2*Derivative(y(t), (t, 2)) + Derivative(y(t), (t, 4)),0) ics = {} dsolve(ode,func=y(t),ics=ics)