11 Vectors

11.4 The Cross Product

“Orthogonality” is immensely important. A quick scan of your current environment will undoubtedly reveal numerous surfaces and edges that are perpendicular to each other (including the edges of this page). The dot product provides a quick test for orthogonality: vectors u and v are perpendicular if, and only if, uv=0.

Given two non-parallel, nonzero vectors u and v in space, it is very useful to find a vector w that is perpendicular to both u and v. There is a operation, called the cross product, that creates such a vector. This section defines the cross product, then explores its properties and applications.

Definition 11.4.1 Cross Product

Let u=u1,u2,u3 and v=v1,v2,v3 be vectors in 3. The cross product of u and v, denoted u×v, is the vector

u×v=u2v3-u3v2,-(u1v3-u3v1),u1v2-u2v1.

This definition can be a bit cumbersome to remember. After an example we will give a convenient method for computing the cross product. For now, careful examination of the products and differences given in the definition should reveal a pattern that is not too difficult to remember. (For instance, in the first component only 2 and 3 appear as subscripts; in the second component, only 1 and 3 appear as subscripts. Further study reveals the order in which they appear.)

Let’s practice using this definition by computing a cross product.

Example 11.4.1 Computing a cross product

Let u=2,-1,4 and v=3,2,5. Find u×v, and verify that it is orthogonal to both u and v.

SolutionUsing Definition 11.4.1, we have

u×v=(-1)5-(4)2,-((2)5-(4)3),(2)2-(-1)3=-13,2,7.

(We encourage the reader to compute this product on their own, then verify their result.)

We test whether or not u×v is orthogonal to u and v using the dot product:

(u×v)u =-13,2,72,-1,4=-132+2(-1)+74=0,
(u×v)v =-13,2,73,2,5=-133+22+75=0.

Since both dot products are zero, u×v is indeed orthogonal to both u and v.

Additional Material on 2×2 and 3×3 determinants

We will now make a slight digression. Given four numbers a, b, c, d we define the 2×2 determinant

|abcd|=ad-bc.

Thus

|1234|=-2 and |3-2-64|=0.

Given nine numbers r1, r2, r3, s1, s2, s3, t1, t2, t3 we define the 3×3 determinant in terms of three 2×2 determinants as follows

|r1r2r3s1s2s3t1t2t3|=r1|s2s3t2t3|-!r2|s1s3t1t3|+r3|s1s2t1t2|.

Note the minus sign in the second term. Thus

|1230-15740| =1|-1540|-2|0570|+3|0-174|
=1(-20)-2(-35)+37
=71.

We can now express v×w as a symbolic 3×3 determinant as follows.

v×w =|ıȷka1a2a3b1b2b3|
=ı|a2a3b2b3|-ȷ|a1a3b1b3|+k|a1a2b1b2|
=(a2b3-a3b2)ı-(a1b3-a3b1)ȷ+(a1b2-a2b1)k

Another way to remember the 3×3 determinant is to repeat the first two columns after the original three:

ıȷkıȷ2-142-132532

This gives three full “upper left to lower right” diagonals, and three full “upper right to lower left” diagonals, as shown. Compute the products along each diagonal, then add the products on the right and subtract the products on the left:

ıȷkıȷ2-142-132532-5ı12ȷ4k-3k8ı10ȷ
u×v=(-5ı+12ȷ+4k)-(-3k+8ı+10ȷ)=-13ı+2ȷ+7k=-13,2,7.

This is equivalent to evaluating the determinant

|ıȷk2-14325| =|-1425|ı-|2435|ȷ+|2-132|k
=(-5-8)ı-(10-12)ȷ+(4-(-3))k=-13ı+2ȷ+7k.

We practice using this method.

Example 11.4.2 Computing a cross product

Let u=1,3,6 and v=-1,2,1. Compute both u×v and v×u.

SolutionTo compute u×v, we form the matrix as prescribed above, complete with repeated first columns:

ıȷkıȷ13613-121-12

