Internal
problem
ID
[5120]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
19
Problem
number
:
524
Date
solved
:
Tuesday, March 04, 2025 at 07:59:23 PM
CAS
classification
:
[_rational, [_Abel, `2nd type`, `class B`]]
ode:=x*(y(x)+a)*diff(y(x),x)+b*x+c*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=x(a+y[x])D[y[x],x]+b x+c y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(b*x + c*y(x) + x*(a + y(x))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out