TL;DR: Vector dot products are not like products of real numbers, for which there is an inverse operation to “undo” multiplication. I don’t think we should introduce dot products as a form of “multiplication” in introductory physics courses because it may reinforce the urge to “divide by a vector.” A better approach may be to formally present ways of unwrapping dot products consistent with Gibbsian vector algebra. But first, a geometric understanding is necessary.
By the time students take introductory physics, they have hopefully mastered the arithmetic of real numbers. They can add, subtract, multiply, and divide them and solve equations in terms of real numbers. Let’s consider multiplication. Students know that when they perform any of these operations with real numbers, two real numbers are needed as operands. Symbolic letters, variables, are frequently used to represent these operands. Solving simple equations with real numbers and variables that represent them involves performing operations that “undo” the operations in the original equation with the intent of isolating the “unknown” variable and equating it to some arithmetic combination of real numbers to solve the equation. Students also ostensibly know that addition and subtraction “undo” each other while multiplication and division also “undo” each other. Lastly, students know that combining any two real numbers with any of these four operations gives a real number in return. That was a mouthful, but students can do it with little difficulty in most cases.
Now, in introductory physics courses we introduce vectors with the sloppy enough definition of “something with magnitude and direction” which of course isn’t quite true (or true enough for my tastes). Then, we blithely state that there are two ways to “multiply vectors.” One way gives a vector, which seems in line with multiplying real numbers because multiplying two real numbers gives a real number. The other way of multiplying vectors gives a real number, which is not at all like multiplying real numbers. I don’t know that students reflect on this deeply, and indeed I don’t know that most instructors do either. I think it’s important to do so, though, because it’s the first sign that something is either amiss, or at least different, about vector arithmetic and vector algebra. We then perhaps, but not always in my experience, state that “vector division isn’t defined” without, again in my experience, giving any explanation for why this must be the case. Note that I said “must be the case” rather than “is the case.” Before moving on, I can think of a third way of multiplying vectors that gives neither a vector nor a real number; it gives a second rank tensor. I will save this for another post in this series.
So what is a dot product? It is an operation that takes two vectors and produces a real number. There are many ways this operation can be defined, so we have to get more specific and that involves introducing geometry.
Consider two vectors and
with the former being the unknown, their dot product, and the resulting real number.
For most of this post, I will assume . We want to find all vectors
that satisfy this equation. The problem is that there are infinitely many of them.
While and
are fixed, different combinations of
and
give values that equal
. Let’s look at some geometric implications.
If we pick a value of then there are vectors
with a magnitude, indeed THE magnitude,
that satisfies the equation. These vectors can be arranged to form a cone. Picking a different value of
produces a different cone.
If we pick a value of then there are infinitely many vectors making an angle consistent with
having a value
.
By inspection, we can see that
must be a solution, where is a real number. Note that this is merely a multiple of
.
But this is not the most general solution, because we could also add an arbitrary vector that is perpendicular to since this would not affect the original equation. Getting an arbitrary vector perpendicular to
is as simple as forming the cross product
where
is an arbitrary vector. In fact, we could have an arbitrary multiple of this cross product,
, where
is a real number. Accounting for a potential perpendicular component seems directly analogous to adding a constant of integration to an indefinite integral, something which introductory physics students seem content to accept.
Therefore the most general solution is
An obvious issue here is the presence of two real numbers and a cross product. We can solve for by plugging this solution into the original equation and doing one line of algebra. The same process shows that
is irrelevant; that conclusion relies on a triple scalar product (aka a mixed product, the term I prefer). For now, the cross product’s presence is part of what may be considered, in a very broad sense, unwrapping a dot product. In other words, its presence is a consequence of “dividing” a dot product by a vector.
Here is a GlowScript program written with Trinket that illustrates the geometry, and visualization thereof, involved in unwrapping a dot product. Embedding with Trinket lets users modify the code, run it to see the result of the modification, and then restore the original code. Experiment with it yourself.
Up to now, I have assumed that but let’s consider the case for letting
. A negative dot product means that the two operands have antiparallel components instead of parallel components. Geometrically, these vectors will also form a cone, sharing its axis and vertex with the cone described above. The cones form a double cone. See if you can modify the GlowScript program above to visualize this double cone.
In a forthcoming post, I will revisit unwrapping dot products from a formal algebraic perspective.
As always, feedback is welcome.