5.13 problem 13

5.13.1 Maple step by step solution

Internal problem ID [7306]
Internal file name [OUTPUT/6292_Sunday_June_05_2022_04_37_27_PM_5680654/index.tex]

Book: Own collection of miscellaneous problems
Section: section 5.0
Problem number: 13.
ODE order: 2.
ODE degree: 1.

The type(s) of ODE detected by this program : "second_order_linear_constant_coeff"

Maple gives the following as the ode type

[[_2nd_order, _linear, _nonhomogeneous]]

Unable to solve or complete the solution.

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

The type of the expansion point is first determined. This is done on the homogeneous part of the ODE. \[ y^{\prime \prime }+y = 0 \] The following is summary of singularities for the above ode. Writing the ode as \begin {align*} y^{\prime \prime }+p(x) y^{\prime } + q(x) y &=0 \end {align*}

Where \begin {align*} p(x) &= 0\\ q(x) &= 1\\ \end {align*}

Table 140: Table \(p(x),q(x)\) singularites.
\(p(x)=0\)
singularity type
\(q(x)=1\)
singularity type

Combining everything together gives the following summary of singularities for the ode as

Regular singular points : \([]\)

Irregular singular points : \([\infty ]\)

Verification of solutions N/A

5.13.1 Maple step by step solution

\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & y^{\prime \prime }+y=\frac {1}{x} \\ \bullet & {} & \textrm {Highest derivative means the order of the ODE is}\hspace {3pt} 2 \\ {} & {} & y^{\prime \prime } \\ \bullet & {} & \textrm {Characteristic polynomial of homogeneous ODE}\hspace {3pt} \\ {} & {} & r^{2}+1=0 \\ \bullet & {} & \textrm {Use quadratic formula to solve for}\hspace {3pt} r \\ {} & {} & r =\frac {0\pm \left (\sqrt {-4}\right )}{2} \\ \bullet & {} & \textrm {Roots of the characteristic polynomial}\hspace {3pt} \\ {} & {} & r =\left (\mathrm {-I}, \mathrm {I}\right ) \\ \bullet & {} & \textrm {1st solution of the homogeneous ODE}\hspace {3pt} \\ {} & {} & y_{1}\left (x \right )=\cos \left (x \right ) \\ \bullet & {} & \textrm {2nd solution of the homogeneous ODE}\hspace {3pt} \\ {} & {} & y_{2}\left (x \right )=\sin \left (x \right ) \\ \bullet & {} & \textrm {General solution of the ODE}\hspace {3pt} \\ {} & {} & y=c_{1} y_{1}\left (x \right )+c_{2} y_{2}\left (x \right )+y_{p}\left (x \right ) \\ \bullet & {} & \textrm {Substitute in solutions of the homogeneous ODE}\hspace {3pt} \\ {} & {} & y=c_{1} \cos \left (x \right )+c_{2} \sin \left (x \right )+y_{p}\left (x \right ) \\ \square & {} & \textrm {Find a particular solution}\hspace {3pt} y_{p}\left (x \right )\hspace {3pt}\textrm {of the ODE}\hspace {3pt} \\ {} & \circ & \textrm {Use variation of parameters to find}\hspace {3pt} y_{p}\hspace {3pt}\textrm {here}\hspace {3pt} f \left (x \right )\hspace {3pt}\textrm {is the forcing function}\hspace {3pt} \\ {} & {} & \left [y_{p}\left (x \right )=-y_{1}\left (x \right ) \left (\int \frac {y_{2}\left (x \right ) f \left (x \right )}{W \left (y_{1}\left (x \right ), y_{2}\left (x \right )\right )}d x \right )+y_{2}\left (x \right ) \left (\int \frac {y_{1}\left (x \right ) f \left (x \right )}{W \left (y_{1}\left (x \right ), y_{2}\left (x \right )\right )}d x \right ), f \left (x \right )=\frac {1}{x}\right ] \\ {} & \circ & \textrm {Wronskian of solutions of the homogeneous equation}\hspace {3pt} \\ {} & {} & W \left (y_{1}\left (x \right ), y_{2}\left (x \right )\right )=\left [\begin {array}{cc} \cos \left (x \right ) & \sin \left (x \right ) \\ -\sin \left (x \right ) & \cos \left (x \right ) \end {array}\right ] \\ {} & \circ & \textrm {Compute Wronskian}\hspace {3pt} \\ {} & {} & W \left (y_{1}\left (x \right ), y_{2}\left (x \right )\right )=1 \\ {} & \circ & \textrm {Substitute functions into equation for}\hspace {3pt} y_{p}\left (x \right ) \\ {} & {} & y_{p}\left (x \right )=-\cos \left (x \right ) \left (\int \frac {\sin \left (x \right )}{x}d x \right )+\sin \left (x \right ) \left (\int \frac {\cos \left (x \right )}{x}d x \right ) \\ {} & \circ & \textrm {Compute integrals}\hspace {3pt} \\ {} & {} & y_{p}\left (x \right )=-\cos \left (x \right ) \mathrm {Si}\left (x \right )+\sin \left (x \right ) \mathrm {Ci}\left (x \right ) \\ \bullet & {} & \textrm {Substitute particular solution into general solution to ODE}\hspace {3pt} \\ {} & {} & y=c_{1} \cos \left (x \right )+c_{2} \sin \left (x \right )-\cos \left (x \right ) \mathrm {Si}\left (x \right )+\sin \left (x \right ) \mathrm {Ci}\left (x \right ) \end {array} \]

Maple trace

`Methods for second order ODEs: 
--- Trying classification methods --- 
trying a quadrature 
trying high order exact linear fully integrable 
trying differential order: 2; linear nonhomogeneous with symmetry [0,1] 
trying a double symmetry of the form [xi=0, eta=F(x)] 
-> Try solving first the homogeneous part of the ODE 
   checking if the LODE has constant coefficients 
   <- constant coefficients successful 
<- solving first the homogeneous part of the ODE successful`
 

Solution by Maple

Order:=6; 
dsolve(diff(y(x),x$2)+y(x)=1/x,y(x),type='series',x=0);
 

\[ \text {No solution found} \]

Solution by Mathematica

Time used: 0.015 (sec). Leaf size: 148

AsymptoticDSolveValue[y''[x]+y[x]==1/x,y[x],{x,0,5}]
 

\[ y(x)\to x \left (-\frac {x^6}{5040}+\frac {x^4}{120}-\frac {x^2}{6}+1\right ) \left (-\frac {x^6}{4320}+\frac {x^4}{96}-\frac {x^2}{4}+\log (x)\right )+c_1 \left (-\frac {x^6}{720}+\frac {x^4}{24}-\frac {x^2}{2}+1\right )+c_2 x \left (-\frac {x^6}{5040}+\frac {x^4}{120}-\frac {x^2}{6}+1\right )+\left (-\frac {x^5}{600}+\frac {x^3}{18}-x\right ) \left (-\frac {x^6}{720}+\frac {x^4}{24}-\frac {x^2}{2}+1\right ) \]