17.17 problem 17

Internal problem ID [14818]

Book: INTRODUCTORY DIFFERENTIAL EQUATIONS. Martha L. Abell, James P. Braselton. Fourth edition 2014. ElScAe. 2014
Section: Chapter 4. Higher Order Equations. Exercises 4.9, page 215
Problem number: 17.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_Emden, _Fowler], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]

\[ \boxed {x^{2} y^{\prime \prime }-3 y^{\prime } x +4 y=0} \] With the expansion point for the power series method at \(x = 0\).

Solution by Maple

Time used: 0.032 (sec). Leaf size: 29

Order:=6; 
dsolve(x^2*diff(y(x),x$2)-3*x*diff(y(x),x)+4*y(x)=0,y(x),type='series',x=0);
 

\[ y \left (x \right ) = x^{2} \left (c_{1} +c_{2} \ln \left (x \right )\right )+O\left (x^{6}\right ) \]

Solution by Mathematica

Time used: 0.002 (sec). Leaf size: 18

AsymptoticDSolveValue[x^2*y''[x]-3*x*y'[x]+4*y[x]==0,y[x],{x,0,5}]
 

\[ y(x)\to c_1 x^2+c_2 x^2 \log (x) \]