Internal
problem
ID
[7533]
Book
:
THEORY
OF
DIFFERENTIAL
EQUATIONS
IN
ENGINEERING
AND
MECHANICS.
K.T.
CHAU,
CRC
Press.
Boca
Raton,
FL.
2018
Section
:
Chapter
3.
Ordinary
Differential
Equations.
Section
3.5
HIGHER
ORDER
ODE.
Page
181
Problem
number
:
Example
3.38
Date
solved
:
Sunday, March 30, 2025 at 12:13:52 PM
CAS
classification
:
[[_2nd_order, _missing_x], _Liouville, [_2nd_order, _reducible, _mu_x_y1], [_2nd_order, _reducible, _mu_xy]]
ode:=x(t)*diff(diff(x(t),t),t)-diff(x(t),t)^2 = 0; dsolve(ode,x(t), singsol=all);
ode=x[t]*D[x[t],{t,2}]-(D[x[t],t])^2==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(x(t)*Derivative(x(t), (t, 2)) - Derivative(x(t), t)**2,0) ics = {} dsolve(ode,func=x(t),ics=ics)
NotImplementedError : The given ODE -sqrt(x(t)*Derivative(x(t), (t, 2))) + Derivative(x(t), t) cannot be solved by the factorable group method