Is There an Alternative Addition for Complex Numbers or Quaternions?

  • Thread starter Thread starter Gerenuk
  • Start date Start date
  • Tags Tags
    Numbers
Gerenuk
Messages
1,027
Reaction score
5
For complex numbers or quaternions, is there another two variable function, that behaves like addition? I mean a function f with
<br /> af(b,c)=f(ab,ac)<br />
<br /> f(a,b)=f(b,a)<br />
<br /> f(a,f(b,c))=f(f(a,b),c)<br />

And which conditions have to be imposed to make this function uniquely f(a,b)=a+b?
 
Physics news on Phys.org
You mean like 2x2 matrices?
 
Not sure what you ask.
a, b and c are complex numbers (first case) or quaternions (second case).
So in fact these variables are either *special* 2x2 matrices or 4x4 matrices. But I don't see how this matters.
 
If you represent them matrices, addition and multiplication is also defined by matrix algebra.
 
I'm not sure what you mean. I need an answer for the function f. So f(a,b)=?
apart from normal addition.
 
Let f:\mathbb{C}\times\mathbb{C}\to \mathbb{R}^{2\times 2},\ \ z=a+ib, w=c +id,

f(z,w) = \begin{pmatrix}a &amp;-b\\ b &amp;a \end{pmatrix}+<br /> \begin{pmatrix}c &amp;-d\\ d &amp;c \end{pmatrix} = <br /> \begin{pmatrix}a+c &amp;-(b+d)\\ (b+d) &amp;a+c \end{pmatrix} \Longrightarrow z+w = (a+c) +i(b+d)<br />

Similarly, for multiplication

g(z,w) = \begin{pmatrix}a &amp;-b\\ b &amp;a \end{pmatrix}<br /> \begin{pmatrix}c &amp;-d\\ d &amp;c \end{pmatrix} = <br /> \begin{pmatrix}ac-bd &amp;-ad-bc\\ ad+bc &amp;ac-bd \end{pmatrix} \Longrightarrow z\cdot w = (ac-bd) +i(ad+bc)<br />

I think I made my point and I am running out of arguments. Can you also be specific about what you are asking for?
 
I really don't understand what you read in my question. Feel free to let me know where I missed out a point.

I try to repeat it more precisely: Find _all_ functions
f:\mathbb{C}\times\mathbb{C}\to \mathbb{C}
which for all complex numbers a, b, c satisfy
<br /> af(b,c)=f(ab,ac)<br />
<br /> f(a,b)=f(b,a)<br />
<br /> f(a,f(b,c))=f(f(a,b),c)<br />
This function should not be trivial addition.
<br /> f(a,b)\neq a+b<br />
 
Gerenuk said:
For complex numbers or quaternions, is there another two variable function, that behaves like addition?

I guess another means you look for something else than plain addition. And in the last post you ask all the functions. Are you trying to ask something about the underlying algebra? The set you are looking for is the set of all linear, commutative and associative functions.

Or you want to find an isomorphism for complex numbers other than 2x2 matrices?
 
trambolin said:
The set you are looking for is the set of all linear, commutative and associative functions.

I think that's what I am looking for. Can you give one example?

And second question: Which additional contraints do I have to add, so the there will be no solution to f apart from the trivial addition example.
 
  • #10
You don't want linear functions, but rather homogeneous functions of degree 1. Specifically, symmetric, associative, first-order homogeneous functions. Here's one example:

f(a,b) = \sqrt{a^2 + b^2}

and here's another

f(a,b) = \frac{ab}{a + b}

These work for a, b real; haven't tried for complex, but I would assume that either they work or they can easily be modified to work. The first is the cartesian distance function. The second is an operation known in electrical engineering as "parallel", often written

a \; || \; b

which is used to find the equivalent resistance of several resistors in parallel.

You can probably come up with more examples. As for what property would restrict f(a,b) to be simply addition, I'm not sure.
 
  • #11
Thanks! I thought about the examples more. The question now is if there are any solutions which are not related by
<br /> h(f(a,b))=h(a)+h(b)<br />
for a special function h(x). In particular
<br /> h(x)=x^n<br />
seems to work, but this structure is isomorphic to the normal multiplication and addition.
 
Back
Top