Internal
problem
ID
[10885]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
889
Date
solved
:
Sunday, March 30, 2025 at 07:19:22 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(y)]`]]
ode:=diff(y(x),x) = -1/8*(-8-8*y(x)^3+24*y(x)^(3/2)*exp(x)-18*exp(x)^2-8*y(x)^(9/2)+36*y(x)^3*exp(x)-54*y(x)^(3/2)*exp(x)^2+27*exp(x)^3)*exp(x)/y(x)^(1/2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == -1/8*(E^x*(-8 - 18*E^(2*x) + 27*E^(3*x) + 24*E^x*y[x]^(3/2) - 54*E^(2*x)*y[x]^(3/2) - 8*y[x]^3 + 36*E^x*y[x]^3 - 8*y[x]^(9/2)))/Sqrt[y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-8*y(x)**(9/2) - 54*y(x)**(3/2)*exp(2*x) + 24*y(x)**(3/2)*exp(x) + 36*y(x)**3*exp(x) - 8*y(x)**3 + 27*exp(3*x) - 18*exp(2*x) - 8)*exp(x)/(8*sqrt(y(x))) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -(8*y(x)**(9/2) + 54*y(x)**(3/2)*exp(2*x) - 24*y(x)**(3/2)*exp(x) - 36*y(x)**3*exp(x) + 8*y(x)**3 - 27*exp(3*x) + 18*exp(2*x) + 8)*exp(x)/(8*sqrt(y(x))) + Derivative(y(x), x) cannot be solved by the factorable group method