We let the reader compute the products of the diagonals; we give the result:

u×v=(3ı-6ȷ+2k)-(-3k+12ı+ȷ)=-9,-7,5.

To compute v×u, we switch the second and third rows of the above matrix, then multiply along diagonals and subtract:

ıȷkıȷ-121-1213613

Note how with the rows being switched, the products that once appeared on the right now appear on the left, and vice-versa. Thus the result is:

v×u=(12ı+ȷ-3k)-(2k+3ı-6ȷ)=9,7,-5,

which is the opposite of u×v. We leave it to the reader to verify that each of these vectors is orthogonal to u and v.

Properties of the Cross Product

It is not coincidence that v×u=-(u×v) in the preceding example; one can show using Definition 11.4.1 that this will always be the case. The following theorem states several useful properties of the cross product, each of which can be verified by referring to the definition.

Theorem 11.4.1 Properties of the Cross Product

Let u, v and w be vectors in 3 and let c be a scalar. The following identities hold:

  1. (a)

    u×v=-(v×u)

    Anticommutative Property

  2. (b)
    1. (a)

      (u+v)×w=u×w+v×w

      Distributive Properties

    2. (b)

      u×(v+w)=u×v+u×w

  3. (c)

    c(u×v)=(cu)×v=u×(cv)

  4. (d)
    1. (a)

      (u×v)u=0

      Orthogonality Properties

    2. (b)

      (u×v)v=0

  5. (e)

    u×u=0

  6. (f)

    u×0=0

  7. (g)

    u(v×w)=(u×v)w

    Scalar Triple Product

We introduced the cross product as a way to find a vector orthogonal to two given vectors, but we did not give a proof that the construction given in Definition 11.4.1 satisfies this property. Theorem 11.4.1 asserts this property holds; we leave the verification to Exercise 47..

Property 5 from the theorem is also left to the reader to prove in Exercise 48., but it reveals something more interesting than “the cross product of a vector with itself is 0.” Let u and v be parallel vectors; that is, let there be a scalar c such that v=cu. Consider their cross product:

u×v =u×(cu)
=c(u×u) (by Property 3 of Theorem 11.4.1)
=0. (by Property 5 of Theorem 11.4.1)

We have just shown that the cross product of parallel vectors is 0. This hints at something deeper. Theorem 11.3.2 related the angle between two vectors and their dot product; there is a similar relationship relating the cross product of two vectors and the angle between them, given by the following theorem.

Theorem 11.4.2 The Cross Product and Angles

Let u and v be vectors in 3. Then

u×v=uvsinθ,

where θ, 0θπ, is the angle between u and v.

margin: Note: Definition 11.3.2 (through Theorem 11.3.2) defines u and v to be orthogonal if uv=0. We could use Theorem 11.4.2 to define u and v are parallel if u×v=0. By such a definition, 0 would be both orthogonal and parallel to every vector. Apparent paradoxes such as this are not uncommon in mathematics and can be very useful. (See also the marginal note at Definition 11.2.5.) Λ

Note that this theorem makes a statement about the magnitude of the cross product. When the angle between u and v is 0 or π (i.e., the vectors are parallel), the magnitude of the cross product is 0. The only vector with a magnitude of 0 is 0 (see Property (i) of Theorem 11.2.1), hence the cross product of parallel vectors is 0.

We demonstrate the truth of this theorem in the following example.

Example 11.4.3 The cross product and angles

Let u=1,3,6 and v=-1,2,1 as in Example 11.4.2. Verify Theorem 11.4.2 by finding θ, the angle between u and v, and the magnitude of u×v.

SolutionWe use Theorem 11.3.2 to find the angle between u and v.

θ =cos-1(uvuv)
=cos-1(11466)
0.8471=48.54.

Our work in Example 11.4.2 showed that u×v=-9,-7,5, which has norm 155. Is u×v=uvsinθ? Using numerical approximations, we find:

u×v =155 uvsinθ =466sin0.8471
12.45. 12.45.

