Today, in this blursed mathematics post, we are going to investigate what happens if you do a repeated cross product on a vector with another vector. This process is what I define as cross exponentiation. However, first, we have to describe a way to find a way to cross exponentiate vectors when using the multiplication format (Hereafter, I may refer to cross product as cross multiplication, because it fits with the analogy described below:
- repeated multiplication is exponentiation
- repeated cross multiplication is cross exponentiation
To put it in short, the cross product exhibits a non-associative property, namely the fact that
. Because of the anti-associativity, the LHS is the zero vector (which is trivially boring), but the RHS provides something that we can exploit for later. Because of this, for cross exponentiation, if we expand it, we must perform it from right to left.
To maximize the blursedness this post has, we will use the notation
to represent such an operation.
It can be shown that the recurrence relation from this function is the follows:


With this set, let us work some of the examples:
Note: The cross exponentiation, like the cross product, only is valid for vectors in
, where
is a field whose multiplication is commutative and outputs
. To simplify the examples that follow, we will assume that
is
, though it can be generalized as shown above. The bureaucrat is currently finding a way to generalize the cross product to
where
so he can use it in later blog posts.
Example 1:
Other Exponents?
For this to work on all other exponents, we need to translate our operation into something that tolerates having other exponents. One way is to do it is via matrix exponentiation. To convert our operation to a matrix, we do the operation on the columns of the identity matrix
, namely
,
, and
. We log those into our transformation matrix, which we will call
, and we will have ourselves a way to cross product that tolerates exponentiation! We will use
as an example before moving to a general case.
({(1 4^(-1), -1 2^(-1), 1)x(1, 0, 0), (1 4^(-1), -1 2^(-1), 1)x(0, 1, 0), (1 4^(-1), -1 2^(-1), 1)x(0, 0, 1)})^T
Command: Transpose[Cross[{1/4, -1/2, 1},{1,0,0}],Cross[{1/4, -1/2, 1},{0,1,0}],Cross[{1/4, -1/2, 1},{0,0,1}]]
The properties of the matrix are as follows:
The characteristic equation is
.
The eigenvalues are
.
The eigenvectors are
.
Surprisingly, the matrix can be diagonalized, but not the way one thinks it can be done: We will not list the resulting diagonalization here due to length concerns; that is left to the reader as an exercise.
With the diagonalized matrix, one can easily find the fractional powers. If
, then
.
And yes, if one wonders why all of this is possible, consider this fact:
.
Challenging Problems involving Cross Exponentiation:
There are some limitations to cross exponentiation, namely the following:
What is
?
Per our two definitions
and
. However, due to the fact that we cannot cancel a vector in cross multiplication, we would not be able to conclude that
. Our matrix definition will not help us because we would have a singular matrix. However, mathematically, by convention, any matrix raised to the zeroth power is the identity matrix. Therefore
by convention.
What is
?
If we allow this operation to occur, this will mean we need to find a vector such that this is true:
.
However, by definition, the right vector in the RHS is parallel to the LHS, therefore, it could not be a cross product by definition. Other reasons include the fact that the diagonal matrix in the diagonalization matrices is singular.
What is
?
Does not exist by inductive proof. See the above for the base case.
Future Work:
Since
is valid for
, perhaps the next step is to see if we take this further by defining a vector exponentiation series, such as
. Maybe a multivector generalization would be
. Maybe we would be able to see whether identities like
are true. This might open to a new world of vector algebra, so everything is speculative right now.