Why does the Cross Product have n in its formula? $a \times b = \vert a \vert \vert b \vert \sin(\theta) n$

4.4k Views Asked by At

The formula for the cross product is : $$ a \times b = \vert a \vert \vert b \vert \sin(\theta) n $$ One of the purposes of the cross product is to get a vector value that is at right angles to both the given vectors.

  • If we are finding such a vector (which is perpendicular/at a right angle to both given vectors) then why do we have to use $\text{'}n\text{'}$ as an input of the cross product calculation, where $n$ = a unit vector at right angles to both $a$ and $b$.

  • Can we find a vector that is at right angles to both given vectors without knowing $\text{'}n\text{'}$?

  • and if we have to use $\text{'}n\text{'}$ , how we would calculate the value of $n$ when we only have vector $a$ and vector $b$?
4

There are 4 best solutions below

0
On

Cross product gives you a vector. Thus, since $\|a\|\|b\| \sin( \theta)$ is a scalar, it would not give you a vector. So, to get a vector you need to multiply that scalar by a unit vector $n$ whose length is one and whose direction is determined by the right hand rule.

0
On

That is one way to define it, but the usual way to compute $c = a \times b$ is using coordinates: $$ \eqalign{c_1 &= a_2 b_3 - a_3 b_2\cr c_2 &= a_3 b_1 - a_1 b_3\cr c_3 &= a_1 b_2 - a_2 b_1\cr}$$ So no, you don't need to know $n$ beforehand, you can get it as a result of computing the cross product.

2
On

"One of the purposes of Cross product is to get a vector value that is at the right angle to both the given vectors. If we are finding such vector (which is perpendicular/at the right angle to both given vectors) then why we have to use 'n' as an input of Cross product calculation where n = unit vector at right angles to both a and b."

We don't use n to find the Cross Product. Instead we use the formula Robert Israel gave, which can be written as a "symbolic" determinant: $\left|\begin{array}{ccc}\vec{i} & \vec{j} & \vec{k} \\ a_1 & a_2 & a_3 \\ b_1 & b_2 & b3\end{array}\right|$

"Can we find out a vector that is at the right angle to both given vectors without knowing 'n'?"

Yes, by using Robert Israel's formula. While it is useful to know the definition you give in order to use the cross product, no one actually calculates the cross product that way. They use that formula instead.

"and if we have to use 'n', how we would find its value at the first place when we only have a and b?"

No, we don't "have to use 'n'"!

3
On

Your main arguments against the definition $a\times b := |a||b|\sin(\theta)\hat n$ seem to be (1) that to use this definition, we have to be able to find the right-handed normal vector $\hat n$ first. I don't see that as much of a problem. There are several known methods of finding such a normal vector. And (2) that you seem to believe the cross product is only useful for finding the normal vector. I disagree. A non-exhaustive list of some of the other useful applications of the cross product includes

  • finding the area of the parallelogram with sides as the vectors.
  • describing various physical quantities including torque and the magnetic field.
  • together with the dot product in the form of the scalar triple product, finding the volume of a parallelopiped.
  • describing (/modelling) the Lie algebra $\mathfrak{so}(3)$.

Now here are some arguments for that particular definition of the cross product (BTW, there are other definitions):

  1. It's entirely coordinate-independent. So, when using this definition, not only will not need to worry about having to change our coordinates at some point in the middle of working through a problem, but it makes the notation far more compact than say the formulas in user247327's and Robert Israel's posts.
  2. It's a very geometric definition. It's of the form (scalar) times (unit vector) so we know immediately upon looking at that formula that the length of the cross product is $|a||b|\sin(\theta)$ and the direction that it points in is the right handed normal direction. Again, compare this to the formulas given in user247327's and Robert Israel's posts. It is not at all clear just looking at those definitions what the length or direction of $a\times b$ is.
  3. It suggests a connection with the dot product as defined by $a\cdot b :=|a||b|\cos(\theta)$. For instance, Lagrange's identity becomes very clear: $$(a\cdot b)^2 + |a\times b|^2 = |a|^2|b|^2\cos^2(\theta) + |a|^2|b|^2\sin^2(\theta) = |a|^2|b|^2\big(\cos^2(\theta) + \sin^2(\theta)\big) = |a|^2|b|^2 \\ \bbox[5px,border:2px solid red] {(a\cdot b)^2 + |a\times b|^2 = |a|^2|b|^2}$$

Postscript:

Note that the definition of an object is not always going to be the best way to calculate it in practice. Now that we have this definition, we can show that it implies the formulas in user247327's and Robert Israel's posts under mild assumptions. So if we want to put some numbers to it, there's no reason not to use those formulas instead.

Compare this to the Riemann integral. The definition of the Riemann integral is pretty complicated, right? But luckily we rarely have to use that definition to actually evaluate an integral -- we use the fundamental theorem of calculus.

It's the same thing for the cross product. The definition might be a little more difficult to use, but for the reasons above (and some more complicated reasons I didn't get into) it's a pretty good definition for proving theorems and other things we might need to do with a definition. But it's completely fine to use some other method to actually calculate it.