Internal
problem
ID
[20148]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
IV.
Singular
solutions.
problems
on
chapter
IV.
page
49
Problem
number
:
Ex.
8
Date
solved
:
Thursday, October 02, 2025 at 05:33:16 PM
CAS
classification
:
[_quadrature]
ode:=4*x*(x-1)*(x-2)*diff(y(x),x)^2-(3*x^2-6*x+2)^2 = 0; dsolve(ode,y(x), singsol=all);
ode=4*x*(x-1)*(x-2)*D[y[x],x]^2-(3*x^2-6*x+2)^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(4*x*(x - 2)*(x - 1)*Derivative(y(x), x)**2 - (3*x**2 - 6*x + 2)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)