Internal
problem
ID
[2723]
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
:
14
Date
solved
:
Tuesday, September 30, 2025 at 05:50:14 AM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
ode:=diff(diff(diff(diff(y(t),t),t),t),t)-y(t) = t+sin(t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,4}]-y[t]==t+Sin[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-t - y(t) - sin(t) + Derivative(y(t), (t, 4)),0) ics = {} dsolve(ode,func=y(t),ics=ics)