Numerically, they seem equal. Using a right triangle, one can show that

sin(cos-1(11466))=155466,

which allows us to verify the theorem exactly.

Right Hand Rule

The anticommutative property of the cross product demonstrates that u×v and v×u differ only by a sign — these vectors have the same magnitude but point in the opposite direction. When seeking a vector perpendicular to u and v, we essentially have two directions to choose from, one in the direction of u×v and one in the direction of v×u. Does it matter which we choose? How can we tell which one we will get without graphing, etc.?

margin:
(fullscreen)
Figure 11.4.1: Illustrating the Right Hand Rule of the cross product. Λ

Another property of the cross product, as defined, is that it follows the right hand rule. Given u and v in 3 with the same initial point, point the index finger of your right hand in the direction of u and let your middle finger point in the direction of v (much as we did when establishing the right hand rule for the 3-dimensional coordinate system). Your thumb will naturally extend in the direction of u×v. One can “practice” this using Figure 11.4.1. If you switch, and point the index finder in the direction of v and the middle finger in the direction of u, your thumb will now point in the opposite direction, allowing you to “visualize” the anticommutative property of the cross product. In fact, we can use this property to define the cross product, which we summarize in the next key idea.

Key Idea 11.4.1 Alternate Definition of the Cross Product

For vectors u and v, the cross product u×v is the unique vector such that

  1. (a)

    u×v=uvsinθ where θ is the angle between u and v,

  2. (b)

    u×v is orthogonal to both u and v, and

  3. (c)

    u, v, and u×v form a right-handed triple.

Applications of the Cross Product

There are a number of ways in which the cross product is useful in mathematics, physics and other areas of science beyond “just” finding a vector perpendicular to two others. We highlight a few here.

Area of a Parallelogram

margin: bh (a)vθuh (b) Figure 11.4.2: Using the cross product to find the area of a parallelogram. Λ

It is a standard geometry fact that the area of a parallelogram is A=bh, where b is the length of the base and h is the height of the parallelogram, as illustrated in Figure 11.4.2(a). As shown when defining the Parallelogram Law of vector addition, two vectors u and v define a parallelogram when drawn from the same initial point, as illustrated in Figure 11.4.2(b). Trigonometry tells us that h=usinθ, hence the area of the parallelogram is

A=uvsinθ=u×v, (11.4.1)

where the second equality comes from Theorem 11.4.2. We illustrate using Equation (11.4.1) in the following example.

Example 11.4.4 Finding the area of a parallelogram


(a) Find the area of the parallelogram defined by the vectors u=2,1 and v=1,3. (b) Verify that the points A=(1,1,1), B=(2,3,2), C=(4,5,3) and D=(3,3,2) are the vertices of a parallelogram. Find the area of the parallelogram. margin: uv123412345xy (a)
(fullscreen)
(b)
Figure 11.4.3: Sketching the parallelograms in Example 11.4.4. Λ

Solution
(a) Figure 11.4.3(a) sketches the parallelogram defined by the vectors u and v. We have a slight problem in that our vectors exist in 2, not 3, and the cross product is only defined on vectors in 3. We skirt this issue by viewing u and v as vectors in the x-y plane of 3, and rewrite them as u=2,1,0 and v=1,3,0. We can now compute the cross product. It is easy to show that u×v=0,0,5; therefore the area of the parallelogram is A=u×v=5. (b) To show that the quadrilateral ABCD is a parallelogram (shown in Figure 11.4.3(b)), we need to show that the opposite sides are parallel. We can quickly show that AB=DC=1,2,1 and BC=AD=2,2,1. We find the area by computing the magnitude of the cross product of AB and BC: AB×BC=0,1,-2AB×BC=5.

This application is more commonly used to find the area of a triangle (because triangles are used more often than parallelograms). We illustrate this in the following example.

Example 11.4.5 Area of a triangle

Find the area of the triangle with vertices A=(1,2), B=(2,3) and C=(3,1), as pictured in Figure 11.4.4. margin: ABC123123xy Figure 11.4.4: Finding the area of a triangle in Example 11.4.5. Λ

