Internal
problem
ID
[20590]
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
:
24
Date
solved
:
Thursday, October 02, 2025 at 06:12:52 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x)^2 = (1+4*y(x))*(diff(y(x),x)-y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]^2==(4*y[x]+1)*(D[y[x],x]-y[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((y(x) - Derivative(y(x), x))*(4*y(x) + 1) + Derivative(y(x), x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out