ODE
\[ y'(x)=f(x)+g(x) y(x)+h(x) y(x)^2 \] ODE Classification
[_Riccati]
Book solution method
Riccati ODE, Generalized ODE
Mathematica ✗
cpu = 20.8609 (sec), leaf count = 0 , could not solve
DSolve[Derivative[1][y][x] == f[x] + g[x]*y[x] + h[x]*y[x]^2, y[x], x]
Maple ✗
cpu = 0.258 (sec), leaf count = 0 , could not solve
dsolve(diff(y(x),x) = f(x)+g(x)*y(x)+h(x)*y(x)^2, y(x),'implicit')
Mathematica raw input
DSolve[y'[x] == f[x] + g[x]*y[x] + h[x]*y[x]^2,y[x],x]
Mathematica raw output
DSolve[Derivative[1][y][x] == f[x] + g[x]*y[x] + h[x]*y[x]^2, y[x], x]
Maple raw input
dsolve(diff(y(x),x) = f(x)+g(x)*y(x)+h(x)*y(x)^2, y(x),'implicit')
Maple raw output
dsolve(diff(y(x),x) = f(x)+g(x)*y(x)+h(x)*y(x)^2, y(x),'implicit')