Internal
problem
ID
[12418]
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
:
4
Date
solved
:
Monday, March 31, 2025 at 05:33:09 AM
CAS
classification
:
[_exact, _rational, [_1st_order, `_with_symmetry_[F(x),G(x)]`], [_Abel, `2nd type`, `class A`]]
ode:=(y(x)+A*x^n+a)*diff(y(x),x)+n*A*x^(n-1)*y(x)+k*x^m+b = 0; dsolve(ode,y(x), singsol=all);
ode=(y[x]+A*x^n+a)*D[y[x],x]+n*A*x^(n-1)*y[x]+k*x^m+b==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") A = symbols("A") a = symbols("a") b = symbols("b") k = symbols("k") m = symbols("m") n = symbols("n") y = Function("y") ode = Eq(A*n*x**(n - 1)*y(x) + b + k*x**m + (A*x**n + a + y(x))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out