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