Internal
problem
ID
[2636]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
2.
Second
order
differential
equations.
Section
2.8.1,
singular
points,
Euler
equations.
Excercises
page
203
Problem
number
:
9
Date
solved
:
Monday, January 27, 2025 at 06:05:04 AM
CAS
classification
:
[[_Emden, _Fowler]]
With initial conditions
✓ Solution by Maple
Time used: 0.013 (sec). Leaf size: 25
dsolve([t^2*diff(y(t),t$2)-t*diff(y(t),t)-2*y(t)=0,y(1) = 0, D(y)(1) = 1],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.018 (sec). Leaf size: 36
DSolve[{t^2*D[y[t],{t,2}]-t*D[y[t],t]-2*y[t]==0,{y[1]==0,Derivative[1][y][1] ==1}},y[t],t,IncludeSingularSolutions -> True]