1. Vectors and Geometry

Cross Product

Covers the cross product, its properties, and its role in determining orthogonal vectors and areas.

Cross Product

Welcome to this exciting lesson on the cross product! Today, we'll dive into a powerful tool from vector calculus that helps us find orthogonal vectors, calculate areas of parallelograms, and even solve real-world problems in physics and engineering. 🎯

By the end of this lesson, you’ll be able to:

  • Understand what the cross product is and how it differs from the dot product.
  • Calculate the cross product of two vectors using both the formula and determinant methods.
  • Apply the cross product to find a vector orthogonal to two given vectors.
  • Use the cross product to determine the area of parallelograms and triangles.
  • Explore real-world applications of the cross product in fields such as physics (torque) and computer graphics (surface normals).

Let’s dive in and see how this fascinating operation can help you solve problems in multidimensional spaces! 🌟

What is the Cross Product?

The cross product is an operation that takes two vectors in three-dimensional space and produces a third vector that is orthogonal (perpendicular) to both of the original vectors. Unlike the dot product, which returns a scalar, the cross product returns a vector. This vector not only tells us something about the direction (perpendicular to both original vectors) but also about the magnitude (related to the area formed by the two vectors).

Let’s start with the definition.

Definition of the Cross Product

The cross product of two vectors $\mathbf{a} = \langle a_1, a_2, a_3 \rangle$ and $\mathbf{b} = \langle b_1, b_2, b_3 \rangle$ is denoted by $\mathbf{a} \times \mathbf{b}$ and is defined as:

$\mathbf{a}$ $\times$ $\mathbf{b}$ = \langle a_2b_3 - a_3b_2, \; a_3b_1 - a_1b_3, \; a_1b_2 - a_2b_1 \rangle

This might look complicated at first glance, but don’t worry—we’ll break it down with examples and methods that make it easier to calculate.

Key Properties of the Cross Product

Here are some key properties of the cross product that will help you understand its behavior:

  1. Orthogonality: The result of the cross product $\mathbf{a} \times \mathbf{b}$ is always perpendicular to both $\mathbf{a}$ and $\mathbf{b}$.
  2. Non-Commutative: The cross product is not commutative. In fact, if you reverse the order of the vectors, you get the opposite direction:

$\mathbf{a}$ $\times$ $\mathbf{b}$ = - ($\mathbf{b}$ $\times$ $\mathbf{a}$)

  1. Magnitude: The magnitude (or length) of the cross product vector is equal to the area of the parallelogram formed by the two vectors:

|$\mathbf{a}$ $\times$ $\mathbf{b}$| = |$\mathbf{a}$| \, |$\mathbf{b}$| $\sin($$\theta)$

where $\theta$ is the angle between $\mathbf{a}$ and $\mathbf{b}$.

  1. Zero Vector: If the two vectors are parallel or anti-parallel (i.e., they point in the same or exactly opposite directions), their cross product is the zero vector:

$\mathbf{a}$ $\times$ $\mathbf{b}$ = $\mathbf{0}$ \quad \text{if} \quad $\mathbf{a}$ \parallel $\mathbf{b}$

Cross Product vs. Dot Product

It’s important to distinguish the cross product from the dot product. Here’s a quick comparison:

| Feature | Dot Product ($\mathbf{a} \cdot \mathbf{b}$) | Cross Product ($\mathbf{a} \times \mathbf{b}$) |

|--------------------|---------------------------------------------|------------------------------------------------|

| Result | Scalar | Vector |

| Formula | $a_1b_1 + a_2b_2 + a_3b_3$ | $\langle a_2b_3 - a_3b_2, \; a_3b_1 - a_1b_3, \; a_1b_2 - a_2b_1 \rangle$ |

| Geometric Meaning | Measures how aligned two vectors are | Finds a vector perpendicular to both inputs |

| Angle Dependence | $\cos(\theta)$ | $\sin(\theta)$ |

| Commutative | Yes | No |

Now that we have a strong conceptual foundation, let’s explore how to compute the cross product.

How to Compute the Cross Product

There are two main ways to compute the cross product: using the formula directly or using the determinant method. Let’s look at both.

Method 1: Using the Formula

Let’s say we have two vectors:

$\mathbf{a}$ = \langle 2, 3, 4 \rangle \quad \text{and} \quad $\mathbf{b}$ = \langle 5, 6, 7 \rangle

We can calculate their cross product using the formula:

$\mathbf{a}$ $\times$ $\mathbf{b}$ = \langle ($3 \cdot 7$ - $4 \cdot 6$), \; ($4 \cdot 5$ - $2 \cdot 7$), \; ($2 \cdot 6$ - $3 \cdot 5$) \rangle

Let’s simplify step-by-step:

  1. First component: $3 \cdot 7 - 4 \cdot 6 = 21 - 24 = -3$
  2. Second component: $4 \cdot 5 - 2 \cdot 7 = 20 - 14 = 6$
  3. Third component: $2 \cdot 6 - 3 \cdot 5 = 12 - 15 = -3$

So, the cross product is:

