Internal
problem
ID
[20427]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Chapter
II.
Equations
of
first
order
and
first
degree.
Misc
examples
on
chapter
II
at
page
25
Problem
number
:
17
Date
solved
:
Thursday, October 02, 2025 at 05:58:40 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = exp(3*x-2*y(x))+x^2*exp(-2*y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Exp[3*x-2*y[x]]+x^2*Exp[-2*y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2*exp(-2*y(x)) - exp(3*x - 2*y(x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)