Internal
problem
ID
[686]
Book
:
Differential
equations
and
linear
algebra,
3rd
ed.,
Edwards
and
Penney
Section
:
Section
1.4.
Separable
equations.
Page
43
Problem
number
:
10
Date
solved
:
Tuesday, September 30, 2025 at 04:06:00 AM
CAS
classification
:
[_separable]
ode:=(x^2+1)*diff(y(x),x) = (1+y(x))^2; dsolve(ode,y(x), singsol=all);
ode=(x^2+1)*D[y[x],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((x**2 + 1)*Derivative(y(x), x) - (y(x) + 1)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)