4.2.48 \(y'(x)=f(x) y(x)^m+g(x) y(x)^n\)

ODE
\[ y'(x)=f(x) y(x)^m+g(x) y(x)^n \] ODE Classification

[NONE]

Book solution method
Change of Variable, new dependent variable

Mathematica
cpu = 2.26333 (sec), leaf count = 0 , could not solve

DSolve[Derivative[1][y][x] == f[x]*y[x]^m + g[x]*y[x]^n, y[x], x]

Maple
cpu = 0.308 (sec), leaf count = 0 , could not solve

dsolve(diff(y(x),x) = f(x)*y(x)^m+g(x)*y(x)^n, y(x),'implicit')

Mathematica raw input

DSolve[y'[x] == f[x]*y[x]^m + g[x]*y[x]^n,y[x],x]

Mathematica raw output

DSolve[Derivative[1][y][x] == f[x]*y[x]^m + g[x]*y[x]^n, y[x], x]

Maple raw input

dsolve(diff(y(x),x) = f(x)*y(x)^m+g(x)*y(x)^n, y(x),'implicit')

Maple raw output

dsolve(diff(y(x),x) = f(x)*y(x)^m+g(x)*y(x)^n, y(x),'implicit')