-1

I have decided to start learning physics before I am required to take the class in 11th grade so that I will be ahead of my classmates. I found a cheap physics book on amazon and ordered it but complications occurred when it introduced the Vector/Cross Product. It gives the following equation:

$$\mathbf{A} \times \mathbf{B} = \begin{bmatrix} A_y B_z - A_z B_y \\ A_z B_x - A_x B_y \\ A_x B_y - A_y B_x \end{bmatrix} $$

But it doesn't give any further information such as where the numbers come from. I found the Dot Product to be fairly strait forward while the arrangement of the numbers in this equation seem random at best so I am asking:

  • Why are the values of the two vectors arranged as they are in this equation?
Qmechanic
  • 201,751
  • 1
    Compute $(A\times B)\cdot A$ and $(A\times B)\cdot B$ and see what you get... – lemon May 08 '15 at 22:54
  • @Sheepman I came to the same conclusion and have been trying to get a little further in my book in the time it would take me to get another. – SemperAmbroscus May 08 '15 at 22:59
  • @lemon correct me if I am wrong but I don't see how doing the equation is going to help me understand it; It's like trying to use a word in its own definition. – SemperAmbroscus May 08 '15 at 23:05
  • See http://en.wikipedia.org/wiki/Cross_product#Conversion_to_matrix_multiplication – John Alexiou May 08 '15 at 23:21
  • 1
    Possible duplicates: http://physics.stackexchange.com/q/14082/2451 and links therein. – Qmechanic May 09 '15 at 00:21
  • 1
    @FeatheredOrcian, do what lemon suggests and you will find out why he suggested you do it... I guess his suggestion was a little cryptic, but if you did what he asks you would know why he ask you to do it... Anyways. Questions for you. How would you go about constructing a vector that is perpendicular to both A and B? – hft May 09 '15 at 01:16

3 Answers3

3

In mechanics the vector cross product is used to transform a force at a distance into a moment, and a rotation about an axis into linear velocity

$$ \mathbf{M} = \mathbf{r} \times \mathbf{F} \\ \mathbf{v} = \mathbf{r} \times \mathbf{\omega} $$

If you project those vectors into any plane, you will see that each component of force (or rotation) is multiplied with the perpendicular distance to it (called a moment arm). When combined in 3D the aforementioned expression for cross product is found.

For example consider the XY plane which yields a component about the Z axis

Picture1

The torque of the force $F$ at a distance $d$ is found by splitting the distance and force into components. The result is $M_z=r_x F_y -r_y F_x$ which is the same as the 3rd component of the cross product. If you do the same on all basic planes of projection you will end up with the cross product expression.

Often I view the vector cross product, not as a binary operation (between two vectors), But as an operator on a vector with

$$ \mathbf{A} \times \mathbf{B}=[\mathbf{A} \times] \mathbf{B} = \begin{vmatrix} 0 & -A_z & A_y \\ A_z & 0 & -A_x \\ -A_y & A_x & 0\end{vmatrix} \begin{bmatrix} B_x \\ B_y \\ B_z\end{bmatrix} =\begin{bmatrix} A_y B_z - A_z B_y \\ A_z B_x - A_x B_y \\ A_x B_y - A_y B_x \end{bmatrix}$$

(See Vector Cross Product Skew Symmetric Matrix)

John Alexiou
  • 38,341
2

A vector product of two vectors is also called a cross product. As you may know, one way of describing a vector, as opposed to defining a vector is "a quantity which has magnitude and direction." In 3-dimensional space, one can specify a vector as the sum of $x, y,$ and $z$ components of parts. We can write $$\vec{A} = (A_x, A_y, A_z) \text{ or } A_x\hat{i} +A_y\hat{j}+A_z\hat{k}.$$

The $\hat{i}, \hat{j}, \hat{k}$ terms are ways of specifying the $x,y,z$ directions and are useful for calculations..

The vector product has a magnitude equal to the product of the length of one vector and the component of the other vector:$$|\vec{A}\times\vec{B}|=AB\sin\theta,$$ where $A$ and $B$ are the magnitudes of the vectors and $\theta$ is the angle between them. The direction of the vector product is perpendicular to both vectors. That leaves two possible directions, and the conventional direction is to use a right-handed "screw out" rotation of $\vec{A}$ being pushed toward $\vec{B}$.

Without writing all the details of results, $A_xB_x$ and other like-direction component products contribute nothing. That's because the angle $\theta$ between like components is 0, and sin(0)=0. $A_xB_y - A_yB_x$ is the $z$-component and you form the others as permutations of $x,y,z$: $$x,y\rightarrow z,$$ $$y,z\rightarrow x,$$ $$z,x\rightarrow y$$ and reversing the order of the first two yields a negative sign.

Bill N
  • 15,410
  • 3
  • 38
  • 60
  • Furthermore it is a unique combination of two vectors in 3 dimensions that transforms like a vector under rotation. That is, the magnitude of a vector shouldn't depend on the orientation of the observer, and the cross product is defined such that its magnitude is invariant under a rotation of coordinates. That's another reason why the cross product is so important in physics. The laws of physics shouldn't depend on how the observer is oriented. – mr blick May 09 '15 at 01:57
0

A$\times$B is a vector that is perpendicular to both A and B, and its norm (length) is equal to the area of the parallelogram whose sides are the vectors A and B. You can check that that seemingly random expression satisfies both properties.

Andrea
  • 5,199