Internal
problem
ID
[12351]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
1,
section
1.3.
Abel
Equations
of
the
Second
Kind.
subsection
1.3.3-2.
Problem
number
:
17
Date
solved
:
Friday, March 14, 2025 at 04:44:21 AM
CAS
classification
:
[[_Abel, `2nd type`, `class B`]]
ode:=y(x)*diff(y(x),x) = 3/(a*x+b)^(1/3)/x^(5/3)*y(x)+3/(a*x+b)^(2/3)/x^(7/3); dsolve(ode,y(x), singsol=all);
ode=y[x]*D[y[x],x]==3*(a*x+b)^(-1/3)*x^(-5/3)*y[x]+3*(a*x+b)^(-2/3)*x^(-7/3); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(y(x)*Derivative(y(x), x) - 3*y(x)/(x**(5/3)*(a*x + b)**(1/3)) - 3/(x**(7/3)*(a*x + b)**(2/3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out