5

I asked a question about operations and one comment puzzled me.

Given a binary operation $\ast$ on integers at least $2$, define $\ast'$ by $$m\ast' n = \overbrace{m\ast m\ast \cdots \ast m}^{n\text{ times}}.$$

Example :

  • if $*$ is $+$ , $*'$ is $×$. Multiplications are a lot of additions.

  • if $*$ is $×$ , $*'$ is $^$. Exponential are a lot of additions.

The question is what's $*$ when $*'$ is $+$ ?

Additions are a lot of... what?

Pyrofoux
  • 1,758

1 Answers1

4

You can define operation $*_1 = +$, $$x *_{n+1} y = e^{\log x *_n \log y},$$ and $$x *_{n-1} y = \log\left(e^x *_n e^y\right).$$ Then we have $*_1 = +$, $*_2 = \times$, and $x *_3 y = x^{\log y}$ which isn't quite what you're looking for but is close. We can continue forever in both directions. (Be careful about the domains of these operations.)

In particular, the operation you're interested in, the predecessor of $+$, is $*_0$, defined as: $$x *_0 y = \log\left(e^x + e^y\right).$$ I'm not aware of a name for this operation but you can feel free to explore it.

As an aside, note that all of these operations are commutative. Specifically, $*_3$ is like a commutative version of exponentiation.

  • 1
    Great answer, +1. I did some searching and found that these are called "commutative hyperoperations". – Zubin Mukerjee Jan 06 '15 at 17:38
  • @ZubinMukerjee Very interesting - I knew these operations must have been studied before but didn't know where to begin looking for a reference. – Reinstate Monica Jan 06 '15 at 17:40
  • Is this correct? $$x *_{-1} y=\log\log\left(e^{e^x}+e^{e^y}\right)$$

    In any case, I feel as though there are some ways your $*_3$ makes more sense than exponentiation ...

    – Zubin Mukerjee Jan 06 '15 at 17:48
  • That equation looks right to me. $_3$ is in a sense more natural than exponentiation, although exponentiation has an extremely rich set of properties. I wonder what properties $_3$ has - perhaps there is an opportunity for a good question for this site about it. – Reinstate Monica Jan 06 '15 at 17:54
  • @Solomonoff'sSecret If you want to do it, do it ! It's your idea. Thank you for this very interesting answer, it gives me more hint about the possible answers. – Pyrofoux Jan 09 '15 at 16:03
  • @Pyrofoux Considering that there are no other answers to your question, if you like my answer, would you consider accepting it? – Reinstate Monica Jan 11 '15 at 14:41