Internal
problem
ID
[6663]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
6.
Equations
of
first
order
and
first
degree
(Linear
equations).
Supplemetary
problems.
Page
39
Problem
number
:
23
(c)
Date
solved
:
Wednesday, March 05, 2025 at 01:36:22 AM
CAS
classification
:
[_Bernoulli]
ode:=x*y(x)^3-y(x)^3-x^2*exp(x)+3*x*y(x)^2*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(x*y[x]^3-y[x]^3-x^2*Exp[x])+(3*x*y[x]^2)*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2*exp(x) + x*y(x)**3 + 3*x*y(x)**2*Derivative(y(x), x) - y(x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)