Internal
problem
ID
[12416]
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.4-2.
Problem
number
:
2
Date
solved
:
Wednesday, March 05, 2025 at 07:03:35 PM
CAS
classification
:
[[_homogeneous, `class C`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=(y(x)+a*x+b)*diff(y(x),x) = alpha*y(x)+beta*x+gamma; dsolve(ode,y(x), singsol=all);
ode=(y[x]*a*x+b)*D[y[x],x]==\[Alpha]*y[x]+\[Beta]*x+\[Gamma]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") Alpha = symbols("Alpha") BETA = symbols("BETA") Gamma = symbols("Gamma") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(-Alpha*y(x) - BETA*x - Gamma + (a*x + b + y(x))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out