$\mathbf{a}$ $\times$ $\mathbf{b}$ = \langle -3, 6, -3 \rangle

Method 2: Using the Determinant

Another way to find the cross product is by using the determinant of a $3 \times 3$ matrix. This method is often easier to remember and involves using the standard unit vectors $\mathbf{i}, \mathbf{j}, \mathbf{k}$.

We set up a matrix like this:

$\mathbf{a} \times \mathbf{b} = $

$\begin{vmatrix}$

$\mathbf{i} & \mathbf{j} & \mathbf{k} \\$

$a_1 & a_2 & a_3 \\$

$b_1 & b_2 & b_3$

$\end{vmatrix}$

For our example, this becomes:

$\mathbf{a} \times \mathbf{b} = $

$\begin{vmatrix}$

$\mathbf{i} & \mathbf{j} & \mathbf{k} \\$

2 & 3 & 4 \\

5 & 6 & 7

$\end{vmatrix}$

We expand this determinant by minors. The formula is:

$\mathbf{a} \times \mathbf{b} = \mathbf{i} $

$\begin{vmatrix}$

3 & 4 \\

6 & 7

$\end{vmatrix} $

$- \mathbf{j}$

$\begin{vmatrix}$

2 & 4 \\

5 & 7

$\end{vmatrix} $

$+ \mathbf{k}$

$\begin{vmatrix}$

2 & 3 \\

5 & 6

$\end{vmatrix}$

Let’s calculate each minor:

  1. For $\mathbf{i}$:

$ \begin{vmatrix}$

3 & 4 \\

6 & 7

$\end{vmatrix}$ = ($3 \cdot 7$ - $4 \cdot 6$) = 21 - 24 = -3

  1. For $\mathbf{j}$:

$ \begin{vmatrix}$

2 & 4 \\

5 & 7

$\end{vmatrix}$ = ($2 \cdot 7$ - $4 \cdot 5$) = 14 - 20 = -6

  1. For $\mathbf{k}$:

$ \begin{vmatrix}$

2 & 3 \\

5 & 6

$\end{vmatrix}$ = ($2 \cdot 6$ - $3 \cdot 5$) = 12 - 15 = -3

Now we plug these back in, remembering to alternate signs:

$\mathbf{a}$ $\times$ $\mathbf{b}$ = $\mathbf{i}$(-3) - $\mathbf{j}$(-6) + $\mathbf{k}$(-3)

This gives us:

$\mathbf{a}$ $\times$ $\mathbf{b}$ = -$3 \mathbf{i}$ + $6 \mathbf{j}$ - $3 \mathbf{k}$

In vector form, that’s:

$\mathbf{a}$ $\times$ $\mathbf{b}$ = \langle -3, 6, -3 \rangle

Notice that we got the same result as before! 🎉

Geometric Interpretation of the Cross Product

Now that we know how to calculate the cross product, let’s explore its geometric meaning.

Orthogonal Vectors

As mentioned earlier, the resulting vector from the cross product is always perpendicular (orthogonal) to both input vectors. This is incredibly useful in applications where we need to find a normal vector to a plane defined by two vectors.

For example, suppose we have two vectors:

$\mathbf{u}$ = \langle 1, 0, 0 \rangle \quad \text{and} \quad $\mathbf{v}$ = \langle 0, 1, 0 \rangle

Their cross product is:

$\mathbf{u}$ $\times$ $\mathbf{v}$ = \langle 0, 0, 1 \rangle

This resulting vector is the standard unit vector in the $z$-direction. It’s perpendicular to both the $x$-axis and the $y$-axis, confirming that the cross product gives us a vector orthogonal to both input vectors.

Area of a Parallelogram

One of the most important applications of the cross product is finding the area of the parallelogram formed by two vectors. The magnitude of the cross product gives us this area.

Let’s say we have two vectors $\mathbf{a}$ and $\mathbf{b}$. The area of the parallelogram they form is:

$\text{Area} = |\mathbf{a} \times \mathbf{b}|$

Let’s return to our earlier example with:

$\mathbf{a}$ = \langle 2, 3, 4 \rangle \quad \text{and} \quad $\mathbf{b}$ = \langle 5, 6, 7 \rangle

We found that:

$\mathbf{a}$ $\times$ $\mathbf{b}$ = \langle -3, 6, -3 \rangle

The magnitude of this vector is:

|$\mathbf{a}$ $\times$ $\mathbf{b}$| = $\sqrt{(-3)^2 + 6^2 + (-3)^2}$ = $\sqrt{9 + 36 + 9}$ = $\sqrt{54}$ = $3\sqrt{6}$ $\approx 7$.35

So, the area of the parallelogram formed by these two vectors is approximately $7.35$ square units.

Area of a Triangle

We can also find the area of the triangle formed by two vectors. Since a triangle is half of a parallelogram, the area of the triangle is half the magnitude of the cross product:

\text{Area of Triangle} = $\frac{1}{2}$ |$\mathbf{a}$ $\times$ $\mathbf{b}$|

In our example, the area of the triangle would be:

$\frac{1}{2} \times 7.35 = 3.675$

