Take a look at the notes on lectures 1 and 2 of Geometric Numerical Integration found here. Quoting from Lecture 2
A numerical one-step method yn+1=Φh(yn) is called symplectic if, when applied
to a Hamiltonian system, the discrete flow y↦Φh(y) is a symplectic transformation for all sufficiently small step sizes.
From your link you have
x(t+h)=x(t)+h˙x(t)+h2{324f(t+h)+1024f(t)−124f(t−h)}
and
˙x(t+h)=x(t+h)−x(t)h+h˙x(t)+h{724f(t+h)+624f(t)−124f(t−h)}
Now take ω(ξ,η)=ξTJη where
J=(0II0). Then the integrator is symplectic if and only if ω(x(t),˙x(t))=ω(x(t+h),˙x(t+h)) for sufficiently small h.
All that you need to do is to fill in the values of x(t+h) and ˙x(t+h) from the integrator, and show that this condition does not hold.
This post has been migrated from (A51.SE)