Internal
problem
ID
[7975]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
10.
Singular
solutions,
Extraneous
loci.
Supplemetary
problems.
Page
74
Problem
number
:
17
Date
solved
:
Tuesday, September 30, 2025 at 05:12:34 PM
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)