Internal
problem
ID
[2982]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
11,
page
45
Problem
number
:
1
Date
solved
:
Tuesday, September 30, 2025 at 06:13:42 AM
CAS
classification
:
[_Bernoulli]
ode:=3*y(x)^2*diff(y(x),x)-x*y(x)^3 = exp(1/2*x^2)*cos(x); dsolve(ode,y(x), singsol=all);
ode=3*y[x]^2*D[y[x],x]-x*y[x]^3==Exp[x^2/2]*Cos[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*y(x)**3 + 3*y(x)**2*Derivative(y(x), x) - exp(x**2/2)*cos(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)