Internal
problem
ID
[13886]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
2,
First
Order
Equations.
Problems
page
149
Problem
number
:
Problem
2(a)
Date
solved
:
Monday, March 31, 2025 at 08:16:20 AM
CAS
classification
:
[_separable]
ode:=x*(1+y(x))^2 = (x^2+1)*y(x)*exp(y(x))*diff(y(x),x); dsolve(ode,y(x), singsol=all);
ode=x*(y[x]+1)^2==(x^2+1)*y[x]*Exp[y[x]]*D[y[x],x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*(y(x) + 1)**2 - (x**2 + 1)*y(x)*exp(y(x))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)