Internal
problem
ID
[5361]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
2.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
SECOND
OR
HIGHER
DEGREE,
page
278
Problem
number
:
6
Date
solved
:
Tuesday, September 30, 2025 at 12:36:10 PM
CAS
classification
:
[[_homogeneous, `class G`]]
ode:=diff(y(x),x)^2+3*x^2 = 8*y(x); dsolve(ode,y(x), singsol=all);
ode=(D[y[x],x])^2+3 x^2==8*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*x**2 - 8*y(x) + Derivative(y(x), x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -sqrt(-3*x**2 + 8*y(x)) + Derivative(y(x), x) cannot be solved b