Fun Fact: Right-Hand Rule 🖐️

The direction of the cross product vector is determined by the right-hand rule. Here’s how it works:

  1. Point your right-hand index finger in the direction of the first vector $\mathbf{a}$.
  2. Point your middle finger in the direction of the second vector $\mathbf{b}$.
  3. Your thumb will point in the direction of $\mathbf{a} \times \mathbf{b}$.

This rule helps us figure out the orientation of the resulting vector in 3D space.

Applications of the Cross Product

The cross product isn’t just a theoretical concept—it has many practical applications in physics, engineering, and computer graphics. Let’s look at a few.

1. Torque in Physics 🔧

In physics, torque is a measure of the rotational force applied to an object. It’s calculated using the cross product of the position vector $\mathbf{r}$ (from the pivot point) and the force vector $\mathbf{F}$:

$\boldsymbol{\tau} = \mathbf{r} \times \mathbf{F}$

The magnitude of the torque tells us how much rotational force is applied, and the direction of the torque vector tells us the axis around which the object will rotate.

2. Surface Normals in Computer Graphics 🎨

In computer graphics, the cross product is used to find the normal vector to a surface. This normal vector is essential for lighting calculations, shading, and rendering 3D objects realistically.

For example, if we have two vectors that lie on a surface (e.g., two edges of a polygon), their cross product gives us the normal vector to that surface. This normal vector is then used to determine how light interacts with the surface, creating realistic lighting effects.

3. Angular Momentum in Physics 🌀

Another important application in physics is angular momentum. The angular momentum $\mathbf{L}$ of a particle is given by the cross product of its position vector $\mathbf{r}$ and its linear momentum $\mathbf{p}$:

$\mathbf{L} = \mathbf{r} \times \mathbf{p}$

This concept is crucial in understanding the motion of rotating systems, from spinning tops to orbiting planets.

4. Electromagnetism ⚡

In electromagnetism, the cross product is used in the Lorentz force law. The force $\mathbf{F}$ on a charged particle moving through a magnetic field $\mathbf{B}$ with velocity $\mathbf{v}$ is given by:

$\mathbf{F} = q (\mathbf{v} \times \mathbf{B})$

Here, $q$ is the charge of the particle. The direction of the force is perpendicular to both the velocity and the magnetic field, which can be determined using the right-hand rule.

Conclusion

In this lesson, we explored the concept of the cross product—a powerful tool in vector calculus. We learned how to compute it using both the formula and the determinant method, and we discovered its key properties, such as orthogonality and the relationship to the area of parallelograms. We also saw how the cross product is used in real-world applications like torque, computer graphics, and electromagnetism.

Understanding the cross product gives you a deeper insight into three-dimensional space and the relationships between vectors. Keep practicing, and soon you’ll be able to apply the cross product confidently in a variety of contexts. Great job today, students! 🎉

Study Notes

  • Definition of Cross Product:

$\mathbf{a}$ $\times$ $\mathbf{b}$ = \langle a_2b_3 - a_3b_2, \; a_3b_1 - a_1b_3, \; a_1b_2 - a_2b_1 \rangle

  • Determinant Method:

$ \mathbf{a} \times \mathbf{b} = $

$ \begin{vmatrix}$

$ \mathbf{i} & \mathbf{j} & \mathbf{k} \\$

$ a_1 & a_2 & a_3 \\$

$ b_1 & b_2 & b_3$

$ \end{vmatrix}$

  • Key Properties:
  • Result is a vector orthogonal to both $\mathbf{a}$ and $\mathbf{b}$.
  • Non-commutative: $\mathbf{a} \times \mathbf{b} = -(\mathbf{b} \times \mathbf{a})$
  • Magnitude: $|\mathbf{a} \times \mathbf{b}| = |\mathbf{a}| \, |\mathbf{b}| \sin(\theta)$
  • Zero vector if $\mathbf{a} \parallel \mathbf{b}$.
  • Geometric Interpretation:
  • The magnitude of $\mathbf{a} \times \mathbf{b}$ is the area of the parallelogram formed by $\mathbf{a}$ and $\mathbf{b}$.
  • The area of the triangle formed by $\mathbf{a}$ and $\mathbf{b}$ is $\frac{1}{2} |\mathbf{a} \times \mathbf{b}|$.
  • Right-Hand Rule:
  • Use the right hand: index finger points along $\mathbf{a}$, middle finger along $\mathbf{b}$, and thumb gives the direction of $\mathbf{a} \times \mathbf{b}$.
  • Applications:
  • Torque: $\boldsymbol{\tau} = \mathbf{r} \times \mathbf{F}$
  • Surface Normals: Used in computer graphics to find normals to surfaces.
  • Angular Momentum: $\mathbf{L} = \mathbf{r} \times \mathbf{p}$
  • Lorentz Force: $\mathbf{F} = q (\mathbf{v} \times \mathbf{B})$
  • Comparison to Dot Product:
  • Dot product: scalar, measures alignment ($\cos(\theta)$).
  • Cross product: vector, measures perpendicularity ($\sin(\theta)$).

Practice Quiz

5 questions to test your understanding