Internal
problem
ID
[13874]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
2,
First
Order
Equations.
Problems
page
149
Problem
number
:
Problem
1(f)
Date
solved
:
Wednesday, March 05, 2025 at 10:20:17 PM
CAS
classification
:
[[_homogeneous, `class G`], _rational, _Bernoulli]
ode:=x*diff(y(x),x)+y(x) = x*y(x)^2; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]+y[x]==x*y[x]^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*y(x)**2 + x*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)