1.10 problem 10

1.10.1 Solved as second order missing y ode
1.10.2 Maple step by step solution
1.10.3 Maple trace
1.10.4 Maple dsolve solution
1.10.5 Mathematica DSolve solution

Internal problem ID [8047]
Book : Second order enumerated odes
Section : section 1
Problem number : 10
Date solved : Monday, October 21, 2024 at 04:44:46 PM
CAS classification : [[_2nd_order, _quadrature]]

Solve

\begin{align*} {y^{\prime \prime }}^{2}&=x \end{align*}

1.10.1 Solved as second order missing y ode

Time used: 0.190 (sec)

This is second order ode with missing dependent variable \(y\). Let

\begin{align*} p(x) &= y^{\prime } \end{align*}

Then

\begin{align*} p'(x) &= y^{\prime \prime } \end{align*}

Hence the ode becomes

\begin{align*} {p^{\prime }\left (x \right )}^{2}-x = 0 \end{align*}

Which is now solve for \(p(x)\) as first order ode. Solving for the derivative gives these ODE’s to solve

\begin{align*} \tag{1} p^{\prime }\left (x \right )&=\sqrt {x} \\ \tag{2} p^{\prime }\left (x \right )&=-\sqrt {x} \\ \end{align*}

Now each of the above is solved separately.

Solving Eq. (1)

Since the ode has the form \(p^{\prime }\left (x \right )=f(x)\), then we only need to integrate \(f(x)\).

\begin{align*} \int {dp} &= \int {\sqrt {x}\, dx}\\ p \left (x \right ) &= \frac {2 x^{{3}/{2}}}{3} + c_1 \end{align*}

Solving Eq. (2)

Since the ode has the form \(p^{\prime }\left (x \right )=f(x)\), then we only need to integrate \(f(x)\).

\begin{align*} \int {dp} &= \int {-\sqrt {x}\, dx}\\ p \left (x \right ) &= -\frac {2 x^{{3}/{2}}}{3} + c_2 \end{align*}

For solution (1) found earlier, since \(p=y^{\prime }\) then we now have a new first order ode to solve which is

\begin{align*} y^{\prime } = -\frac {2 x^{{3}/{2}}}{3}+c_2 \end{align*}

Since the ode has the form \(y^{\prime }=f(x)\), then we only need to integrate \(f(x)\).

\begin{align*} \int {dy} &= \int {-\frac {2 x^{{3}/{2}}}{3}+c_2\, dx}\\ y &= c_2 x -\frac {4 x^{{5}/{2}}}{15} + c_3 \end{align*}

For solution (2) found earlier, since \(p=y^{\prime }\) then we now have a new first order ode to solve which is

\begin{align*} y^{\prime } = \frac {2 x^{{3}/{2}}}{3}+c_1 \end{align*}

Since the ode has the form \(y^{\prime }=f(x)\), then we only need to integrate \(f(x)\).

\begin{align*} \int {dy} &= \int {\frac {2 x^{{3}/{2}}}{3}+c_1\, dx}\\ y &= c_1 x +\frac {4 x^{{5}/{2}}}{15} + c_4 \end{align*}

Will add steps showing solving for IC soon.

1.10.2 Maple step by step solution

1.10.3 Maple trace
Methods for second order ODEs:
 
1.10.4 Maple dsolve solution

Solving time : 0.010 (sec)
Leaf size : 27

dsolve(diff(diff(y(x),x),x)^2 = x, 
       y(x),singsol=all)
 
\begin{align*} y &= \frac {4 x^{{5}/{2}}}{15}+c_1 x +c_2 \\ y &= -\frac {4 x^{{5}/{2}}}{15}+c_1 x +c_2 \\ \end{align*}
1.10.5 Mathematica DSolve solution

Solving time : 0.004 (sec)
Leaf size : 41

DSolve[{(D[y[x],{x,2}])^2==x,{}}, 
       y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)\to -\frac {4 x^{5/2}}{15}+c_2 x+c_1 \\ y(x)\to \frac {4 x^{5/2}}{15}+c_2 x+c_1 \\ \end{align*}