2.4.32 problem 28

Maple step by step solution
Maple trace
Maple dsolve solution
Mathematica DSolve solution

Internal problem ID [8347]
Book : Own collection of miscellaneous problems
Section : section 4.0
Problem number : 28
Date solved : Sunday, November 10, 2024 at 03:39:00 AM
CAS classification : [`y=_G(x,y')`]

Solve

\begin{align*} {y^{\prime }}^{2}+y^{2}&=\sec \left (x \right )^{4} \end{align*}

Solving for the derivative gives these ODE’s to solve

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

Now each of the above is solved separately.

Solving Eq. (1)

Solving Eq. (2)

Maple step by step solution
\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & \left (\frac {d}{d x}y \left (x \right )\right )^{2}+y \left (x \right )^{2}=\sec \left (x \right )^{4} \\ \bullet & {} & \textrm {Highest derivative means the order of the ODE is}\hspace {3pt} 1 \\ {} & {} & \frac {d}{d x}y \left (x \right ) \\ \bullet & {} & \textrm {Solve for the highest derivative}\hspace {3pt} \\ {} & {} & \left [\frac {d}{d x}y \left (x \right )=\frac {\sqrt {1-y \left (x \right )^{2} \cos \left (x \right )^{4}}}{\cos \left (x \right )^{2}}, \frac {d}{d x}y \left (x \right )=-\frac {\sqrt {1-y \left (x \right )^{2} \cos \left (x \right )^{4}}}{\cos \left (x \right )^{2}}\right ] \\ \bullet & {} & \textrm {Solve the equation}\hspace {3pt} \frac {d}{d x}y \left (x \right )=\frac {\sqrt {1-y \left (x \right )^{2} \cos \left (x \right )^{4}}}{\cos \left (x \right )^{2}} \\ \bullet & {} & \textrm {Solve the equation}\hspace {3pt} \frac {d}{d x}y \left (x \right )=-\frac {\sqrt {1-y \left (x \right )^{2} \cos \left (x \right )^{4}}}{\cos \left (x \right )^{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) = -x^2/(-2*(x^2+y(x)^2)^(5/4)*(((x^2+y(x)^2)^(1/2)-1)/(x^2+y(x)^2)^(1/2))^(1/2)+y(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 
-> Calling odsolve with the ODE`, diff(y(x), x) = -x*(10+15*cos(2*y(x))+cos(6*y(x))+6*cos(4*y(x)))/(x*(16-6*x^2-2*x^2*(cos(4*y(x))+4 
   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`
 
Maple dsolve solution

Solving time : 0.139 (sec)
Leaf size : maple_leaf_size

dsolve(diff(y(x),x)^2+y(x)^2 = sec(x)^4, 
       y(x),singsol=all)
 
\[ \text {No solution found} \]
Mathematica DSolve solution

Solving time : 0.0 (sec)
Leaf size : 0

DSolve[{D[y[x],x]^2+y[x]^2==Sec[x]^4,{}}, 
       y[x],x,IncludeSingularSolutions->True]
 

Not solved