5.11 problem 11
Internal
problem
ID
[7952]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
5.0
Problem
number
:
11
Date
solved
:
Monday, October 21, 2024 at 04:39:25 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
Solve
\begin{align*} y^{\prime \prime }&=\frac {1}{x} \end{align*}
Using series expansion around \(x=0\)
The type of the expansion point is first determined. This is done on the homogeneous part of
the ODE.
\[ y^{\prime \prime } = 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) &= 0\\ \end{align*}
Table 117: Table \(p(x),q(x)\) singularites.
| |
\(p(x)=0\) |
| |
singularity | type |
| |
| |
\(q(x)=0\) |
| |
singularity | type |
| |
Combining everything together gives the following summary of singularities for the ode
as
Regular singular points : \([\infty ]\)
Irregular singular points : \([]\)
5.11.1 Maple step by step solution
\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & \frac {d}{d x}y^{\prime }=\frac {1}{x} \\ \bullet & {} & \textrm {Highest derivative means the order of the ODE is}\hspace {3pt} 2 \\ {} & {} & \frac {d}{d x}y^{\prime } \\ \bullet & {} & \textrm {Characteristic polynomial of homogeneous ODE}\hspace {3pt} \\ {} & {} & r^{2}=0 \\ \bullet & {} & \textrm {Use quadratic formula to solve for}\hspace {3pt} r \\ {} & {} & r =\frac {0\pm \left (\sqrt {0}\right )}{2} \\ \bullet & {} & \textrm {Roots of the characteristic polynomial}\hspace {3pt} \\ {} & {} & r =0 \\ \bullet & {} & \textrm {1st solution of the homogeneous ODE}\hspace {3pt} \\ {} & {} & y_{1}\left (x \right )=1 \\ \bullet & {} & \textrm {Repeated root, multiply}\hspace {3pt} y_{1}\left (x \right )\hspace {3pt}\textrm {by}\hspace {3pt} x \hspace {3pt}\textrm {to ensure linear independence}\hspace {3pt} \\ {} & {} & y_{2}\left (x \right )=x \\ \bullet & {} & \textrm {General solution of the ODE}\hspace {3pt} \\ {} & {} & y=\mathit {C1} y_{1}\left (x \right )+\mathit {C2} y_{2}\left (x \right )+y_{p}\left (x \right ) \\ \bullet & {} & \textrm {Substitute in solutions of the homogeneous ODE}\hspace {3pt} \\ {} & {} & y=\mathit {C1} +\mathit {C2} x +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} 1 & x \\ 0 & 1 \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 )=-\left (\int 1d x \right )+x \left (\int \frac {1}{x}d x \right ) \\ {} & \circ & \textrm {Compute integrals}\hspace {3pt} \\ {} & {} & y_{p}\left (x \right )=x \left (\ln \left (x \right )-1\right ) \\ \bullet & {} & \textrm {Substitute particular solution into general solution to ODE}\hspace {3pt} \\ {} & {} & y=\mathit {C1} +\mathit {C2} x +x \left (\ln \left (x \right )-1\right ) \end {array} \]
5.11.2 Maple trace
Methods for second order ODEs:
5.11.3 Maple dsolve solution
Solving time : 0.025
(sec)
Leaf size : maple_leaf_size
dsolve(diff(diff(y(x),x),x) = 1/x,y(x),
series,x=0)
\[ \text {No solution found} \]
5.11.4 Mathematica DSolve solution
Solving time : 0.031
(sec)
Leaf size : 17
AsymptoticDSolveValue[{D[y[x],{x,2}]==1/x,{}},
y[x],{x,0,5}]
\[
y(x)\to -x+x \log (x)+c_2 x+c_1
\]