Rational operators (a {t} b); a,b > e solved
#2
(06/06/2011, 02:45 AM)JmsNxn Wrote: Well alas, logarithmic semi operators have paid off and have given a beautiful smooth curve over domain \( (-\infty, 2] \). This solution for rational operators is given by \( t \in (-\infty, 2] \) \( \{a, b \in \R| a, b > e\} \):

\(
f(t) = a\, \{t\}\, b =
\left\{
\begin{array}{c l}
\exp_\eta^{\alpha t}(\exp_\eta^{\alpha-t}(a) + \exp_\eta^{\alpha -t}(b)) & t \in (-\infty,1]\\
\exp_\eta^{\alpha t-1}(b * \exp_\eta^{\alpha 1-t}(a)) & t \in [1,2]\\
\end{array}
\right.
\)

Which extends the ackerman function to domain real (given the restrictions provided).
the upper superfunction of \( \exp_\eta(x) \) is used (i.e: the cheta function).
\( \exp_\eta^{\alpha t}(a) = \text{cheta}(\text{cheta}^{-1}(a) + t) \) .....
Hey James,

Sounds very exciting. fyi, I admit I don't yet understand your new functions, but I made some graphs, and it looks very promising. I thought I'd post the following snippet of pari-gp code, which implements the rational operator function you posted, which can be used with mylatest kneser.gp code, which includes \( \text{sexp}_\eta(z) \) support. This would also make it easier for other to try your new function. If a<e, then I used sexpeta(invsexpeta(a)+t), instead of cheta(invcheta(a)+t). I think this is legal since the two are in many ways the same function when they are being to generate fractional iterations of eta. This expansive definition eliminates your restrictions, and covers all of the reals, working seamlessly from -infinity to infinity. It also matches your second example exactly.
Code:
expeta(t,a) = {
  if (real(a)<exp(1), sexpeta(invsexpeta(a)+t), cheta(invcheta(a)+t));
}
fatb(a,t,b) = {
  if (t<1,  return (expeta(t,expeta(-t,a)+expeta(-t,b))));
  if (t>=1, return (expeta(t-1,b*expeta(1-t,a))));
}

I've gotten as far as quickly verifying that for t=0, we have addition, t=1, we have multiplication, and t=2 is exponentiation. The existing code has problems for invcheta(z) or invsexpeta(z), where z is too close to e, and invcheta(z)<=-1000, or invsexpeta(z)>1000. Other than that, it seems to work great. For example,
fatb(3,0,4)=7, which is 3+4
fatb(3,1,4)=12, which is 3x4
fatb(3,2,4)=81, which is 3^4
I wonder what it means that fatb(3,-1,4)=5.429897..?
Also, is there a smooth continuation to a function for t=3, which would be tetration?
- Sheldon
Reply


Messages In This Thread
RE: Rational operators (a {t} b); a,b > e solved - by sheldonison - 06/06/2011, 04:39 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How could we define negative hyper operators? Shanghai46 2 6,221 11/27/2022, 05:46 AM
Last Post: JmsNxn
  "circular" operators, "circular" derivatives, and "circular" tetration. JmsNxn 15 33,378 07/29/2022, 04:03 AM
Last Post: JmsNxn
  The modified Bennet Operators, and their Abel functions JmsNxn 6 10,229 07/22/2022, 12:55 AM
Last Post: JmsNxn
  The \(\varphi\) method of semi operators, the first half of my research JmsNxn 13 18,754 07/17/2022, 05:42 AM
Last Post: JmsNxn
  Thoughts on hyper-operations of rational but non-integer orders? VSO 4 13,472 06/30/2022, 11:41 PM
Last Post: MphLee
  The bounded analytic semiHyper-operators JmsNxn 4 16,376 06/29/2022, 11:46 PM
Last Post: JmsNxn
  Holomorphic semi operators, using the beta method JmsNxn 71 85,509 06/13/2022, 08:33 PM
Last Post: JmsNxn
  [MSE-SOLVED] Subfunction is functorial!!!! MphLee 14 23,382 06/06/2021, 11:16 PM
Last Post: JmsNxn
  Hyper operators in computability theory JmsNxn 5 19,816 02/15/2017, 10:07 PM
Last Post: MphLee
  Recursive formula generating bounded hyper-operators JmsNxn 0 6,721 01/17/2017, 05:10 AM
Last Post: JmsNxn



Users browsing this thread: 1 Guest(s)