Internal
problem
ID
[2975]
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
:
18
Date
solved
:
Sunday, March 30, 2025 at 01:02:57 AM
CAS
classification
:
[_linear]
ode:=y*diff(x(y),y) = 2*y*exp(3*y)+x(y)*(3*y+2); dsolve(ode,x(y), singsol=all);
ode=y*D[x[y],y]==2*y*Exp[3*y]+x[y]*(3*y+2); ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(-2*y*exp(3*y) + y*Derivative(x(y), y) - (3*y + 2)*x(y),0) ics = {} dsolve(ode,func=x(y),ics=ics)