How to multiply octonions

This post will present a way of multiplying octonions that’s easy to remember.

Please note that there are varying conventions for how to define multiplication for octonions [1].

Octonions

The complex numbers have one imaginary unit i, and the quaternions have three: i, j, and k. The octonions have seven, and so it makes sense to switch over to subscripts rather than venturing further out into the alphabet. Besides, numerical indices will be useful for reasons we’ll see shortly.

Let e0 = 1 and let e1 through e7 be the imaginary units for octonions. Then the e‘s form a basis for ℝ8. The octonions are ℝ8 with a product that distributes over addition, but the product is not commutative or associative.

Multiplication is determined by how the basis elements multiply, and there are multiple ways of presenting these multiplication rules, the simplest being to write down a multiplication table. Here I’ll present the way I find easiest to remember [2].

Multiplication rules

The squares of each of the imaginary units e1 through e7 are equal to -1, as you’d expect based on experience with complex numbers and quaternions. You can derive the rest of the multiplication facts from

e1 e2 = e4

and two simple rules.

The first rule is that the equation above holds when you shift the indices mod 7.

e1 e2 = e4
e2 e3 = e5
e3 e4 = e6
e4 e5 = e7
e5 e6 = e1
e6 e7 = e2
e7 e1 = e3

The second rule is that each of the triplets of units above behave analogous to i, j, and k in quaternions. That is, when you take a triple like (e2, e3, e5), rotations don’t flip the sign but swapping adjacent elements does. That is,

e2 e3 = e5
e5 e2 = e3
e3 e5 = e2

and

e3 e2 = –e5
e2 e5 = –e3
e5 e3 = –e2

So we have seven rotations of the equation

e1 e2 = e4

and six permutations of each rotation, for a total of 42 rules. We already had 7 rules, saying each unit squares to -1, so we have the 49 rules we need to multiply all the non-real units by each other.

More octonion posts

[1] There are multiple conventions for defining octonion multiplication. For example, according to a common definition,

e1 e2 = e3

but according to our definition

e1 e2 = e4

In fact, there are 480 ways to define the multiplication rules for e1 through e7. However, all the ways of defining octonion multiplication are isomorphic. You can translate results from one convention to another by renumbering the basis elements. For example, you can convert from the first convention above to our convention by relabeling

(e1, e2, e3, e4, e5, e6, e7)

as

(e1, e2, e4, – e7, e3, e6, e5).

I picked the convention used here because it makes the multiplication rules easy to remember: the mod 7 rule doesn’t hold for some other ways of defining multiplication.

[2] There’s a neat way of representing octonion multiplication rules in terms of a Fano plane diagram, but to use it you have to remember how to label the diagram. The presentation in this post is easier to remember, in my opinion. You might remember the rules given here, then use them to fill in a Fano diagram.

3 thoughts on “How to multiply octonions

  1. Thanks for the suggestion.

    I wrote a little about Cayley-Dickson a while back, but I don’t intend to write any more along these lines for now. On to something else, though I don’t know yet what that will be.

  2. My favorite way of representing octonion multiplication is by XOR’ing the indices. The Cayley-Dickson construction is then accomplished just by successively adding another high-order bit.

Comments are closed.