Internal
problem
ID
[7257]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
4.
OTHER
METHODS
FOR
FIRST-ORDER
EQUATIONS.
page
406
Problem
number
:
4
Date
solved
:
Tuesday, September 30, 2025 at 04:26:25 PM
CAS
classification
:
[_exact]
ode:=2*x*exp(3*y(x))+exp(x)+(3*x^2*exp(3*y(x))-y(x)^2)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(2*x*Exp[3*y[x]]+Exp[x])+(3*x^2*Exp[3*y[x]]-y[x]^2)*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*x*exp(3*y(x)) + (3*x**2*exp(3*y(x)) - y(x)**2)*Derivative(y(x), x) + exp(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out