Quaternions are commonly used to model 4 dimensional systems where the quaternion consists of a real 3 dimensional vector and an imaginary scalar. So on the surface Quaternions seem well suited to model space time if time can be considered imaginary. Do the operations of quaternion math further provide a suitable framework, or are there problems?

- 201,751

- 11,663
- 2
- 32
- 69
-
2More on quaternions in SR, e.g. https://physics.stackexchange.com/q/7292/2451 – Qmechanic Mar 11 '15 at 19:22
-
2Related (to the $t\to it$ aspect): http://physics.stackexchange.com/q/121380, http://physics.stackexchange.com/q/123156 and http://physics.stackexchange.com/q/46798 – Kyle Kanos Mar 11 '15 at 19:25
-
3Usually, you think of quaternions as a real scalar and three imaginary components... – Mike Mar 11 '15 at 19:34
-
Great question, every now and then I wondered about this but usually when in a train without SE-accesss... – Tobias Kienzler Mar 12 '15 at 09:13
-
1The I,J,K of the quaternions can be represented by the pauli matrices (after multiplication by i), while the scalar part by the 2x2 identity matrix. from there one could conceivably take them further. Check out Penrose Spinors and spacetime volumes I and II – R. Rankin Sep 06 '17 at 04:33
-
This seems tangentially relevant: according to this question on mathoverflow, the quaternions were the original reason for using i, j, k notation for 3-space vectors. – fyodrpetrovich Nov 11 '17 at 06:35
3 Answers
There are some problems with using quaternions to describe spacetime. Quaternions have two important properties: (1) they form a four-dimensional vector space; (2) you can multiply quaternions together.[1] The first property is obviously very suggestive, but it's no different from the usual four-vectors that we already use in special relativity. To specifically make use of quaternions, we'd also have to use the second property. Recall that -- at least in ordinary discussions of special relativity -- you'll never multiply four-vectors together and get another four-vector; you only "contract" them (take their dot product). And the standard quaternion multiplication doesn't actually achieve this dot product. The scalar term in the result is something like the usual spacetime interval, but then there are those extra vector components. You can get a pure scalar multiplying a quaternion by itself, but only by conjugating one copy, which gives you a positive-definite result rather than the interval. So it's not quite useful for special relativity. And as far as vectors go, the usual approach is good enough.
Even though they have four degrees of freedom, quaternions really do "live in" a physical space of three dimensions. It turns out that quaternions shouldn't be thought of as a scalar plus a vector. Instead, they should be thought of as a scalar plus a bivector.[2] More specifically, quaternions are actually the natural "spinors" of three-dimensional space. So instead of being like vectors, they act on vectors. For example, probably the most common use for quaternions is to describe rotations of vectors. This bears repeating: Quaternions shouldn't be thought of as vectors in 4-d; they should be thought of as operators acting on vectors in 3-d.
So to answer your question, yes you could use quaternions to model spacetime -- though there'd be a lot of useless baggage floating around. But extrapolating the motivation for your question, I might rephrase it as "Can we use the special properties of quaternions to get any computational advantage or philosophical insight in relativity?" To that, the answer is no; they don't have anything useful to say about spacetime since they're really just about space.
But there's good news! There is a natural generalization of quaternions to four-dimensional spacetime, and it really does give us computational advantages and philosophical insights. The cool thing about thinking of quaternions as scalar + bivector is that the idea now generalizes very easily to arbitrary dimensions -- and in particular to Minkowski spacetime. This is a field of study called "Geometric algebra", or GA for short.[3]
Spinors in 4 dimensions[4] turn out to act a lot like spinors in 3 dimensions (quaternions). For example, they can be used to rotate 4-dimensional vectors really nicely. But they can also boost 4-d vectors just as easily -- a boost is sort of a generalized rotation. It turns out that a lot of the usual things we do in special relativity are way easier using spinors.
And you can keep going to other dimensions. For example, going back to just two dimensions, you find that complex numbers are the spinors of 2-d! You even start to understand complex algebra better using GA. In fact, I've taught GA to biologists by starting in 2 dimensions. Once you understand this simple example, it's almost trivial to extend GA to arbitrary dimensions.[5]
If you want to learn more, there's a fantastic book on this called Geometric Algebra for Physicists. It's actually my favorite physics book, full stop. There are lots of good online references too, if you google around for it. And I have to plug the Geometric Algebra module for sympy, which gives us a nice (open-source) program for doing the math symbolically.
Footnotes:
Taken together, these two facts mean that quaternions form "an algebra". The idea may seem kind of weird -- that you can actually multiply two vectors by each other. You already know how to multiply a vector by a scalar. And you can take the dot and cross products, but neither of those is invertible. But really just multiplying two vectors in a (usually) invertible way might seem weird. And then you realize that you do it all the time with complex numbers, which also form "an algebra". Not to mention matrices.
It just so happens that in three dimensions, there are three degrees of freedom in a bivector, and three degrees of freedom in a vector. So when Hamilton discovered quaternions, he was understandably confused about what they represented. His confusion was the whole reason for the vector/quaternion wars of the 1890s. Nowadays, we understand that quaternions and vectors are just two aspects of the same thing: GA. I would argue that this confusion is one of the great tragedies in the history of physics, as Grassmann and Clifford had already developed all the tools necessary to resolve the conflict.
We could discuss the name of this thing till the cows come home. But in practice, "Geometric Algebra" is a sub-type of Clifford Algebra, except we assume that in GA the coefficients for our vector space are real numbers, whereas CA can have coefficients from any field -- especially complex numbers. But CA is usually introduced with irrelevant abstractions, and the complex version is almost never necessary for applications in physics (even quantum mechanics!).
Spinors in 4-d are sometimes called biquaternions, which are "complexified" quaternions, but that's a very bad path to go down. The complexification is unenlightening, and doesn't really apply to other dimensions. I think it's symptomatic of a tendency to use obscure, accidental features specific to a particular dimension -- as opposed to the intuitive, pedagogical, systematic, and universal approach of GA.
The path that spinors and normed division algebras (NDAs) took together splits at dimension four, as the latter head into a dead end (there are no more NDAs after octonions). The spinors in four dimensions do have eight degrees of freedom, like the octonions, but that's just the vector-space property. The other property of algebras, multiplication, can't be the same because octonions are not associative -- but associativity is one of the defining features of GA. So the octonions aren't a particular example of GA. However, it's also worth pointing out that there are other spinor groups even for dimensions ≤3 when you have a non-positive signature. For example, the split-complex numbers are the spinors of a two-dimensional version of Minkowski space.
Of course, there's very little need for octonions in physics. John Baez has a typically great introduction to an article about octonions in physics that you can read here, in which he shows that there are applications in supersymmetry / string theory (and pure math, obviously). But that's the most convincing argument I've seen that octonions might ever have any relevant applications in physics -- and I'm certainly not convinced.
-
Awesome answer! Do Octonions fit in here for some higher dimension, too? – Tobias Kienzler Mar 12 '15 at 09:15
-
Good question. Short answer: no. I was gonna write a longer answer reply here, but it's too long, so I'll just add a footnote above. :) – Mike Mar 12 '15 at 13:27
-
2Thanks for the follow up - hey, so long as you don't write "I was gonna write a longer answer reply here, but there is not enough space in this margin"... :D – Tobias Kienzler Mar 12 '15 at 14:23
-
Yes, Octonions fit in, too. The real spin representations in various spacetime dimensions are all controled by the four division algebras, the real numbers, complex numbers, quternions and octonions. Details are here: https://ncatlab.org/nlab/show/spin+representation#ExpressionInTermsOfNormedDivisionAlgebras – Urs Schreiber Aug 24 '16 at 19:15
-
@Urs Well I still wouldn't say they fit in here. I noted Baez's post, in which he mentions possible applications of octonions in physics. But the fact that one highly speculative corner of physics can use them does not make them relevant. Geometric algebra is able to provide a spinor space for any number of dimensions and any signature, with no need for octonions. – Mike Aug 24 '16 at 19:35
-
The role of the division algebras in expressing real spin representations is not a speculation, but a mathematical theorem. – Urs Schreiber Aug 24 '16 at 20:55
-
I agree that it is mathematically correct. It is the relevance to physics that I'm saying is speculative. Am I missing something? – Mike Aug 24 '16 at 21:04
The answer above is much more detailed (and better by far) than mine, but I would recommend Penrose's "Road To Reality", pages 200 onwards, specifically the statement that "The quaternionically natural" quadratic form (...) has the incorrect signature for relatively theory. Special relativity depends on a signature of say - + + + (allowing us to express time in space terms as -ict) but, as I understand it, with quaternions you have a signature of + + + +, which does not conform to the metric used in 4 - D space-time.
-
1appreciated very much , but you might regret it, i have moree questions on Penrose's books that String Theory has C-Yau variations. One in particular.... only kidding but please do watch out for them, hacking my way through RTReality veeeeeeery slowly. regards – Mar 12 '15 at 03:02
-
@Mike Then you should have a Greasemonkey-script to auto-upvote any answer mentioning him :P – Tobias Kienzler Mar 12 '15 at 09:16
-
Well, to be honest, I do sometimes disagree with Penrose's approaches to certain issues. (E.g., I am dumbfounded that he doesn't use GA.) But Road To Reality is a great book. – Mike Mar 12 '15 at 13:59
-
1RTR is very comprehensive for newbie like myself, but IMHO, his tensor graphic notation is more difficult than the standard index formulation. easier for him due to his geometric talent maybe. also, for me, his writing on bundles needs a reading of an alternative source. But i,m happy not to go have through last part of E New Mind again. bit handwavy I thought. RTR much more helpful to beginners. – Mar 12 '15 at 14:25
-
Unsolicited advice: If you're looking for a more formal next step, Frankel's "Geometry of Physics" is excellent. [Or "Geometric Algebra for Physicists", obviously. :) Though this is a little more specialized.] – Mike Mar 12 '15 at 17:40
-
@mike thanks very much for interest Mike. At my self study very patchy knowledge level, Plan A is to stick with higher end popsci (which are sometimes better for leaving things unexplained- makes you think) and practice (and practice again) problems using Squires Q.M. Problems QFT For Dummies ( crammed with typos, but has some really good practice problems) and Srednicki (again very good and doable, just) Bought A. Zee's QFT Nutshell, which will be a great doorstop until I get past the next years (or 3 ) study. – Mar 12 '15 at 18:24
-
1Actually, this website is great for confirming (or not) assumptions, it should be called "How I Learned To Stop Worrying About Physical Pictures and Love The Maths". Have all the G.R standards. As you know, they are mostly straightforward compared to QFT. More and more tending towards particle physics as subject of choice. Its a slog but then you kept getting little hints and "AHA" moments that it IS understandable and worthwhile. If Plan A fails, Plan B is to take up knitting..... regards and thanks again – Mar 12 '15 at 18:24
Quaternions indeed intrinsically model spacetime.
Quaternions derive from the 4-squares identity, discovered by Leonhard Euler, i.e. that the product of two sums of each four squares is always again a sum of four squares: ($X_0^2$ + $X_1^2$ + $X_2^2$ + $X_3^2$)($Y_0^2$ + $Y_1^2$ + $Y_2^2$ + $Y_3^2$) = ($Z_0^2$ + $Z_1^2$ + $Z_2^2$ + $Z_3^2$). ($Z_0$,$Z_1$,$Z_2$,$Z_3$) can be algebraically expressed in terms of ($X_0$,$X_1$,$X_2$,$X_3$) and ($Y_0$,$Y_1$,$Y_2$,$Y_3$). By substituting $x_0$ = $X_0$; $x_1$ = $\hat iX_1$; $x_2$ = $\hat jX_2$; $x_3$ = $\hat kX_3$, and doing similarly for $y_0$, $y_1$, $y_2$, $y_3$; as well as for $z_0$, $z_1$, $z_2$, $z_3$;wherein $$\hat i^2 = \hat j^2 =\hat k^2 =\hat i\hat j\hat k = -1$$ we can construct a "tight" space wherein a complete vector product exists, i.e. wherein the length of the product of two vectors equals the product of the lengths of the vectors. This space has a metric signature ($+1,-1,-1,-1$), which is the signature of spacetime (in "west coast notation"). Quaternion space is a non-Euclidean, hyperbolic space, wherein a maximum speed of propagation exists (given by the asymptotes to the confining hyperbola). Poisson's equation, which describes the transport of matter in a conservative system, becomes a wave equation in quaternion space, because of its negative metric signature ($+1,-1,-1,-1$). In its most general form, this wave equation corresponds to the fundamental equation of electrodynamics, i.e. to Maxwell's equations in their compact, 4-dimensional form. Maxwell's equations - to constant factors close - describe the geometric laws of quaternion space. As the transport of matter in a space with negative metric ($+1,-1,-1,-1$) is always bound to a wave equation, we also have here the foundations of quantum mechanics.
I have recently published a small paper on this in the "Bulletin de la Société Fribourgeoise des Sciences Naturelles", Vol 103 (2014), p. 83-90. The paper is entitled "De la réalité des nombres" and is in French; it is a little bit more explicit than what I have stated here in a nutshell.