SolutionWe found the area of this triangle in Example 6.1.5 to be 1.5 using integration. There we discussed the fact that finding the area of a triangle can be inconvenient using the “12bh” formula as one has to compute the height, which generally involves finding angles, etc. Using a cross product is much more direct.

We can choose any two sides of the triangle to use to form vectors; we choose AB=1,1 and AC=2,-1. As in the previous example, we will rewrite these vectors with a third component of 0 so that we can apply the cross product. The area of the triangle is

12AB×AC=121,1,0×2,-1,0=120,0,-3=32.

We arrive at the same answer as before with less work.

Volume of a Parallelepiped

margin: Note: The word “parallelepiped” is pronounced “parallel-eh-pipe-ed.” Λ

The three dimensional analogue to the parallelogram is the parallelepiped. Each face is parallel to the opposite face, as illustrated in Figure 11.4.5. By crossing v and w, one gets a vector whose magnitude is the area of the base. Dotting this vector with u computes the volume of the parallelepiped! (Up to a sign; take the absolute value.)

margin:
(fullscreen)
Figure 11.4.5: A parallelepiped is the three dimensional analogue to the parallelogram. Λ

Thus the volume of a parallelepiped defined by vectors u, v and w is

V=|u(v×w)|. (11.4.2)

Note how this is the Scalar Triple Product, first seen in Theorem 11.4.1. Applying the identities given in the theorem shows that we can apply the Scalar Triple Product in any “order” we choose to find the volume. That is,

V=|u(v×w)|=|u(w×v)|=|(u×v)w|,etc.

As with the cross product, we can also write u(v×w) in terms of a determinant:

u(v×w)=|u1u2u3v1v2v3w1w2w3|.

Because margin:
(fullscreen)
Figure 11.4.6: A parallelepiped in Example 11.4.6. Λ
the volume is the absolute value of the determinant, changing the order of the rows can only change the sign of this determinant, which doesn’t change the final answer.

Example 11.4.6 Finding the volume of parallelepiped

Find the volume of the parallelepiped defined by the vectors u=1,1,0, v=-1,1,0 and w=0,1,1.

SolutionWe apply Equation (11.4.2). We first find v×w=1,1,-1. Then

|u(v×w)|=|1,1,01,1,-1|=2.

So the volume of the parallelepiped is 2 cubic units. In terms of determinants, we have

|110-110011|=|1011|1-|-1001|1+|-1101|0=(1-0)1-(-1-0)1=1+1=2,

and the absolute value of this determinant is again 2.

Torque

Torque is a measure of the turning force applied to an object. A classic scenario involving torque is the application of a wrench to a bolt. When a force is applied to the wrench, the bolt turns. When we represent the force and wrench with vectors F and , we see that the bolt moves (because of the threads) in a direction orthogonal to F and . Torque is usually represented by the Greek letter τ, or tau, and has units of Nm, a newton-meter, or ftlb, a foot-pound.

While a full understanding of torque is beyond the purposes of this book, when a force F is applied to a lever arm , the resulting torque is

τ=×F. (11.4.3)
Example 11.4.7 Computing torque

A lever of length 2ft makes an angle with the horizontal of 45. Find the resulting torque when a force of 10lb is applied to the end of the level where:

margin: 90F60F Figure 11.4.7: Showing a force being applied to a lever in Example 11.4.7. Λ
  1. (a)

    the force is perpendicular to the lever, and

  2. (b)

    the force makes an angle of 60 with the lever, as shown in Figure 11.4.7.

