Internal
problem
ID
[17838]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
43
(page
55)
Date
solved
:
Thursday, March 13, 2025 at 10:58:59 AM
CAS
classification
:
[_rational, _Riccati]
ode:=x*diff(y(x),x)-3*y(x)+y(x)^2 = 4*x^2-4*x; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]-3*y[x]+y[x]^2==4*x^2-4*x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-4*x**2 + x*Derivative(y(x), x) + 4*x + y(x)**2 - 3*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)