Internal
problem
ID
[13801]
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
(vi)
Date
solved
:
Tuesday, January 28, 2025 at 06:03:59 AM
CAS
classification
:
[[_2nd_order, _exact, _linear, _homogeneous]]
With initial conditions
✓ Solution by Maple
Time used: 0.008 (sec). Leaf size: 7
dsolve([x^2*diff(y(x),x$2)-x*diff(y(x),x)-3*y(x)=0,y(1) = 1, D(y)(1) = -1],y(x), singsol=all)
✓ Solution by Mathematica
Time used: 0.085 (sec). Leaf size: 169
DSolve[{x^2*D[y[x],{x,2}]-x*y[x]-3*y[x]==0,{y[1]==1,Derivative[1][y][1]==-1}},y[x],x,IncludeSingularSolutions -> True]