1.350 problem 351

1.350.1 Maple step by step solution

Internal problem ID [8687]
Internal file name [OUTPUT/7620_Sunday_June_05_2022_11_21_12_PM_77360817/index.tex]

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

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 {y^{\prime } \cos \left (y\right )+x \sin \left (y\right ) \cos \left (y\right )^{2}-\sin \left (y\right )^{3}=0} \] Unable to determine ODE type.

1.350.1 Maple step by step solution

\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & y^{\prime } \cos \left (y\right )+x \sin \left (y\right ) \cos \left (y\right )^{2}-\sin \left (y\right )^{3}=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 }=\frac {-x \sin \left (y\right ) \cos \left (y\right )^{2}+\sin \left (y\right )^{3}}{\cos \left (y\right )} \end {array} \]

Maple trace

`Methods for first order ODEs: 
--- Trying classification methods --- 
trying a quadrature 
trying 1st order linear 
trying Bernoulli 
trying separable 
trying inverse linear 
trying homogeneous types: 
trying Chini 
differential order: 1; looking for linear symmetries 
trying exact 
Looking for potential symmetries 
trying inverse_Riccati 
trying an equivalence to an Abel ODE 
differential order: 1; trying a linearization to 2nd order 
--- trying a change of variables {x -> y(x), y(x) -> x} 
differential order: 1; trying a linearization to 2nd order 
trying 1st order ODE linearizable_by_differentiation 
--- Trying Lie symmetry methods, 1st order --- 
`, `-> Computing symmetries using: way = 3 
`, `-> Computing symmetries using: way = 4 
`, `-> Computing symmetries using: way = 5 
trying symmetry patterns for 1st order ODEs 
-> trying a symmetry pattern of the form [F(x)*G(y), 0] 
-> trying a symmetry pattern of the form [0, F(x)*G(y)] 
<- symmetry pattern of the form [0, F(x)*G(y)] successful`
 

Solution by Maple

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

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

\begin{align*} y \left (x \right ) &= \arcsin \left (\frac {1}{\sqrt {1-\sqrt {\pi }\, \operatorname {erf}\left (x \right ) {\mathrm e}^{x^{2}}-2 c_{1} {\mathrm e}^{x^{2}}}}\right ) \\ y \left (x \right ) &= -\arcsin \left (\frac {1}{\sqrt {1-\sqrt {\pi }\, \operatorname {erf}\left (x \right ) {\mathrm e}^{x^{2}}-2 c_{1} {\mathrm e}^{x^{2}}}}\right ) \\ \end{align*}

Solution by Mathematica

Time used: 60.366 (sec). Leaf size: 61

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

\begin{align*} y(x)\to -\cot ^{-1}\left (\sqrt {e^{x^2} \left (-\sqrt {\pi } \text {erf}(x)+4 c_1\right )}\right ) \\ y(x)\to \cot ^{-1}\left (\sqrt {e^{x^2} \left (-\sqrt {\pi } \text {erf}(x)+4 c_1\right )}\right ) \\ \end{align*}