Internal
problem
ID
[18104]
Book
:
DIFFERENTIAL
EQUATIONS
WITH
APPLICATIONS
AND
HISTORICAL
NOTES
by
George
F.
Simmons.
3rd
edition.
2017.
CRC
press,
Boca
Raton
FL.
Section
:
Chapter
2.
First
order
equations.
Section
10
(Linear
equations).
Problems
at
page
82
Problem
number
:
4
(b)
Date
solved
:
Thursday, March 13, 2025 at 11:37:04 AM
CAS
classification
:
[[_1st_order, _with_linear_symmetries]]
ode:=y(x)-x*diff(y(x),x) = diff(y(x),x)*y(x)^2*exp(y(x)); dsolve(ode,y(x), singsol=all);
ode=y[x]-x*D[y[x],x]==D[y[x],x]*y[x]^2*Exp[y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*Derivative(y(x), x) - y(x)**2*exp(y(x))*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)