Internal
problem
ID
[7679]
Book
:
Basic
Training
in
Mathematics.
By
R.
Shankar.
Plenum
Press.
NY.
1995
Section
:
Chapter
10,
Differential
equations.
Section
10.2,
ODEs
with
constant
Coefficients.
page
307
Problem
number
:
10.2.8
part(2)
Date
solved
:
Tuesday, September 30, 2025 at 04:55:51 PM
CAS
classification
:
[[_high_order, _missing_x]]
ode:=diff(diff(diff(diff(x(t),t),t),t),t)+x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,4}]+x[t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(x(t) + Derivative(x(t), (t, 4)),0) ics = {} dsolve(ode,func=x(t),ics=ics)