Internal
problem
ID
[789]
Book
:
Differential
equations
and
linear
algebra,
3rd
ed.,
Edwards
and
Penney
Section
:
Chapter
1
review
problems.
Page
78
Problem
number
:
19
Date
solved
:
Tuesday, March 04, 2025 at 11:48:41 AM
CAS
classification
:
[_separable]
ode:=3*x^5*y(x)^2+x^3*diff(y(x),x) = 2*y(x)^2; dsolve(ode,y(x), singsol=all);
ode=3*x^5*y[x]^2+x^3*D[y[x],x] == 2*y[x]^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(3*x**5*y(x)**2 + x**3*Derivative(y(x), x) - 2*y(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)