Internal
problem
ID
[2963]
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
:
6
Date
solved
:
Sunday, March 30, 2025 at 01:02:15 AM
CAS
classification
:
[_linear]
ode:=y*diff(x(y),y)+(1+y)*x(y) = exp(y); dsolve(ode,x(y), singsol=all);
ode=y*D[x[y],y]+(1+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(y*Derivative(x(y), y) + (y + 1)*x(y) - exp(y),0) ics = {} dsolve(ode,func=x(y),ics=ics)