The van der Pol oscillator is modeled by
$$\frac{d^2y}{dt^2} + \mu(y^2 - 1) \frac{dy}{dt} + y = 0$$
This can be written as a system of first order equations, $$ \begin{pmatrix} \dot x\\ \dot y\end{pmatrix} = \begin{pmatrix} \mu(1-y^2)x - y\\ x\end{pmatrix}, $$
where $x := \dot y$. Consider the case where $y(0) = 0$ and $x(0) = a$, where $a$ is some real number. A numerical approximation for the solution can be obtained using the RK4 method. I have two questions:
How do you find the region of stability for the RK4 method?
How can you verify RK4 is 4th order accurate? Surely you would need to know the true solution in order to verify this?