For me this result is suspicious. What do you think?
This ode diff(y(x),x) = f*y(x)^4+g*y(x)+h; is clearly quadrature, since I did not tell Maple that f,g,h depend on x. So this can be solved by just integration. But when asking odeadvisor if it is Chini, it says yes. When asking it what type it is, now it says it is quadrature.
Am I missing something here? I was expecting [NONE] when asking it if it is Chini.
Yes, the ode has the form of Chini, which is y'=f(x)*y^n + g(x)*y + h(x), where n=4 here. But if f,g,h do not depend on x, then this is now just quadrature. Right? Calling it Chini is little misleading I think.



> |
ode:=diff(y(x),x) = f*y(x)^4+g*y(x)+h;
DEtools:-odeadvisor(ode,y(x),[Chini]);
|

![[_Chini]](/view.aspx?sf=238912_question/491160db711869157f6c3c6df5d6bceb.gif)
> |
DEtools:-odeadvisor(ode,y(x))
|
![[_quadrature]](/view.aspx?sf=238912_question/955832f27152d6d73fbc8c4c0091b405.gif)
> |
dsolve(ode,y(x),[quadrature]);
|

> |
dsolve(ode,y(x),[Chini]);
|

|
Download question_on_advisor_august_28_2024.mw
Notice another problem in this solutions. If g=0, then the Chini solution gives divison by zero now, while the quadrature solution still works.