Internal
problem
ID
[2962]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
10,
page
41
Problem
number
:
5
Date
solved
:
Tuesday, March 04, 2025 at 03:36:07 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=diff(x(y),y)+x(y) = exp(-y); dsolve(ode,x(y), singsol=all);
ode=D[x[y],y]+x[y]==Exp[-y]; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(x(y) + Derivative(x(y), y) - exp(-y),0) ics = {} dsolve(ode,func=x(y),ics=ics)