Internal
problem
ID
[16087]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Review
exercises,
page
80
Problem
number
:
22
Date
solved
:
Monday, March 31, 2025 at 02:41:24 PM
CAS
classification
:
[_linear]
ode:=diff(x(y),y)+x(y)/y = y^2; dsolve(ode,x(y), singsol=all);
ode=D[x[y],y]+x[y]/y==y^2; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(-y**2 + Derivative(x(y), y) + x(y)/y,0) ics = {} dsolve(ode,func=x(y),ics=ics)