Internal
problem
ID
[14199]
Book
:
An
elementary
treatise
on
differential
equations
by
Abraham
Cohen.
DC
heath
publishers.
1906
Section
:
Chapter
V,
Singular
solutions.
Article
33.
Page
73
Problem
number
:
Ex
4
Date
solved
:
Thursday, October 02, 2025 at 09:26:39 AM
CAS
classification
:
[_quadrature]
ode:=y(x)*(3-4*y(x))^2*diff(y(x),x)^2 = 4-4*y(x); dsolve(ode,y(x), singsol=all);
ode=y[x]*(3-4*y[x])^2*D[y[x],x]^2==4*(1-y[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq((3 - 4*y(x))**2*y(x)*Derivative(y(x), x)**2 + 4*y(x) - 4,0) ics = {} dsolve(ode,func=y(x),ics=ics)