Internal
problem
ID
[155]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.6
(substitution
and
exact
equations).
Problems
at
page
72
Problem
number
:
51
Date
solved
:
Tuesday, September 30, 2025 at 03:47:23 AM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1], [_2nd_order, _reducible, _mu_y_y1]]
ode:=diff(diff(y(x),x),x) = 2*y(x)*diff(y(x),x)^3; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]==2*y[x]*D[y[x],x]^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*y(x)*Derivative(y(x), x)**3 + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE 2**(2/3)*(Derivative(y(x), (x, 2))/y(x))**(1/3)/4 - 2**(2/3)*sqrt(3)*I*(Derivative(y(x), (x, 2))/y(x))**(1/3)/4 + Derivative(y(x), x) cannot be solved by the factorable group method