4.6 problem 94

Internal problem ID [2844]

Book: Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section: Various 4
Problem number: 94.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [[_homogeneous, class G], _Chini]

Solve \begin {gather*} \boxed {y^{\prime }-a \,x^{\frac {n}{1-n}}-b y^{n}=0} \end {gather*}

Solution by Maple

Time used: 0.044 (sec). Leaf size: 64

dsolve(diff(y(x),x) = a*x^(n/(1-n))+b*y(x)^n,y(x), singsol=all)
 

\[ -\left (\int _{\textit {\_b}}^{y \relax (x )}\frac {x^{\frac {n}{n -1}}}{\left (b x \left (n -1\right ) \textit {\_a}^{n}+\textit {\_a} \right ) x^{\frac {n}{n -1}}+a x \left (n -1\right )}d \textit {\_a} \right )+\frac {\ln \relax (x )}{n -1}-c_{1} = 0 \]

Solution by Mathematica

Time used: 0.298 (sec). Leaf size: 117

DSolve[y'[x]==a*x^(n/(1-n))+b*y[x]^n,y[x],x,IncludeSingularSolutions -> True]
 

\[ \text {Solve}\left [\int _1^{\left (\frac {b x^{-\frac {n}{1-n}}}{a}\right )^{\frac {1}{n}} y(x)}\frac {1}{K[1]^n-\left (\frac {(-1)^n a^{1-n} (n-1)^{-n}}{b}\right )^{\frac {1}{n}} K[1]+1}dK[1]=\int _1^xa K[2]^{\frac {n}{1-n}} \left (\frac {b K[2]^{-\frac {n}{1-n}}}{a}\right )^{\frac {1}{n}}dK[2]+c_1,y(x)\right ] \]