Internal
problem
ID
[18694]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
II.
Equations
of
the
first
order
and
of
the
first
degree.
Exercises
at
page
28
Problem
number
:
Ex.
5
Date
solved
:
Monday, March 31, 2025 at 05:58:06 PM
CAS
classification
:
[_rational, _Bernoulli]
ode:=3*x*(-x^2+1)*y(x)^2*diff(y(x),x)+(2*x^2-1)*y(x)^3 = a*x^3; dsolve(ode,y(x), singsol=all);
ode=3*x*(1-x^2)*y[x]^2*D[y[x],x]+(2*x^2-1)*y[x]^3==a*x^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a*x**3 + 3*x*(1 - x**2)*y(x)**2*Derivative(y(x), x) + (2*x**2 - 1)*y(x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)