1.442 problem 455
Internal
problem
ID
[8580]
Book
:
Collection
of
Kovacic
problems
Section
:
section
1
Problem
number
:
455
Date
solved
:
Monday, October 21, 2024 at 05:09:59 PM
CAS
classification
:
[[_Emden, _Fowler], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]
Solve
\begin{align*} x^{2} y^{\prime \prime }-2 x y^{\prime }+2 y&=0 \end{align*}
1.442.1 Solved as second order ode using Kovacic algorithm
Time used: 0.075 (sec)
Writing the ode as
\begin{align*} x^{2} y^{\prime \prime }-2 x y^{\prime }+2 y &= 0 \tag {1} \\ A y^{\prime \prime } + B y^{\prime } + C y &= 0 \tag {2} \end{align*}
Comparing (1) and (2) shows that
\begin{align*} A &= x^{2} \\ B &= -2 x\tag {3} \\ C &= 2 \end{align*}
Applying the Liouville transformation on the dependent variable gives
\begin{align*} z(x) &= y e^{\int \frac {B}{2 A} \,dx} \end{align*}
Then (2) becomes
\begin{align*} z''(x) = r z(x)\tag {4} \end{align*}
Where \(r\) is given by
\begin{align*} r &= \frac {s}{t}\tag {5} \\ &= \frac {2 A B' - 2 B A' + B^2 - 4 A C}{4 A^2} \end{align*}
Substituting the values of \(A,B,C\) from (3) in the above and simplifying gives
\begin{align*} r &= \frac {0}{1}\tag {6} \end{align*}
Comparing the above to (5) shows that
\begin{align*} s &= 0\\ t &= 1 \end{align*}
Therefore eq. (4) becomes
\begin{align*} z''(x) &= 0 \tag {7} \end{align*}
Equation (7) is now solved. After finding \(z(x)\) then \(y\) is found using the inverse transformation
\begin{align*} y &= z \left (x \right ) e^{-\int \frac {B}{2 A} \,dx} \end{align*}
The first step is to determine the case of Kovacic algorithm this ode belongs to. There are 3
cases depending on the order of poles of \(r\) and the order of \(r\) at \(\infty \). The following table
summarizes these cases.
| | |
Case |
Allowed pole order for \(r\) |
Allowed value for \(\mathcal {O}(\infty )\) |
| | |
1 |
\(\left \{ 0,1,2,4,6,8,\cdots \right \} \) |
\(\left \{ \cdots ,-6,-4,-2,0,2,3,4,5,6,\cdots \right \} \) |
| | |
2
|
Need to have at least one pole
that is either order \(2\) or odd order
greater than \(2\). Any other pole order
is allowed as long as the above
condition is satisfied. Hence the
following set of pole orders are all
allowed. \(\{1,2\}\),\(\{1,3\}\),\(\{2\}\),\(\{3\}\),\(\{3,4\}\),\(\{1,2,5\}\). |
no condition |
| | |
3 |
\(\left \{ 1,2\right \} \) |
\(\left \{ 2,3,4,5,6,7,\cdots \right \} \) |
| | |
Table 442: Necessary conditions for each Kovacic case
The order of \(r\) at \(\infty \) is the degree of \(t\) minus the degree of \(s\). Therefore
\begin{align*} O\left (\infty \right ) &= \text {deg}(t) - \text {deg}(s) \\ &= 0 - -\infty \\ &= \infty \end{align*}
There are no poles in \(r\). Therefore the set of poles \(\Gamma \) is empty. Since there is no odd order pole
larger than \(2\) and the order at \(\infty \) is \(infinity\) then the necessary conditions for case one are met.
Therefore
\begin{align*} L &= [1] \end{align*}
Since \(r = 0\) is not a function of \(x\), then there is no need run Kovacic algorithm to obtain a solution
for transformed ode \(z''=r z\) as one solution is
\[ z_1(x) = 1 \]
Using the above, the solution for the original ode can
now be found. The first solution to the original ode in \(y\) is found from
\begin{align*}
y_1 &= z_1 e^{ \int -\frac {1}{2} \frac {B}{A} \,dx} \\
&= z_1 e^{ -\int \frac {1}{2} \frac {-2 x}{x^{2}} \,dx} \\
&= z_1 e^{\ln \left (x \right )} \\
&= z_1 \left (x\right ) \\
\end{align*}
Which simplifies to
\[
y_1 = x
\]
The second solution \(y_2\) to the original ode is found using reduction of order
\[ y_2 = y_1 \int \frac { e^{\int -\frac {B}{A} \,dx}}{y_1^2} \,dx \]
Substituting gives
\begin{align*}
y_2 &= y_1 \int \frac { e^{\int -\frac {-2 x}{x^{2}} \,dx}}{\left (y_1\right )^2} \,dx \\
&= y_1 \int \frac { e^{2 \ln \left (x \right )}}{\left (y_1\right )^2} \,dx \\
&= y_1 \left (x\right ) \\
\end{align*}
Therefore the solution is
\begin{align*}
y &= c_1 y_1 + c_2 y_2 \\
&= c_1 \left (x\right ) + c_2 \left (x\left (x\right )\right ) \\
\end{align*}
Will add steps showing solving for IC soon.
1.442.2 Maple step by step solution
\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & x^{2} \left (\frac {d}{d x}y^{\prime }\right )-2 x y^{\prime }+2 y=0 \\ \bullet & {} & \textrm {Highest derivative means the order of the ODE is}\hspace {3pt} 2 \\ {} & {} & \frac {d}{d x}y^{\prime } \\ \bullet & {} & \textrm {Isolate 2nd derivative}\hspace {3pt} \\ {} & {} & \frac {d}{d x}y^{\prime }=-\frac {2 y}{x^{2}}+\frac {2 y^{\prime }}{x} \\ \bullet & {} & \textrm {Group terms with}\hspace {3pt} y\hspace {3pt}\textrm {on the lhs of the ODE and the rest on the rhs of the ODE; ODE is linear}\hspace {3pt} \\ {} & {} & \frac {d}{d x}y^{\prime }-\frac {2 y^{\prime }}{x}+\frac {2 y}{x^{2}}=0 \\ \bullet & {} & \textrm {Multiply by denominators of the ODE}\hspace {3pt} \\ {} & {} & x^{2} \left (\frac {d}{d x}y^{\prime }\right )-2 x y^{\prime }+2 y=0 \\ \bullet & {} & \textrm {Make a change of variables}\hspace {3pt} \\ {} & {} & t =\ln \left (x \right ) \\ \square & {} & \textrm {Substitute the change of variables back into the ODE}\hspace {3pt} \\ {} & \circ & \textrm {Calculate the}\hspace {3pt} \hspace {3pt}\textrm {1st}\hspace {3pt} \hspace {3pt}\textrm {derivative of}\hspace {3pt} \hspace {3pt}\textrm {y}\hspace {3pt} \hspace {3pt}\textrm {with respect to}\hspace {3pt} \hspace {3pt}\textrm {x}\hspace {3pt} \hspace {3pt}\textrm {, using the chain rule}\hspace {3pt} \\ {} & {} & y^{\prime }=\left (\frac {d}{d t}y \left (t \right )\right ) t^{\prime }\left (x \right ) \\ {} & \circ & \textrm {Compute derivative}\hspace {3pt} \\ {} & {} & y^{\prime }=\frac {\frac {d}{d t}y \left (t \right )}{x} \\ {} & \circ & \textrm {Calculate the}\hspace {3pt} \hspace {3pt}\textrm {2nd}\hspace {3pt} \hspace {3pt}\textrm {derivative of}\hspace {3pt} \hspace {3pt}\textrm {y}\hspace {3pt} \hspace {3pt}\textrm {with respect to}\hspace {3pt} \hspace {3pt}\textrm {x}\hspace {3pt} \hspace {3pt}\textrm {, using the chain rule}\hspace {3pt} \\ {} & {} & \frac {d}{d x}y^{\prime }=\left (\frac {d}{d t}\frac {d}{d t}y \left (t \right )\right ) {t^{\prime }\left (x \right )}^{2}+\left (\frac {d}{d x}t^{\prime }\left (x \right )\right ) \left (\frac {d}{d t}y \left (t \right )\right ) \\ {} & \circ & \textrm {Compute derivative}\hspace {3pt} \\ {} & {} & \frac {d}{d x}y^{\prime }=\frac {\frac {d}{d t}\frac {d}{d t}y \left (t \right )}{x^{2}}-\frac {\frac {d}{d t}y \left (t \right )}{x^{2}} \\ & {} & \textrm {Substitute the change of variables back into the ODE}\hspace {3pt} \\ {} & {} & x^{2} \left (\frac {\frac {d}{d t}\frac {d}{d t}y \left (t \right )}{x^{2}}-\frac {\frac {d}{d t}y \left (t \right )}{x^{2}}\right )-2 \frac {d}{d t}y \left (t \right )+2 y \left (t \right )=0 \\ \bullet & {} & \textrm {Simplify}\hspace {3pt} \\ {} & {} & \frac {d}{d t}\frac {d}{d t}y \left (t \right )-3 \frac {d}{d t}y \left (t \right )+2 y \left (t \right )=0 \\ \bullet & {} & \textrm {Characteristic polynomial of ODE}\hspace {3pt} \\ {} & {} & r^{2}-3 r +2=0 \\ \bullet & {} & \textrm {Factor the characteristic polynomial}\hspace {3pt} \\ {} & {} & \left (r -1\right ) \left (r -2\right )=0 \\ \bullet & {} & \textrm {Roots of the characteristic polynomial}\hspace {3pt} \\ {} & {} & r =\left (1, 2\right ) \\ \bullet & {} & \textrm {1st solution of the ODE}\hspace {3pt} \\ {} & {} & y_{1}\left (t \right )={\mathrm e}^{t} \\ \bullet & {} & \textrm {2nd solution of the ODE}\hspace {3pt} \\ {} & {} & y_{2}\left (t \right )={\mathrm e}^{2 t} \\ \bullet & {} & \textrm {General solution of the ODE}\hspace {3pt} \\ {} & {} & y \left (t \right )=\mathit {C1} y_{1}\left (t \right )+\mathit {C2} y_{2}\left (t \right ) \\ \bullet & {} & \textrm {Substitute in solutions}\hspace {3pt} \\ {} & {} & y \left (t \right )=\mathit {C1} \,{\mathrm e}^{t}+\mathit {C2} \,{\mathrm e}^{2 t} \\ \bullet & {} & \textrm {Change variables back using}\hspace {3pt} t =\ln \left (x \right ) \\ {} & {} & y=\mathit {C2} \,x^{2}+\mathit {C1} x \\ \bullet & {} & \textrm {Simplify}\hspace {3pt} \\ {} & {} & y=x \left (\mathit {C2} x +\mathit {C1} \right ) \end {array} \]
1.442.3 Maple trace
Methods for second order ODEs:
1.442.4 Maple dsolve solution
Solving time : 0.003
(sec)
Leaf size : 11
dsolve(x^2*diff(diff(y(x),x),x)-2*x*diff(y(x),x)+2*y(x) = 0,
y(x),singsol=all)
\[
y = x \left (c_1 x +c_2 \right )
\]
1.442.5 Mathematica DSolve solution
Solving time : 0.017
(sec)
Leaf size : 14
DSolve[{x^2*D[y[x],{x,2}]-2*x*D[y[x],x]+2*y[x]==0,{}},
y[x],x,IncludeSingularSolutions->True]
\[
y(x)\to x (c_2 x+c_1)
\]