Internal
problem
ID
[17860]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
58
(page
103)
Date
solved
:
Monday, March 31, 2025 at 04:37:21 PM
CAS
classification
:
[[_homogeneous, `class G`], _rational]
ode:=a*x*diff(y(x),x)+b*y(x)+x^m*y(x)^n*(alpha*x*diff(y(x),x)+beta*y(x)) = 0; dsolve(ode,y(x), singsol=all);
ode=a*x*D[y[x],x] + b*y[x] + x^m*y[x]^n*(a*x*D[y[x],x]+b*y[x] )==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") Alpha = symbols("Alpha") BETA = symbols("BETA") a = symbols("a") b = symbols("b") m = symbols("m") n = symbols("n") y = Function("y") ode = Eq(a*x*Derivative(y(x), x) + b*y(x) + x**m*(Alpha*x*Derivative(y(x), x) + BETA*y(x))*y(x)**n,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out