Internal
problem
ID
[8952]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
4.0
Problem
number
:
60
Date
solved
:
Sunday, March 30, 2025 at 01:56:15 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x) = y(x)*(1-y(x)^2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==y[x]*(1-y[x]^2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((y(x)**2 - 1)*y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)