Internal
problem
ID
[18670]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
II.
Equations
of
the
first
order
and
of
the
first
degree.
Exercises
at
page
20
Problem
number
:
Ex.
5
Date
solved
:
Monday, March 31, 2025 at 05:55:50 PM
CAS
classification
:
[_exact]
ode:=(2*x^2*y(x)+4*x^3-12*x*y(x)^2+3*y(x)^2-x*exp(y(x))+exp(2*x))*diff(y(x),x)+12*x^2*y(x)+2*x*y(x)^2+4*x^3-4*y(x)^3+2*y(x)*exp(2*x)-exp(y(x)) = 0; dsolve(ode,y(x), singsol=all);
ode=(2*x^2*y[x]+4*x^3-12*x*y[x]^2+3*y[x]^2-x*Exp[y[x]]+Exp[2*x])*D[y[x],x]+(12*x^2*y[x]+2*x*y[x]^2+4*x^3-4*y[x]^3+2*y[x]*Exp[2*x]-Exp[y[x]])==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(4*x**3 + 12*x**2*y(x) + 2*x*y(x)**2 + (4*x**3 + 2*x**2*y(x) - 12*x*y(x)**2 - x*exp(y(x)) + 3*y(x)**2 + exp(2*x))*Derivative(y(x), x) - 4*y(x)**3 + 2*y(x)*exp(2*x) - exp(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out