1.570 problem 573

1.570.1 Maple step by step solution

Internal problem ID [8907]
Internal file name [OUTPUT/7842_Monday_June_06_2022_12_46_17_AM_10284914/index.tex]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 1, linear first order
Problem number: 573.
ODE order: 1.
ODE degree: 0.

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 {f \left (x {y^{\prime }}^{2}\right )+2 x y^{\prime }-y=0} \] Solving the given ode for \(y^{\prime }\) results in \(1\) differential equations to solve. Each one of these will generate a solution. The equations generated are \begin {align*} y^{\prime }&=\operatorname {RootOf}\left (f \left (\textit {\_Z}^{2} x \right )+2 x \textit {\_Z} -y\right ) \tag {1} \end {align*}

Now each one of the above ODE is solved.

Solving equation (1)

Unable to determine ODE type.

Unable to determine ODE type.

1.570.1 Maple step by step solution

\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & f \left (x {y^{\prime }}^{2}\right )+2 x y^{\prime }-y=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} \\ {} & {} & y^{\prime }=\mathit {RootOf}\left (f \left (\textit {\_Z}^{2} x \right )+2 x \textit {\_Z} -y\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 dAlembert 
trying simple symmetries for implicit equations 
--- 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 
-> Calling odsolve with the ODE`, diff(diff(y(x), x), x)+(1/2)*(diff(y(x), x))/x, 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 
   <- LODE of Euler type successful 
<- 1st order ODE linearizable_by_differentiation successful`
 

Solution by Maple

Time used: 0.031 (sec). Leaf size: 24

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

\[ y \left (x \right ) = c_{1} +2 \sqrt {x}\, \operatorname {RootOf}\left (-f \left (\textit {\_Z}^{2}\right )-2 \textit {\_Z} +c_{1} +c_{2} \right ) \]

Solution by Mathematica

Time used: 0.504 (sec). Leaf size: 48

DSolve[f[x*y'[x]^2] - y[x] + 2*x*y'[x]==0,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to f(c_1)-2 \sqrt {c_1} \sqrt {x} \\ y(x)\to f(c_1)+2 \sqrt {c_1} \sqrt {x} \\ y(x)\to f(0) \\ \end{align*}