Internal
problem
ID
[13591]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
11,
The
nth
order
homogeneous
linear
differential
equation.
Section
11.6,
Exercises
page
567
Problem
number
:
1
(a)
Date
solved
:
Monday, March 31, 2025 at 08:02:03 AM
CAS
classification
:
[[_Emden, _Fowler], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]
ode:=t*diff(diff(x(t),t),t)-2*diff(x(t),t)+9*t^5*x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=t*D[x[t],{t,2}]-2*D[x[t],t]+9*t^5*x[t]==0; ic={}; DSolve[{ode,ic},{x[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(9*t**5*x(t) + t*Derivative(x(t), (t, 2)) - 2*Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)