BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeCalculus III: Multivariable CalculusMastering the Cross Product: Geometry and Algebra in 3D
Study Guide860 words

Mastering the Cross Product: Geometry and Algebra in 3D

The Cross Product

Mastering the Cross Product: Geometry and Algebra in 3D

[!IMPORTANT] Unlike the dot product, which results in a scalar, the cross product results in a vector. For this reason, it is often referred to as the vector product.

Learning Objectives

After studying this chapter, you should be able to:

  • Calculate the cross product of two 3D vectors using component notation.
  • Utilize $$3 \times 3$$ determinants to simplify cross product computations.
  • Verify that a resulting cross product is orthogonal to its constituent vectors.
  • Calculate the area of a parallelogram and the volume of a parallelepiped using vector products.
  • Apply the cross product to physical applications like torque.

Key Terms & Glossary

  • Cross Product (u \times v): A binary operation on two vectors in three-dimensional space that results in a vector perpendicular to both.
  • Orthogonal: A synonym for perpendicular; two vectors are orthogonal if their dot product is zero.
  • Right-Hand Rule: A mnemonic used to determine the direction of the cross product vector.
  • Determinant: A scalar value derived from a square matrix; used here as a mnemonic for the cross product formula.
  • Torque: The tendency of a force to rotate an object about an axis; calculated as ̄\tau = r \times F.

The "Big Idea"

The cross product is our primary tool for navigating 3D space. While the dot product tells us how much two vectors "overlap," the cross product tells us how much they are "spread apart" and, crucially, defines a direction perpendicular to the plane they inhabit. It is the mathematical foundation for defining planes, calculating rotational force, and understanding electromagnetic fields.

Formula / Concept Box

ConceptFormula
Component Definitionu×v=(u2v3−u3v2)i−(u1v3−u3v1)j+(u1v2−u2v1)k\mathbf{u} \times \mathbf{v} = (u_2v_3 - u_3v_2)\mathbf{i} - (u_1v_3 - u_3v_1)\mathbf{j} + (u_1v_2 - u_2v_1)\mathbf{k}u×v=(u2​v3​−u3​v2​)i−(u1​v3​−u3​v1​)j+(u1​v2​−u2​v1​)k
Determinant Form$$\mathbf{u} \times \mathbf{v} = \begin{vmatrix} \mathbf{i}&\mathbf{j}&\mathbf{k} \\ u_1 & u_2 & u_3 \\ v_1 & v_2 & v_3 \end{vmatrix}
Magnitude\
Area of ParallelogramA = \

Hierarchical Outline

  1. Mathematical Definition
    • Vector Output: Always produces a vector in R3\mathbb{R}^3R3.
    • Orthogonality: The result is simultaneously perpendicular to both input vectors.
  2. Properties of Operation
    • Anti-commutativity: u×v=−(v×u)\mathbf{u} \times \mathbf{v} = -(\mathbf{v} \times \mathbf{u})u×v=−(v×u).
    • Scalar Multiplication: c(u×v)=(cu)×v=u×(cv)c(\mathbf{u} \times \mathbf{v}) = (c\mathbf{u}) \times \mathbf{v} = \mathbf{u} \times (c\mathbf{v})c(u×v)=(cu)×v=u×(cv).
    • Zero Vector: Any vector crossed with itself is the zero vector (u×u=0\mathbf{u} \times \mathbf{u} = \mathbf{0}u×u=0).
  3. Geometric Interpretations
    • Right-Hand Rule: Fingers curl from u\mathbf{u}u to v\mathbf{v}v, thumb points to u×v\mathbf{u} \times \mathbf{v}u×v.
    • Area: Magnitude equals the area of the parallelogram formed by the vectors.

Visual Anchors

1. The Right-Hand Rule and Orthogonality

Compiling TikZ diagram…
⏳
Running TeX engine…
This may take a few seconds
Figure 1 — TikZ diagram

2. Computational Logic Flow

Loading Diagram...
Figure 2 — Mermaid diagram

Definition-Example Pairs

  • Anti-commutative Property: The order of operations matters; swapping vectors reverses the direction.
    • Example: If i×j=k\mathbf{i} \times \mathbf{j} = \mathbf{k}i×j=k, then j×i=−k\mathbf{j} \times \mathbf{i} = -\mathbf{k}j×i=−k.
  • Standard Unit Vector Products: Specific interactions between the basis vectors i,j,k\mathbf{i, j, k}i,j,k.
    • Example: A wrench turning a bolt in the xyxyxy-plane exerts force (torque) along the zzz-axis.

Worked Examples

Example 1: Finding a Cross Product

Problem: Let \mathbf{u} = \langle 2$, -1, $3 \rangle and \mathbf{v} = \langle 0$, 1, $7 \rangle. Find u×v\mathbf{u} \times \mathbf{v}u×v.

