I am reading Do Carmo's "Differential Geometry of Curves and Surfaces", and there is an exercise in it that asks us to prove that the cross product (vector product) is invariant under orthogonal transformation.
Now I was rusty on my Linear Algebra so I had to lookup solutions after a lot of trying. I came across the following which I am struggling to understand:
Let $\rho$ be an orthogonal transformation and let $u,v \in \mathbb{R}^3$ be vectors, then we need to show $\rho(u \wedge v) = \rho u \wedge \rho v$.
\begin{equation} \begin{split} \rho u \wedge \rho v & = \rho(u_1 e_1 + u_2 e_2 + u_3 e_3) \wedge \rho(v_1 e_1 + v_2 e_2 + v_3 e_3) \\ & = (u_1 \rho e_1 + u_2 \rho e_2 + u_3 \rho e_3) \wedge (v_1 \rho e_1 + v_2 \rho e_2 + v_3 \rho e_3) \\ & = (u_1 v_2 - u_2 v_1) \rho e_1 \wedge \rho e_2 + (u_1 v_3 - u_3 v_1) \rho e_1 \wedge \rho e_3 + (u_2 v_3 - u_3 v_2) \rho e_2 \wedge \rho e_3 \\ & = \rho(u_1 v_2 - u_2 v_1) e_3 + \rho (u_1 v_3 - u_3 v_1)e_2 + \rho (u_2 v_3 - u_3 v_2) e_1 \\ & = \rho (u_2 v_3 - u_3 v_2, u_1 v_3 - u_3 v_1, u_1 v_2 - u_2 v_1) \\ & = \rho (u \wedge v) \end{split} \end{equation}
I can understand some steps and here is my understanding of those steps (corresponding to line numbers of RHS of the equations above):
1: Rewrite $u,v$ using their components.
2: Each component is transformed by $\rho$ for e.g., $\rho (u_1 e_1) = u_1 \rho e_1$ etc.
3: I can see some pattern here, but I don't know how to justify it rigorously. I tried reading orthogonal matrices and their properties, but I couldn't justify this step based on those.
4: $\rho e_1 \wedge \rho e_2 = \rho e_3$ and so on..
5: Can factor out the transformation from individual components to the whole vector.
6: Previous statement has the formula for vector product $u \wedge v$ in the parentheses.
I need help in understanding step 3. How did we get from 2 to 3?
Thanks