2.2.8.6 ✓ Sympy. Time used: 0.163 (sec). Leaf size: 10
from sympy import *
t = symbols("t")
x = Function("x")
ode = Eq(2*x(t) - 3*Derivative(x(t), t) + Derivative(x(t), (t, 2)),0)
ics = {x(0): 0, Subs(Derivative(x(t), t), t, 0): 1}
dsolve(ode,func=x(t),ics=ics)
\begin{gather*} \begin {aligned} x{\left (t \right )} = \left (e^{t} - 1\right ) e^{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')