Internal
problem
ID
[7252]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
3.
Linear
First-Order
Equations.
page
403
Problem
number
:
13
Date
solved
:
Tuesday, September 30, 2025 at 04:26:14 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=diff(x(y),y)+x(y)-exp(y) = 0; dsolve(ode,x(y), singsol=all);
ode=D[x[y],y]+(x[y]-Exp[y])==0; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(x(y) - exp(y) + Derivative(x(y), y),0) ics = {} dsolve(ode,func=x(y),ics=ics)