Internal
problem
ID
[6685]
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
:
14
Date
solved
:
Sunday, March 30, 2025 at 11:18:15 AM
CAS
classification
:
[_quadrature]
ode:=(3*y(x)-1)^2*diff(y(x),x)^2 = 4*y(x); dsolve(ode,y(x), singsol=all);
ode=(3*y[x]-1)^2*D[y[x],x]^2==4*y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((3*y(x) - 1)**2*Derivative(y(x), x)**2 - 4*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out