Internal
problem
ID
[6306]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.3,
Linear
equations.
Exercises.
page
54
Problem
number
:
13
Date
solved
:
Sunday, March 30, 2025 at 10:50:14 AM
CAS
classification
:
[_linear]
ode:=y*diff(x(y),y)+2*x(y) = 5*y^3; dsolve(ode,x(y), singsol=all);
ode=y*D[x[y],y]+2*x[y]==5*y^3; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(-5*y**3 + y*Derivative(x(y), y) + 2*x(y),0) ics = {} dsolve(ode,func=x(y),ics=ics)