Wednesday, November 4, 2015

Episode 077: c x d and d x c, Cross Product Examples Pt. 2





Download this episode (right click and save)







One thing that we noticed last time, is that

c x d = -(d x c)

Is it possible to prove this? In order to verify, let’s perform the exact same steps with two vectors [vx,vy] and [wx,wy]. First let’s calculate v x w:

Step 1: Identify Two Vectors in Coordinate System as [ax,ay] & [bx,by]- These are given in the problem as [cx,cy] and [dx,dy]. For later reference, let’s identify each component:

ax = cx
ay = cy
bx = dx
by = dy

Step 2: Multiply ax and by- Here we can easily reference step #1 and perform the following operation:

ax * by = cx*dy

Step 3: Multiply ay and bx- Here again we can easily reference step #1 and perform the following operation:

ay * bx = cy*dx

Step 4: Subtract step 2 from step 3, i.e. ax*by-ay*bx:

cx*dy-cy*dx

Step 5: Place a k-hat at the end and box your answer, you’re done! So our answer is:

(cx*dy-cy*dx)k-hat

Next, let’s calculate -(d x c). In order to do this, we’ll simply calculate w x v and then multiply by -1.

Step 1: Identify Two Vectors in Coordinate System as [ax,ay] & [bx,by]- These are given in the problem as [wx,wy] and [vx,vy]. Notice that they are reverse this time. For later reference, let’s identify each component:

ax = dx
ay = dy
bx = cx
by = cy

Step 2: Multiply ax and by- Here we can easily reference step #1 and perform the following operation:

ax * by = dx*cy

Step 3: Multiply ay and bx- Here again we can easily reference step #1 and perform the following operation:

ay * bx = dy*cx

Step 4: Subtract step 2 from step 3, i.e. ax*by-ay*bx:

dx*cy-dy*cx

Step 5: Place a k-hat at the end and box your answer, you’re done! So our answer multiplied by -1 is:

-(dx*cy-dy*cx)k-hat
=(-dx*cy+dy*cx)k-hat
=(cx*dy-cy*dx)k-hat

So, not a full proof, but very convincing nevertheless. It turns out that this is actually true in all cases, in 2-D and all higher dimensions. In order to explore the cross product deeper, we will now perform the same example, but with 3-D vectors, which will have a single new number as our z-coordinate.