Generalized recursive operators
#1
If the operators +, *, ^, ^^, can be considered consecutive values of a sequence (with + as 1, I guess), is it possible to construct a generalized recursive function where R(1) is +, R(2) is *, and so on? In this case, can you find R(x) where x is fractional or real? I.e., is there an operator in between + and *?

[I am assuming that R(x) can be defined for positive integer x as follows: (where a and b are integers)
1. a R(x+1) (b+1) = a R(x) (a R(x+1) b)
2. a R(x+1) 1 = a
]

Additionally, has anyone considered investigating the properties as x->inf of R(x)? I would imagine that 2 R(inf) 2 is still 4 as well as x R(inf) 1 = x.
Reply
#2
Whiteknox Wrote:If the operators +, *, ^, ^^, can be considered consecutive values of a sequence (with + as 1, I guess), is it possible to construct a generalized recursive function where R(1) is +, R(2) is *, and so on? In this case, can you find R(x) where x is fractional or real? I.e., is there an operator in between + and *?
Thats an interesting question.

Quote:[I am assuming that R(x) can be defined for positive integer x as follows: (where a and b are integers)
1. a R(x+1) (b+1) = a R(x) (a R(x+1) b)
2. a R(x+1) 1 = a
]

Here is however a difficulty: a R(x) 1 != a for x=1. So if we want f(x):= a R(x) 1 being a continuous function then f(1)=a+1, f(2)=a, f(3)=a, f(n)=a for \( n\ge 2 \). Which is somehow strange to have it first a decreasing function afterwards being constant.

Quote:Additionally, has anyone considered investigating the properties as x->inf of R(x)? I would imagine that 2 R(inf) 2 is still 4 as well as x R(inf) 1 = x.

Yeah, you can show that 2 R(n) 2 = 4 by induction. So the limit should be the same.

And a warm welcome to the forum (though I am nearly absent and just found some time to read and write).
Reply
#3
I carefully sidestepped the problem by using a R(x+1) 1 = a instead of a R(x) 1 in my definition. Since only positive integer values for this are straightforwards to define, the smallest x is 1 and the smallest (x + 1) is 2. This does become problematic for generalization to fractional x.
Reply
#4
If I remember correctly, Daniel Geisler had a discussion about that. In fact he showed that
\( b{\uparrow}^{\infty}\infty = b \)
which can be found in his powerpoint presentation about it at
http://tetration.org/Resources/Files/Ackermann.ppt

Andrew Robbins
Reply
#5
I wonder if hyper-operations after multiplication can be approximated by:
\( a R(n) b \approx a^b \) for \( 0\le b \le 1 \) and \( n \ge 3 \)

If so, then maybe this could be used to extend the right hyper-operations to at least a function defined over all real N, but I don't think its continuous.

Here is some Mathematica code that I used to investigate this idea:

Code:
Hy[1] := Plus;
Hy[2] := Times;
Hy[3] := Power;
Hy[n_][x_, 0] /; (n > 3) := 1;
Hy[n_][x_, 1] /; (n > 2) := x;
Hy[n_][x_, y_] /; (1 < n < 3) :=
  Simplify[Evaluate[InterpolatingPolynomial[{
  {1, x + y},
  {2, x*y},
  {3, x^y}}, n]]];
Hy[n_][x_, y_] /; (n > 3) := Piecewise[{
  {HyLog[n-1][x, Hy[n][x, y + 1]],  y < 0},
  {x^y,                        0 <= y <= 1},
  {Hy[n-1][x, Hy[n][x, y - 1]],     y > 1}
  }];
  
HyLog[1] := Subtract;
HyLog[2] := Divide;
HyLog[3] := Log;
HyLog[n_][x_, 1] /; (n > 3) := 0;
HyLog[n_][x_, x_] /; (n > 2) := 1;
HyLog[n_][x_, z_] /; (1 < n < 3) :=
  Simplify[Evaluate[InterpolatingPolynomial[{
  {1, z - x},
  {2, z/x},
  {3, Log[x, z]}}, n]]];
HyLog[n_][x_, z_] /; (n > 3) := Piecewise[{
  {HyLog[n][x, Hy[n-1][x, z]] - 1,    z < 1},
  {Log[x, z],                    1 <= z <= x},
  {HyLog[n][x, HyLog[n-1][x, z]] + 1, z > x}
  }];

It makes some pretty amazing graphs, but I'll have to do some more investigating before I can come up with any conclusions.

For those of you who are confused by Mathematica code, a little primer: "_" means "any", i.e. a variable, "/;" means "where", and in order to use the function you would write "Hy[3.5][E, Pi]" for example would calculate \( e {\uparrow}^{1.5} \pi \) in Knuth notation. I have no idea what this would be, but this function gives somewhere around 256 thousand.

