Internal
problem
ID
[3002]
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
:
21
Date
solved
:
Tuesday, March 04, 2025 at 03:39:50 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x)*G(y),0]`]]
With initial conditions
ode:=1+x*y(x)*(1+x*y(x)^2)*diff(y(x),x) = 0; ic:=y(1) = 0; dsolve([ode,ic],y(x), singsol=all);
ode=1+x*y[x]*(1+x*y[x]^2)*D[y[x],x]==0; ic={y[1]==0}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
{}
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*(x*y(x)**2 + 1)*y(x)*Derivative(y(x), x) + 1,0) ics = {y(1): 0} dsolve(ode,func=y(x),ics=ics)