16.9 problem Ex 9

16.9.1 Maple step by step solution

Internal problem ID [11223]
Internal file name [OUTPUT/10209_Wednesday_December_07_2022_01_20_34_PM_29877762/index.tex]

Book: An elementary treatise on differential equations by Abraham Cohen. DC heath publishers. 1906
Section: Chapter IV, differential equations of the first order and higher degree than the first. Article 27. Clairaut equation. Page 56
Problem number: Ex 9.
ODE order: 1.
ODE degree: 2.

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

Maple gives the following as the ode type

[`y=_G(x,y')`]

Unable to solve or complete the solution.

\[ \boxed {\left (x -y^{\prime }-y\right )^{2}-x^{2} \left (2 y x -x^{2} y^{\prime }\right )=0} \] Solving the given ode for \(y^{\prime }\) results in \(2\) differential equations to solve. Each one of these will generate a solution. The equations generated are \begin {align*} y^{\prime }&=-\frac {x^{4}}{2}-y+x +\frac {\sqrt {x^{8}+4 y x^{4}-4 x^{5}+8 y x^{3}}}{2} \tag {1} \\ y^{\prime }&=-\frac {x^{4}}{2}-y+x -\frac {\sqrt {x^{8}+4 y x^{4}-4 x^{5}+8 y x^{3}}}{2} \tag {2} \end {align*}

Now each one of the above ODE is solved.

Solving equation (1)

Unable to determine ODE type.

Unable to determine ODE type.

Solving equation (2)

Unable to determine ODE type.

Unable to determine ODE type.

16.9.1 Maple step by step solution

\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & \left (x -y^{\prime }-y\right )^{2}-x^{2} \left (2 y x -x^{2} y^{\prime }\right )=0 \\ \bullet & {} & \textrm {Highest derivative means the order of the ODE is}\hspace {3pt} 1 \\ {} & {} & y^{\prime } \\ \bullet & {} & \textrm {Solve for the highest derivative}\hspace {3pt} \\ {} & {} & \left [y^{\prime }=-\frac {x^{4}}{2}-y+x -\frac {\sqrt {x^{8}+4 y x^{4}-4 x^{5}+8 y x^{3}}}{2}, y^{\prime }=-\frac {x^{4}}{2}-y+x +\frac {\sqrt {x^{8}+4 y x^{4}-4 x^{5}+8 y x^{3}}}{2}\right ] \\ \bullet & {} & \textrm {Solve the equation}\hspace {3pt} y^{\prime }=-\frac {x^{4}}{2}-y+x -\frac {\sqrt {x^{8}+4 y x^{4}-4 x^{5}+8 y x^{3}}}{2} \\ \bullet & {} & \textrm {Solve the equation}\hspace {3pt} y^{\prime }=-\frac {x^{4}}{2}-y+x +\frac {\sqrt {x^{8}+4 y x^{4}-4 x^{5}+8 y x^{3}}}{2} \\ \bullet & {} & \textrm {Set of solutions}\hspace {3pt} \\ {} & {} & \left \{\mathit {workingODE} , \mathit {workingODE}\right \} \end {array} \]

Maple trace

`Methods for first order ODEs: 
-> Solving 1st order ODE of high degree, 1st attempt 
trying 1st order WeierstrassP solution for high degree ODE 
trying 1st order WeierstrassPPrime solution for high degree ODE 
trying 1st order JacobiSN solution for high degree ODE 
trying 1st order ODE linearizable_by_differentiation 
trying differential order: 1; missing variables 
trying simple symmetries for implicit equations 
Successful isolation of dy/dx: 2 solutions were found. Trying to solve each resulting ODE. 
   *** Sublevel 2 *** 
   Methods for first order ODEs: 
   --- Trying classification methods --- 
   trying homogeneous types: 
   trying exact 
   Looking for potential symmetries 
   trying an equivalence to an Abel ODE 
   trying 1st order ODE linearizable_by_differentiation 
-> Solving 1st order ODE of high degree, Lie methods, 1st trial 
`, `-> Computing symmetries using: way = 3 
`, `-> Computing symmetries using: way = 4 
`, `-> Computing symmetries using: way = 2 
`, `-> Computing symmetries using: way = 2 
-> Solving 1st order ODE of high degree, 2nd attempt. Trying parametric methods 
trying dAlembert 
-> Calling odsolve with the ODE`, diff(y(x), x) = (1/2)*(-2*(y(x)^3*(y(x)^3-y(x)*x-2*x+2*y(x)))^(1/2)+y(x)^4+2*y(x)^3)/(3*y(x)^5-2*x 
   Methods for first order ODEs: 
   --- Trying classification methods --- 
   trying homogeneous types: 
   trying exact 
   Looking for potential symmetries 
   trying an equivalence to an Abel ODE 
   trying 1st order ODE linearizable_by_differentiation 
-> Solving 1st order ODE of high degree, Lie methods, 2nd trial 
`, `-> Computing symmetries using: way = 4 
`, `-> Computing symmetries using: way = 5 
`, `-> Computing symmetries using: way = 5`
 

Solution by Maple

dsolve((x-diff(y(x),x)-y(x))^2=x^2*(2*x*y(x)-x^2*diff(y(x),x)),y(x), singsol=all)
 

\[ \text {No solution found} \]

Solution by Mathematica

Time used: 0.0 (sec). Leaf size: 0

DSolve[(x-y'[x]-y[x])^2==x^2*(2*x*y[x]-x^2*y'[x]),y[x],x,IncludeSingularSolutions -> True]
 

Not solved