Internal
problem
ID
[8818]
Book
:
THEORY
OF
DIFFERENTIAL
EQUATIONS
IN
ENGINEERING
AND
MECHANICS.
K.T.
CHAU,
CRC
Press.
Boca
Raton,
FL.
2018
Section
:
Chapter
3.
Ordinary
Differential
Equations.
Section
3.5
HIGHER
ORDER
ODE.
Page
181
Problem
number
:
Example
3.37
Date
solved
:
Tuesday, September 30, 2025 at 05:52:54 PM
CAS
classification
:
[[_high_order, _missing_y]]
ode:=diff(diff(diff(diff(diff(y(t),t),t),t),t),t)-1/t*diff(diff(diff(diff(y(t),t),t),t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=D[ y[t],{t,5}]-1/t*D[y[t],{t,4}]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(Derivative(y(t), (t, 5)) - Derivative(y(t), (t, 4))/t,0) ics = {} dsolve(ode,func=y(t),ics=ics)