Andrew Robbins

   
Reply
#6
Wow! I can't believe I gave that away for free! I would pay hundreds to get my hands on this code! Good thing I didn't have to... I just found the asymptotes of pentation, hexation, heptation, octation, and beyond! And they're fascinating:
\(
\begin{align}
\lim_{b \rightarrow -2}(a \begin{tabular}{|c|}\hline 4 \\\hline\end{tabular} b) & = -\infty \\
\lim_{b \rightarrow -\infty}(a \begin{tabular}{|c|}\hline 5 \\\hline\end{tabular} b) & = -2 \\
\lim_{b \rightarrow -4}(a \begin{tabular}{|c|}\hline 6 \\\hline\end{tabular} b) & = -\infty \\
\lim_{b \rightarrow -\infty}(a \begin{tabular}{|c|}\hline 7 \\\hline\end{tabular} b) & = -4 \\
\lim_{b \rightarrow -6}(a \begin{tabular}{|c|}\hline 8 \\\hline\end{tabular} b) & = -\infty \\
\lim_{b \rightarrow -\infty}(a \begin{tabular}{|c|}\hline 9 \\\hline\end{tabular} b) & = -6
\end{blign}
\)
where the box is GFR's box notation for hyperops, and a is sufficiently close to e, because thats the number I used.

I suppose you could see this from the integer versions of these operators, but I think the continuous (or if not continuous, mostly real-valued) versions make it easier to see.

[update]These limits are false, the true value for the first limit is closer to -1.85, not -2... sorry about that.[/update]
Reply
#7
   
This makes it appear that:

\( \lim_{N\rightarrow\infty} (a \begin{tabular}{|c|}\hline N \\\hline\end{tabular} b) = b+1 \) for all \( a>1, b<0 \)

meaning, in the limit, all hyper-operators return to the successor operation, like the circle of life... Smile

Andrew Robbins.
Reply
#8
andydude Wrote:This makes it appear that:

\( \lim_{N\rightarrow\infty} (a \begin{tabular}{|c|}\hline N \\\hline\end{tabular} b) = b+1 \) for all \( a>1, b<0 \)

meaning, in the limit, all hyper-operators return to the successor operation, like the circle of life... Smile

Andrew Robbins.
Wow!
This is one of the crazy great things, that we seem to find here. Pretty productive diggers, we are. I hope, it will come out to be true gold, what we fiddle out of the mines of Klondyke in the hyper-west of number-theory.

:-)

Gottfried
Gottfried Helms, Kassel
Reply
#9
I actually made a few errors in that code. HyLog is wrong for two values.

Code:
HyLog[2][x, z] == z/x but Divide[x, z] == x/z and
HyLog[1][x, z] == z - x but Subtract[x, z] == x - z

Sorry about that.

Andrew Robbins
Reply
#10
@Whiteknox

Sorry for getting ahead of myself. Welcome to the forum, and feel free to ask more questions. Concerning your specific question, it has definitely been considered before, but there are no known "nice" extensions. You can always use Lagrange interpolation to connect the integer values of any function. The problem arises with continuity, differentiability, and whether or not it still satisfies a formula.

For example, if you were to use Lagrange interpolation between all known hyper-operations then you would end up with a function \( a\ R(n)\ b \) as you describe for real a, b, n, BUT doing this would prevent it from satisfying:
\( a\ R(n)\ b = a\ R(n-1)\ (a\ R(n)\ (b - 1)) \)
for all non-integer n, since Lagrange interpolation does not take this into account. A method that works very well for tetration, also works well for hyper-operations in general: choosing an interval of n, for example 2 < n < 3 so that everything between multiplication and exponentiation are approximated by some kind of interpolation (maybe not Lagrange interpolation), and use the formula of hyper-operators to extend the domain of n from this interval to all real n. The problem with this method is that doing this prevents the function from being differentiable (and in some cases continuous).

So in order to find a "nice" extension of hyper-operators to real n, one would need to start with an "unknown" interpolation, apply the formula, then "solve" for the interpolation with respect to the formula in such a way that additional requirements are met, for example: continuity, differentiability, and so on.

Andrew Robbins
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How could we define negative hyper operators? Shanghai46 2 1,952 11/27/2022, 05:46 AM
Last Post: JmsNxn
  "circular" operators, "circular" derivatives, and "circular" tetration. JmsNxn 15 20,029 07/29/2022, 04:03 AM
Last Post: JmsNxn
  The modified Bennet Operators, and their Abel functions JmsNxn 6 3,971 07/22/2022, 12:55 AM
Last Post: JmsNxn
  The \(\varphi\) method of semi operators, the first half of my research JmsNxn 13 7,710 07/17/2022, 05:42 AM
Last Post: JmsNxn
  The bounded analytic semiHyper-operators JmsNxn 4 11,274 06/29/2022, 11:46 PM
Last Post: JmsNxn
  Holomorphic semi operators, using the beta method JmsNxn 71 38,470 06/13/2022, 08:33 PM
Last Post: JmsNxn
  A relaxed zeta-extensions of the Recursive Hyperoperations MphLee 3 6,119 06/06/2022, 07:37 PM
Last Post: MphLee
  Hyper operators in computability theory JmsNxn 5 14,513 02/15/2017, 10:07 PM
Last Post: MphLee
  Recursive formula generating bounded hyper-operators JmsNxn 0 4,811 01/17/2017, 05:10 AM
Last Post: JmsNxn
  Rational operators (a {t} b); a,b > e solved JmsNxn 30 97,945 09/02/2016, 02:11 AM
Last Post: tommy1729



Users browsing this thread: 1 Guest(s)