5.20 problem 24

5.20.1 Maple step by step solution

Internal problem ID [1985]
Internal file name [OUTPUT/1985_Sunday_February_25_2024_06_44_07_AM_24494164/index.tex]

Book: Differential Equations by Alfred L. Nelson, Karl W. Folley, Max Coral. 3rd ed. DC heath. Boston. 1964
Section: Exercise 9, page 38
Problem number: 24.
ODE order: 1.
ODE degree: 1.

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

Maple gives the following as the ode type

[[_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]

Unable to solve or complete the solution.

\[ \boxed {y-x^{2} \sqrt {x^{2}-y^{2}}-x y^{\prime }=0} \] With initial conditions \begin {align*} [y \left (1\right ) = 1] \end {align*}

Unable to determine ODE type.

5.20.1 Maple step by step solution

\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & \left [y-x^{2} \sqrt {x^{2}-y^{2}}-x y^{\prime }=0, y \left (1\right )=1\right ] \\ \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} \\ {} & {} & y^{\prime }=-\frac {-y+x^{2} \sqrt {x^{2}-y^{2}}}{x} \\ \bullet & {} & \textrm {Use initial condition}\hspace {3pt} y \left (1\right )=1 \\ {} & {} & 0 \\ \bullet & {} & \textrm {Solve for}\hspace {3pt} 0 \\ {} & {} & 0=0 \\ \bullet & {} & \textrm {Substitute}\hspace {3pt} 0=0\hspace {3pt}\textrm {into general solution and simplify}\hspace {3pt} \\ {} & {} & 0 \\ \bullet & {} & \textrm {Solution to the IVP}\hspace {3pt} \\ {} & {} & 0 \end {array} \]

Maple trace Kovacic algorithm successful

`Methods for first order ODEs: 
--- Trying classification methods --- 
trying homogeneous types: 
differential order: 1; looking for linear symmetries 
trying exact 
Looking for potential symmetries 
trying an equivalence to an Abel ODE 
trying 1st order ODE linearizable_by_differentiation 
-> Calling odsolve with the ODE`, diff(diff(y(x), x), x)+(y(x)*x^4-3*(diff(y(x), x))*x+3*y(x))/x^2, y(x)`   *** Sublevel 2 *** 
   Methods for second order ODEs: 
   --- Trying classification methods --- 
   trying a quadrature 
   checking if the LODE has constant coefficients 
   checking if the LODE is of Euler type 
   trying a symmetry of the form [xi=0, eta=F(x)] 
   checking if the LODE is missing y 
   -> Trying a Liouvillian solution using Kovacics algorithm 
      A Liouvillian solution exists 
      Group is reducible or imprimitive 
   <- Kovacics algorithm successful 
--- Trying Lie symmetry methods, 1st order --- 
`, `-> Computing symmetries using: way = 3 
`, `-> Computing symmetries using: way = 5`[0, (x^2-y^2)^(1/2)]
 

Solution by Maple

dsolve([(y(x)-x^2*sqrt(x^2-y(x)^2))-x*diff(y(x),x)=0,y(1) = 1],y(x), singsol=all)
 

\[ \text {No solution found} \]

Solution by Mathematica

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

DSolve[{(y[x]-x^2*Sqrt[x^2-y[x]^2])-x*y'[x]==0,{y[1]==1}},y[x],x,IncludeSingularSolutions -> True]
 

{}