How do I calculate the Euclidean Distance between $(22, 1, 42, 10)$ and $(20, 0, 36, 8)$?
I think I know the formula, but I don't know how to apply it to this data. $$d(p, q) = \sqrt{(q_1-p_1)^2 + (q_2-p_2)^2 + \ldots + (q_n-p_n)^2}$$
I don't understand what $q_n$ or $p_n$ would point to.