2.9 problem 10

Internal problem ID [4386]

Book: Differential Equations, By George Boole F.R.S. 1865
Section: Chapter 3
Problem number: 10.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_Riccati]

\[ \boxed {\frac {x^{n} y^{\prime }}{b y^{2}-c \,x^{2 a}}-\frac {a y x^{a -1}}{b y^{2}-c \,x^{2 a}}=-x^{a -1}} \]

Solution by Maple

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

\[ \text {No solution found} \]

Solution by Mathematica

Time used: 0.0 (sec). Leaf size: 0

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

Not solved