Solution:

  1. Set up the determinant: u×v=∣ijk2−13017∣\mathbf{u} \times \mathbf{v} = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ 2 & -1 & 3 \\ 0 & 1 & 7 \end{vmatrix}u×v=​i20​j−11​k37​​
  2. Expand by the first row: i∣−1317∣−j∣2307∣+k∣2−101∣\mathbf{i} \begin{vmatrix} -1 & 3 \\ 1 & 7 \end{vmatrix} - \mathbf{j} \begin{vmatrix} 2 & 3 \\ 0 & 7 \end{vmatrix} + \mathbf{k} \begin{vmatrix} 2 & -1 \\ 0 & 1 \end{vmatrix}i​−11​37​​−j​20​37​​+k​20​−11​​
  3. Calculate $2 \times 2$ determinants: i((−1)(7)−(3)(1))−j((2)(7)−(3)(0))+k((2)(1)−(−1)(0))\mathbf{i}((-1)(7) - (3)(1)) - \mathbf{j}((2)(7) - (3)(0)) + \mathbf{k}((2)(1) - (-1)(0))i((−1)(7)−(3)(1))−j((2)(7)−(3)(0))+k((2)(1)−(−1)(0)) i(−7−3)−j(14−0)+k(2−0)=−10i−14j+2k\mathbf{i}(-7 - 3) - \mathbf{j}(14 - 0) + \mathbf{k}(2 - 0) = -10\mathbf{i} - 14\mathbf{j} + 2\mathbf{k}i(−7−3)−j(14−0)+k(2−0)=−10i−14j+2k

Example 2: Magnitude and Geometry

Problem: Find the area of the parallelogram spanned by u=⟨3,0,0⟩\mathbf{u} = \langle 3, 0, 0 \rangleu=⟨3,0,0⟩ and v=⟨0,2,0⟩\mathbf{v} = \langle 0, 2, 0 \ranglev=⟨0,2,0⟩.

Solution:

  1. u×v=⟨0,0,6⟩\mathbf{u} \times \mathbf{v} = \langle 0, 0, 6 \rangleu×v=⟨0,0,6⟩ (by inspection, as they are on the axes).
  2. Area = ∥u×v∥=02+02+62=6\|\mathbf{u} \times \mathbf{v}\| = \sqrt{0^2 + 0^2 + 6^2} = 6∥u×v∥=02+02+62​=6.

Comparison Tables

FeatureDot ProductCross Product
Result TypeScalar (Number)Vector
Notationu⋅v\mathbf{u} \cdot \mathbf{v}u⋅vu×v\mathbf{u} \times \mathbf{v}u×v
Commutative?Yes: u⋅v=v⋅u\mathbf{u} \cdot \mathbf{v} = \mathbf{v} \cdot \mathbf{u}u⋅v=v⋅uNo: u×v=−(v×u)\mathbf{u} \times \mathbf{v} = -(\mathbf{v} \times \mathbf{u})u×v=−(v×u)
DimensionsRn\mathbb{R}^nRn (any)R3\mathbb{R}^3R3 only
Geometric MeaningProjection / AngleOrthogonality / Area

Checkpoint Questions

  1. Why is the cross product not defined for vectors in R2\mathbb{R}^2R2?
  2. If u\mathbf{u}u and v\mathbf{v}v are parallel, what is u×v\mathbf{u} \times \mathbf{v}u×v?
  3. Use the right-hand rule: if u\mathbf{u}u points North and v\mathbf{v}v points East, which way does u×v\mathbf{u} \times \mathbf{v}u×v point?
▶Click for Answers
  1. In 2D, there is no third dimension for the resulting orthogonal vector to exist in.
  2. The zero vector 0\mathbf{0}0, because sin⁡(0)=0\sin(0) = 0sin(0)=0.
  3. Down (into the ground).
All Calculus III: Multivariable Calculus Study Resources

Related Notes

  • Applications of Vectors: Force, Volume, and Geometric Analysis842 words
  • Arc Length and Curvature: Multivariable Calculus Study Guide780 words
  • Calculus III: Area and Arc Length in Polar Coordinates Study Guide875 words
  • Calculus of Parametric Curves: Comprehensive Study Guide892 words
  • Calculus of Vector-Valued Functions: A Comprehensive Study Guide825 words
  • Conic Sections: Geometric Foundations and Polar Representations845 words
  • Mastering Conservative Vector Fields: Path Independence and Potential Functions925 words
  • Mastering Cylindrical and Spherical Coordinates925 words
  • Study Guide: Directional Derivatives and the Gradient985 words
  • Divergence and Curl: Vector Calculus Study Guide860 words
  • Double Integrals in Polar Coordinates875 words
  • Study Guide: Double Integrals over General Regions875 words

Ready to study Calculus III: Multivariable Calculus?

Practice tests, flashcards, and all study notes — free, no sign-up.

Start Studying

Ready to study Calculus III: Multivariable Calculus?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free
Calculus III: Multivariable Calculus ResourcesExplore All HivesBlogHome

© 2026 BrainyBee. Free AI-powered exam prep.

Loading Diagram...
Flowchart, top to bottom. Start: Given u and v connects to Are they in R3?. B -- No connects to Cross Product Not Defined. B -- Yes connects to Set up 3x3 Determinant. D connects to Top Row: i, j, k. D connects to Middle Row: u components. D connects to Bottom Row: v components. E & F & G connects to Expand by Minors. H connects to Resulting Vector.