2.2.5.6 Sympy. Time used: 0.143 (sec). Leaf size: 12
from sympy import * 
t = symbols("t") 
x = Function("x") 
ode = Eq(4*x(t) - 4*Derivative(x(t), t) + Derivative(x(t), (t, 2)),0) 
ics = {} 
dsolve(ode,func=x(t),ics=ics)
 
\begin{gather*} \begin {aligned} x{\left (t \right )} = \left (C_{1} + C_{2} t\right ) e^{2 t} \end {aligned} \end{gather*}
Python version: 3.12.3 (main, Aug 14 2025, 17:47:21) [GCC 13.3.0] 
Sympy version 1.14.0
 
classify_ode(ode,func=x(t)) 
 
('factorable', 'nth_linear_constant_coeff_homogeneous', '2nd_power_series_ordinary')