Solution

  1. (a)

    We start by determining vectors for the force and lever arm. Since the lever arm makes a 45 angle with the horizontal and is 2ft long, we can state that =2cos45,sin45=2,2. Since the force vector is perpendicular to the lever arm (as seen in the left hand side of Figure 11.4.7), we can conclude it is making an angle of -45 with the horizontal. As it has a magnitude of 10lb, we can state F=10cos(-45),sin(-45)=52,-52. Using Equation (11.4.3) to find the torque requires a cross product. We again let the third component of each vector be 0 and compute the cross product:

    τ =×F
    =2,2,0×52,-52,0
    =0,0,-20

    This clearly has a magnitude of 20 ft-lb. We can view the force and lever arm vectors as lying “on the page”; our computation of τ shows that the torque goes “into the page.” This follows the Right Hand Rule of the cross product, and it also matches well with the example of the wrench turning the bolt. Turning a bolt clockwise moves it in.

  2. (b)

    Our lever arm can still be represented by =2,2. As our force vector makes a 60 angle with , we can see (referencing the right hand side of the figure) that F makes a -15 angle with the horizontal. Thus

    F=10cos-15,sin-15 =5(1+3)2,5(1-3)2.

    We again make the third component 0 and take the cross product to find the torque:

    τ =×F
    =2,2,0×5(1+3)2,5(1-3)2,0
    =0,0,-103.

    As one might expect, when the force and lever arm vectors are orthogonal, the magnitude of force is greater than when the vectors are not orthogonal.

While the cross product has a variety of applications (as noted in this chapter), its fundamental use is finding a vector perpendicular to two others. Knowing a vector is orthogonal to two others is of incredible importance, as it allows us to find the equations of lines and planes in a variety of contexts. The importance of the cross product, in some sense, relies on the importance of lines and planes, which see widespread use throughout engineering, physics and mathematics. We study lines and planes in the next two sections.

Exercises 11.4

 

Terms and Concepts

  1. 1.

    The cross product of two vectors is a             , not a scalar.

  2. 2.
    One can visualize the direction of u×v using the                                       .
  3. 3.

    Give a synonym for “orthogonal.”

  4. 4.

    T/F: A fundamental principle of the cross product is that u×v is orthogonal to u and v.

  5. 5.

                 is a measure of the turning force applied to an object.

  6. 6.

    T/F: If u and v are parallel, then u×v=0.

Problems

  1. 7.
    State whether each expression is meaningful. If not, explain why. If so, state whether it is a vector or a scalar. (a) a(b×c) (b) a×(b×c) (c) (ab)×(cd) (d) a×(bc) (e) (a×b)(c×d) (f) (a×b)(c×d)
  2. 8.
    For any u and v in 3 we have u2v2=(uv)2+u×v2. (This can be verified directly by a somewhat messy algebraic computation.) Use this formula to show that u×v=uvsinθ where θ is the angle between u and v.

In Exercises 9–12., calculate the determinant.

  1. 9.

    |4125|

  2. 10.

    |-12124|

  3. 11.

    |123456789|

  4. 12.

    |2134-1-5121|

In Exercises 13–20., vectors u and v are given. Compute u×v and show this is orthogonal to both u and v.

  1. 13.

    u=3,2,-2, v=0,1,5

  2. 14.

    u=5,-4,3, v=2,-5,1

  3. 15.

    u=4,-5,-5, v=3,3,4

  4. 16.

    u=-4,7,-10, v=4,4,1

  5. 17.

    u=1,0,1, v=5,0,7

  6. 18.

    u=1,5,-4, v=-2,-10,8

  7. 19.

    u=ı, v=ȷ

  8. 20.

    u=ı, v=k

  1. 21.

    Pick any vectors u, v and w in 3 and show that u×(v+w)=u×v+u×w.

  2. 22.

    Pick any vectors u, v and w in 3 and show that u(v×w)=(u×v)w.

In Exercises 23–26., the magnitudes of vectors u and v in 3 are given, along with the angle θ between them. Use this information to find the magnitude of u×v.

  1. 23.

    u=2, v=5, θ=30

  2. 24.

    u=3, v=7, θ=π/2

  3. 25.

    u=3, v=4, θ=π

  4. 26.

    u=2, v=5, θ=5π/6

