Internal
problem
ID
[99]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.5
(linear
equations).
Problems
at
page
54
Problem
number
:
27
Date
solved
:
Saturday, March 29, 2025 at 04:31:22 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=(x(y)+y*exp(y))/diff(x(y),y) = 1; dsolve(ode,x(y), singsol=all);
ode=(x[y]+y*Exp[y])*1/D[x[y],y]==1; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq((y*exp(y) + x(y))/Derivative(x(y), y) - 1,0) ics = {} dsolve(ode,func=x(y),ics=ics)