Internal
problem
ID
[13797]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
19,
CauchyEuler
equations.
Exercises
page
174
Problem
number
:
19.1
(ii)
Date
solved
:
Tuesday, January 28, 2025 at 06:03:47 AM
CAS
classification
:
[[_Emden, _Fowler]]
With initial conditions
✓ Solution by Maple
Time used: 0.017 (sec). Leaf size: 14
dsolve([4*x^2*diff(y(x),x$2)+y(x)=0,y(1) = 1, D(y)(1) = 0],y(x), singsol=all)
✓ Solution by Mathematica
Time used: 0.026 (sec). Leaf size: 47
DSolve[{x^2*D[y[x],{x,2}]+y[x]==0,{y[1]==1,Derivative[1][y][1]==0}},y[x],x,IncludeSingularSolutions -> True]