In Exercises 27–30., find the area of the parallelogram defined by the given vectors.

  1. 27.

    u=1,1,2, v=2,0,3

  2. 28.

    u=-2,1,5, v=-1,3,1

  3. 29.

    u=1,2, v=2,1

  4. 30.

    u=2,0, v=0,3

In Exercises 31–34., find the area of the triangle with the given vertices.

  1. 31.

    Vertices: (0,0,0), (1,3,-1) and (2,1,1).

  2. 32.

    Vertices: (5,2,-1), (3,6,2) and (1,0,4).

  3. 33.

    Vertices: (1,1), (1,3) and (2,2).

  4. 34.

    Vertices: (3,1), (1,2) and (4,3).

In Exercises 35–36., find the area of the quadrilateral with the given vertices. (Hint: break the quadrilateral into 2 triangles.)

  1. 35.

    Vertices: (0,0), (1,2), (3,0) and (4,3).

  2. 36.

    Vertices: (0,0,0), (2,1,1), (-1,2,-8) and (1,-1,5).

In Exercises 37–38., find the volume of the parallelepiped defined by the given vectors.

  1. 37.

    u=1,1,1, v=1,2,3,  w=1,0,1

  2. 38.

    u=-1,2,1, v=2,2,1,  w=3,1,3

In Exercises 39–42., find a unit vector orthogonal to both u and v.

  1. 39.

    u=1,1,1, v=2,0,1

  2. 40.

    u=1,-2,1, v=3,2,1

  3. 41.

    u=5,0,2, v=-3,0,7

  4. 42.

    u=1,-2,1, v=-2,4,-2

  1. 43.

    A bicycle rider applies 150lb of force, straight down, onto a pedal that extends 7in horizontally from the crankshaft. Find the magnitude of the torque applied to the crankshaft.

  2. 44.

    A bicycle rider applies 150lb of force, straight down, onto a pedal that extends 7in from the crankshaft, making a 30 angle with the horizontal. Find the magnitude of the torque applied to the crankshaft.

  3. 45.

    To turn a stubborn bolt, 80lb of force is applied to a 10in wrench. What is the maximum amount of torque that can be applied to the bolt?

  4. 46.

    To turn a stubborn bolt, 80lb of force is applied to a 10in wrench in a confined space, where the direction of applied force makes a 10 angle with the wrench. How much torque is subsequently applied to the wrench?

  5. 47.

    Show, using the definition of the Cross Product, that u(u×v)=0; that is, that u is orthogonal to the cross product of u and v.

  6. 48.

    Show, using the definition of the Cross Product, that u×u=0.

  7. 49.

    Suppose a, v, and w are vectors in 3 with a0. Show that if both av=aw and a×v=a×w then v=w.

  8. 50.

    Show that |abcd|=0 if and only if a,b and c,d are parallel.

  9. 51.

    Show that v×w=0 if and only if v and w are parallel in 3.

  10. 52.

    Show that |cdab|=-|abcd|.

  11. 53.

    Show that w×v=-(v×w) for any v and w in 3.

  12. 54.

    Show that for any real numbers s and t we have |sasbtctd|=st|abcd|.

  13. 55.

    Show that c(v×w)=v×(cw) for any scalar c and for any v and w in 3.

  14. 56.

    Show that |abc+sd+t|=|abcd|+|abst|.

  15. 57.

    Show that u×(v+w)=u×v+u×w for any u, v, and w in 3.

  16. 58.
    Let u=u1,u2,u3, v=v1,v2,v3, and w=w1,w2,w3. Show that u(v×w)=|u1u2u3v1v2v3w1w2w3|
  17. 59.

    We have seen that if we swap two rows of a 2×2 determinant the determinant changes sign. This is true for 3×3 determinants as well. Using this fact show that u(v×w)=(u×v)w for any vectors u, v and w in 3.

  18. 60.

    We have seen that if two rows of a 2×2 determinant are the same the determinant is zero. This is true for 3×3 determinants as well. Using this fact show that v×w is orthogonal to both v and w for any vectors v and w in 3.

Omni CMS