Internal
problem
ID
[19077]
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
:
23
Date
solved
:
Monday, March 31, 2025 at 06:45:00 PM
CAS
classification
:
[_separable]
ode:=diff(s(x),x)+x^2 = x^2*exp(3*s(x)); dsolve(ode,s(x), singsol=all);
ode=D[s[x],x]+x^2==x^2*Exp[3*s[x]]; ic={}; DSolve[{ode,ic},s[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") s = Function("s") ode = Eq(-x**2*exp(3*s(x)) + x**2 + Derivative(s(x), x),0) ics = {} dsolve(ode,func=s(x),ics=ics)