4

How to solve equation $x^4=1$ in quaternions? I know how to solve that equation in complex numbers but I have no idea how to do it in quaternions. I have also a question about general way to solve equations in quaternions. And is there similar theorem to fundamental algebra theorem which connects degree of polynomial equation with number of quaternion roots of that equation?

EDIT: My task was to find roots $x^2+1=0$ EDIT2: How to prove that $x^2+1=0$ has infinite number of roots?
I represented x as $a+bi+cj+dk$ and get equations: $a^2−b^2−c^2−d^2=−1$ and $ab+cd=0$, $ac−bd=0$, $ad+cb=0$. Is it worth to solve that or is there a smarter way?

kryj
  • 51
  • I should think you'd start by expanding $(a+bi+cj+dk)^4$. Have you tried that? – saulspatz Jun 23 '21 at 21:53
  • 2
    Over the quaternions, the quadratic $x^2 + 1$ has infinitely many roots (any number $ai + bj + ck$ where $a^2 + b^2 + c^2 = 1$ is a root). – Rob Arthan Jun 23 '21 at 22:05
  • ... and $x^2 -1$ has exactly two roots, just as in $\Bbb{C}$. You can prove this and the statement in my previous comment by following the idea of @saulspatz's comment. Given that $x^4 - 1 = (x^2 - 1)(x^2 +1)$ and the fact that $\Bbb{H}$ has no zero divisors other than $0$, you can deduce the answer to your first question. – Rob Arthan Jun 23 '21 at 22:25
  • Thanks for answering to my questions. – kryj Jun 23 '21 at 22:41
  • Closely related. Not voting as a duplicate because I answered that one, and the fourth roots are only discussed in the comments anyway. +1 to all. – Jyrki Lahtonen Jun 24 '21 at 18:25

3 Answers3

3

Let me consolidate my two comments into an answer that may be a bit clearer to the OP.

You want to find all the roots of the polynomial $x^4 - 1$ in the quaternions $\Bbb{H}$. Note that $x^4 - 1 = (x^2 - 1)(x^2 + 1)$, just as in $\Bbb{R}$ or $\Bbb{C}$ and note that $\Bbb{H}$ has no non-trivial zero divisors: if $X, Y \in \Bbb{H}$, then $XY = 0$ implies $X = 0$ or $Y = 0$. So $X^4 -1 = 0$ iff either $X^2 - 1 = 0$ or $X^2 + 1 = 0$.

For a general element $X = a + bi + cj+ dk$ of $\Bbb{H}$, where $a, b, c, d \in \Bbb{R}$, we have the identity: $$ X^2 = (a + bi + cj+ dk)^2 = a^2 - b^2 - c^2 - d^2 + 2a(bi + cj + dk) $$ which you can verify by multiplying out using the formulas $ij = k$, $jk = i$, $ji = -k$ etc.

Thus, comparing cooefficients, $X^ 2 - 1 = 0$ iff: $$ a^2 - b^2 - c^2 - d^2 = 1 \\ ab = ac = ad = 0 $$ From the first of those equations, we must have $a \neq 0$, but then from the other equations we must have $b = c = d = 0$, implying that $a^2= 1$. So the only solutions to $x^2 - 1 = 0$ are the quaternions $X = \pm 1$.

Likewise, if $X^2 + 1 = 0$, we must have: $$ a^2 - b^2 - c^2 - d^2 = -1 \\ ab = ac = ad = 0 $$ And then the first equation tells us that at least one of $b$, $c$ or $d$ is non-zero, from which one of the the other equations will tell us that $a = 0$. So the solutions of $x^2 + 1 = 0$, are the quaternions $X = bi + cj + dk$ where $b^2 + c^2 + d^2 = 1$.

Putting that all together gives us all the solutions of $x^4 + 1 = 0$: they are the quaternions $X$ such that $X = \pm 1$ or $X = bi + cj + dk$ where $b^2 + c^2 + d^2 = 1$.

Rob Arthan
  • 48,577
1

Since all the coefficients are real, the roots will have the form $a+bu$ where $u$ is any pure imaginary/vector quaternion whose squared components sum to unity, and $a,b$ are the values for which $a+bi$ is a root in $\mathbb{C}$. Note that real roots with $b=0$ remain discrete.

Thus for instance if $(1+i)/\sqrt2$ is a root in $\mathbb{C}$, they you have quaternion roots of the form $(1+u)/\sqrt2$.

Oscar Lanzi
  • 39,403
1

There is a continuum of ways to imbed the (algebraically closed) field $\mathbb C$ into the Hamiltonian quaternions. Namely, letting $j(a+bi)=a+bi+0j+0k$ be the "obvious" imbedding, for every non-zero quaternion $\beta$, $\beta\cdot j(a+bi)\cdot \beta ^{-1}$ is another imbedding of a copy of $\mathbb C$.

paul garrett
  • 52,465