1.54 problem 54

Internal problem ID [8391]

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

CAS Maple gives this as type [_Chini, [_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]

\[ \boxed {y^{\prime }-a^{n} f \left (x \right )^{-n +1} g^{\prime }\left (x \right ) y^{n}-\frac {f^{\prime }\left (x \right ) y}{f \left (x \right )}=g^{\prime }\left (x \right ) f \left (x \right )} \]

Solution by Maple

Time used: 0.094 (sec). Leaf size: 38

dsolve(diff(y(x),x) - a^n*f(x)^(1-n)*diff(g(x),x)*y(x)^n - diff(f(x),x)*y(x)/f(x) - f(x)*diff(g(x),x)=0,y(x), singsol=all)
 

\[ \frac {a y \left (x \right ) \operatorname {LerchPhi}\left (-\left (\frac {a y \left (x \right )}{f \left (x \right )}\right )^{n}, 1, \frac {1}{n}\right )}{n f \left (x \right )}-a g \left (x \right )+c_{1} = 0 \]

Solution by Mathematica

Time used: 0.336 (sec). Leaf size: 74

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

\[ \text {Solve}\left [y(x) \left (a^n f(x)^{-n}\right )^{\frac {1}{n}} \operatorname {Hypergeometric2F1}\left (1,\frac {1}{n},1+\frac {1}{n},-\left (\left (a^n f(x)^{-n}\right )^{\frac {1}{n}} y(x)\right )^n\right )=f(x) g(x) \left (a^n f(x)^{-n}\right )^{\frac {1}{n}}+c_1,y(x)\right ] \]