7

If $a+bi:i^2=-1$ is a complex number, $a+cj:j^2=+1$ is a split-complex number, and $a+d\epsilon:\epsilon^2=0$ is a dual number; what is the term for the combination $a+bi+cj+d\epsilon:i^2=-1,j^2=+1,\epsilon^2=0$?

S-Erase
  • 131

3 Answers3

4

There is no special term as far as I know. You can call them hypercomplex numbers deffiened by certain Clifford algebra $ \mathcal{Cl} (1,1,1)$ .

user48672
  • 1,202
2

You have basically rediscovered the ring of 2x2 matrices, at least if you don't care about commutativity. If you want to think of these in a "hypercomplex" way, they are also called the "split-quaternions". See here: https://en.wikipedia.org/wiki/Split-quaternion

Note that they are using a different basis $i, j, k$; in your terms, we can instead say that $\epsilon = i+k$. There are actually several different nilpotents, but anyway, this algebra has the complex, split-complex, and dual numbers as elements.

This algebra is isomorphic to the ring of 2x2 matrices; see the matrix representation of $i, j, k$ in that article.

On the other hand, this is not a commutative algebra. If you want a commutative algebra which has these as sub-algebras, you could instead look at what Anixx is calling the "dual tessarines" above, which would be an 8-dimensional algebra generated as a quotient of the polynomial ring $\Bbb R[i, j, \epsilon]/(i^2+1, j^2-1, \epsilon^2)$.

1

Dual tessarines. Combination of complex and split-complex numbers is tessarines, and when we add dual unit we usually add "dual" to the algebra's name.

UPDATE

One can implement this in Mathematica using the following code:

$Post=(Normal[Series[#,{ε,0,1}]]/.j->{-1,1})/.{x_,y_}->(x+y)/2+(j(y-x))/2&;

Test:

Log[j + ε]

Output:

(I π)/2 + 1/2 j (-I π + 2 ε)

UPDATE2

The following code also works (and works better):

$Post=((#/.ε->0)+ε(D[#,ε]/.ε->0)/.j->{-1,1})/.{x_,y_}->(x+y)/2+(j(y-x))/2&;
Anixx
  • 10,161