- 4,923
- 3
- 23
- 49
-
Sorry, not following your argument in a nutshell. Is there an English translation of your paper? – docscience Sep 23 '15 at 17:00
-
There is no English translation yet, except the summary. I could make one and post it at an appropriate site, if there is interest; appropriate site suggestions are welcome! – Edgar Mueller Sep 25 '15 at 09:39
-
By the way, the algebraic expressions for the "Z" in the 4-squares identity above are bilinear forms as follows: Z0 = X0Y0 - X1Y1 - X2Y2 - X3Y3; Z1 = X0Y1 + X1Y0 + X2Y3 - X3Y2; Z2 = X0Y2 + X2Y0 - X1Y3 + X3Y1; Z3 = X0Y3 + X3Y0 + X1Y2 - X2Y1. – Edgar Mueller Sep 25 '15 at 09:49
-
After transformation to quaternions they become: z0 = x0y0 + x1y1 + x2y2 + x3y3; z1 = x0y1 + x1y0 + x2y3 - x3y2; z2 = x0y2 + x2y0 - x1y3 + x3y1; z3 = x0y3 + x3y0 + x1y2 -x2y1. – Edgar Mueller Sep 25 '15 at 09:56
-
The differential operator of Poisson's equation in quaternion space, "delta" = (d/dx0, id/dx1, jd/dx2, kd/dx3)^2 = (d^2/dx0^2, -d^2/dx1^2, -d^2/dx2^2, -d^2/dx3^2), is a wave function operator. – Edgar Mueller Sep 25 '15 at 10:22
-
I apologize for an error in my last statement. The "delta" operator in quaternion space is, of course, (d^2/dx0^2 - d^2/dx1^2 - d^2/dx2^2 - d^2/dx3^2), i.e. without comas. It is the inner product (dot product) with itself of the quaternionic "nabla" operator, (d/dx0, d/dix1, d/djx2, d/dkx3) = (d/dx0, -id/dx1, -jd/dx2, -kd/dx3). – Edgar Mueller Sep 28 '15 at 09:26