Internal
problem
ID
[19499]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Book
Solved
Excercises.
Chapter
V.
Singular
solutions
Problem
number
:
Ex
5
page
70
Date
solved
:
Monday, March 31, 2025 at 07:26:13 PM
CAS
classification
:
[_quadrature]
ode:=4*diff(y(x),x)^2*x*(x-a)*(x-b) = (3*x^2-2*x*(a+b)+a*b)^2; dsolve(ode,y(x), singsol=all);
ode=4*D[y[x],x]^2*x*(x-a)*(x-b)==(3*x^2-2*x*(a+b)+a*b)^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(4*x*(-a + x)*(-b + x)*Derivative(y(x), x)**2 - (a*b + 3*x**2 - 2*x*(a + b))**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)