The cross product takes two vectors in ℝ³ and returns one vector in ℝ³. This chapter builds the matrix [k]× by separating the direction k̂ from the scale |k|. It first derives the unit-vector matrix [k̂]×, then derives the same skew-symmetric entries through geometric action, Householder reflection and Givens rotations, before extending the construction to non-unit vectors.
The cross product is defined by both direction and magnitude.
The chapter now emphasizes why different orthogonal changes of basis give the same final cross-product matrix, while orientation determines the sign of the 90° rotation.
For a nonzero first vector, write k = |k| k̂. The unit direction k̂ determines the plane k̂⊥ and the 90° rotation inside that plane. The matrix [k̂]× performs the unit construction, and multiplying by |k| gives the general matrix [k]× = |k|[k̂]×.
The PDF is a single document. The page links below are best-effort: most browsers support them, but some viewers may ignore the page hint.
A Householder reflection changes basis by reversing orientation, so the 90° rotation in the reflected plane turns the opposite way and the formula is [k̂]× = −H [e⃗₁]× H. The Givens construction uses an orthogonal matrix G with det(G) = 1, so it preserves orientation and the corresponding formula is [k̂]× = Gᵀ [e⃗₁]× G. Both derivations simplify to the same skew-symmetric cross-product matrix.