Internal
problem
ID
[20588]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Chapter
V.
Singular
solutions.
Exercise
V
at
page
76
Problem
number
:
22
Date
solved
:
Sunday, October 12, 2025 at 05:48:13 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]
ode:=(1-diff(y(x),x))^2-exp(-2*y(x)) = diff(y(x),x)^2*exp(-2*x); dsolve(ode,y(x), singsol=all);
ode=(1-D[y[x],x])^2-Exp[-2*y[x]]==D[y[x],x]^2*Exp[-2*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((1 - Derivative(y(x), x))**2 - exp(-2*y(x)) - exp(-2*x)*Derivative(y(x), x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out