7.203 problem 1794 (book 6.203)

Internal problem ID [9368]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 6, non-linear second order
Problem number: 1794 (book 6.203).
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _missing_x], _Liouville, [_2nd_order, _reducible, _mu_x_y1], [_2nd_order, _reducible, _mu_xy]]

\[ \boxed {a y \left (y-1\right ) y^{\prime \prime }-\left (a -1\right ) \left (-1+2 y\right ) {y^{\prime }}^{2}+f y \left (y-1\right ) y^{\prime }=0} \]

Solution by Maple

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

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

\begin{align*} y \left (x \right ) = 1 \\ y \left (x \right ) = 0 \\ c_{1} {\mathrm e}^{-\frac {x f}{a}}-c_{2} +\int _{}^{y \left (x \right )}\frac {\left (\textit {\_a} \left (\textit {\_a} -1\right )\right )^{\frac {1}{a}}}{\textit {\_a} \left (\textit {\_a} -1\right )}d \textit {\_a} = 0 \\ \end{align*}

Solution by Mathematica

Time used: 0.102 (sec). Leaf size: 83

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

\begin{align*} y(x)\to \text {InverseFunction}\left [a \text {$\#$1}^{-1/a} (-((\text {$\#$1}-1) \text {$\#$1}))^{\frac {1}{a}} \operatorname {Hypergeometric2F1}\left (\frac {1}{a},\frac {a-1}{a},1+\frac {1}{a},1-\text {$\#$1}\right )\&\right ]\left [\int _1^x\exp \left (-\int _1^{K[3]}\frac {f(K[1])}{a}dK[1]\right ) c_1dK[3]+c_2\right ] \\ \end{align*}