2.2.9.7 ✓ Sympy. Time used: 0.124 (sec). Leaf size: 5
from sympy import *
t = symbols("t")
x = Function("x")
ode = Eq(x(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 )} = \sin {\left (t \right )} \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))
('nth_linear_constant_coeff_homogeneous', '2nd_power_series_ordinary', '2nd_nonlinear_autonomous_conserved', '2nd_nonlinear_autonomous_conserved_Integral')