Change of base formula for Tetration
#31
jaydfox Wrote:Posts are missing.

Which one? I simply moved some posts from the parabolic iteration thread (that didnt belong there) to here.
Reply
#32
bo198214 Wrote:Sorry Jay we dont speak about the same thing.
You ask me why I assume \( a<b \).
I answered: because your formula does not converge for some x if we allow \( a>b \).
You answered: that I didnt pay attention to \( \mu_b(a) \).
I answered: there are despite values of x for which it doesnt converge.

And I can not relate your current answer to this problem.
To express it in formulas and numbers:
Your definition: For a given tetration \( {}^xb \) for base \( b \) compute another tetration for base \( a \) by the formula
\( {}^xa = \lim_{n\to\infty} \log_a^{\circ n}({}^{x+b+\mu_b(a)}b) \)
where \( \mu_b(a) \) is chosen accordingly that \( {}^1a=a \).

This formula is equivalent to
\( {}^xa = \lim_{n\to\infty} \log_a^{\circ n}(\exp_b^{\circ n}({}^{x+\mu_b(a)}b) \)

By definition \( {}^0 b=1 \), so if I chose \( x=-\mu_b(a) \)
then \( {}^{x+\mu_b(a)}b=1 \).
If I now compute the sequence
\( t_n = \lim_{n\to\infty} \log_a^{\circ n}(\exp_b^{\circ n}(1.0)) \)
say for bases \( a=3.0>\eta \) and \( b=1.5>\eta \) I get for \( n=1,2,3 \):
\( .3690702464, -.5382273450, -.9460372733+2.859600867*I \)

For me this means your formula gives no result in this case.
Well, yeah, if mu_b(a) >= 2, then you can't solve for a^^(-mu_b(a)). I still don't see why this is a problem.

For a=3.0, b=1.5, the constant mu_b(a) is going to be something in the neighborhood of 10. So, yeah, if you try to set x=-10 or thereabouts, it's not going to converge properly.
~ Jay Daniel Fox
Reply
#33
bo198214 Wrote:
jaydfox Wrote:Posts are missing.

Which one? I simply moved some posts from the parabolic iteration thread (that didnt belong there) to here.

Hmm, it seems to be working now. For a while there, it was only showing one page, not the four pages we're currently up to. Not sure why, but it's working now. False alarm.
~ Jay Daniel Fox
Reply
#34
jaydfox Wrote:
bo198214 Wrote:
jaydfox Wrote:Posts are missing.

Which one? I simply moved some posts from the parabolic iteration thread (that didnt belong there) to here.

Hmm, it seems to be working now. For a while there, it was only showing one page, not the four pages we're currently up to. Not sure why, but it's working now. False alarm.

I saw missing pages too. Seems to be some kind of caching problem. If you find a missing post via search, the pages seems to reappear ...

Ok, but back to the topic.
Reply
#35
jaydfox Wrote:For a=3.0, b=1.5, the constant mu_b(a) is going to be something in the neighborhood of 10. So, yeah, if you try to set x=-10 or thereabouts, it's not going to converge properly.

Ok, this was a misreading of mine, I thought you sayed that \( \mu_b(a)<0 \) in this case.

Ok it seems to converge for \( a>b \) too, though there is no proof.

So what about the case \( b<\eta \) then? I mean this is what we want: \( b\le\eta \) and \( a>\eta \).
Reply
#36
Okay, I've turned my attention back to my solution, as I'd like to get the library (in SAGE) completed. The key to making use of the change of base formula is being able to exponentiate very large numbers, while still maintaining a reasonable amount of "precision".

Eventually, the best way I could find was to do all my math on a double-logarithmic scale. The reason this is the best scale for doing such large operations can be demonstrated easily.

\( \text{Let }z=\log_b(\log_b(x))\\
\begin{eqnarray}
\text{Then }\log_b(\log_b(a^x)) & = & \log_b(\log_b(b^{x\log_b{a}})) \\
& = & \log_b(x\log_b{a}) \\
& = & \log_b(x)+\log_b(\log_b{a})) \\
& = & b^{\log_b(\log_b(x))}+\log_b(\log_b{a})) \\
& = & b^{z}+\log_b(\log_b{a}))
\end{eqnarray}
\)

Hence, once we've converted any number into its double-logarithmic equivalent, we can exponentiate one base by exponentiating in the master base and adding a constant. Because we're working with double-logarithms, we can work with very large numbers with full machine precision, without having to have overly large exponents. This is useful for iterating exponentiation in base a. Essentially, once \( {\Large \log_2}\left(\frac{b^z}{\log_b(\log_b{a})}\right) \) is greater than the number of bits of machine precision we're using, there's no point in further exponentiation, because addition will underflow and the result won't be affected. In other words, at that point, exponentiation in base a and base b is indistinguishable at machine precision (if you haven't understood my change of base formula before now, this should be an "Aha!" moment).

Note that if we're attempting to do a change of base from base a to base b, then we could use a double-logarithmic scale in a third base c. Base e is the simplest base to work with, for two reasons: first, logarithms and exponentiations are all using base e under the hood anyway, and second, the double natural logarithm of my cheta function is the iteration function of the decremented natural exponentiation \( f(z) = e^z-1 \) which we've discussed elsewhere.

However, situations may arise where a different base c is advisable.
~ Jay Daniel Fox
Reply
#37
I suppose it goes without mentioning that you simply reverse the process to take logarithms of very large numbers.

\( \text{Let }z=\log_c(\log_c(x))\\
\begin{eqnarray}
\text{Then }\log_c(\log_c(a^x)) & = & c^{z}+\log_c(\log_c{a}))
\end{eqnarray}
\)

which entails:

\( \text{Let }w=\log_c(\log_c(b^x))\\
\begin{eqnarray}
\text{Then }\log_c(\log_c(\log_b(b^x))) & = & \log_c(w-\log_c(\log_c{b}))
\end{eqnarray}
\)

Here we see the tools to iteratively exponentiate in base a, then iteratively take logarithms in base b.
~ Jay Daniel Fox
Reply
#38
jaydfox Wrote:Essentially, once \( {\Large \log_2}\left(\frac{b^z}{\log_b(\log_b{a})}\right) \) is greater than the number of bits of machine precision we're using, there's no point in further exponentiation, because addition will underflow and the result won't be affected.
I should point out that we need to add an absolute value to the equation.

Also, it's more useful from an implementation standpoint to solve for z in \( {\Large \log_2}\left(\frac{b^z}{\left\|\log_b(\log_b{a})\right\|}\right) \). By solving for z, we can find a "cap", a value below which we continue exponentiating. Once we've exceeded the cap, there's no point to exponentiate further. Having a cap allows us to perform a simple comparison (internally, a subtraction), rather than exponentiating and then testing if we've exceeded precision.

\(
\text{To find the cap, }\mathcal{Z}\text{, given }n\text{ bits of precision:}\\
\begin{eqnarray}
{\Large \log_2}\left(\frac{b^{\mathcal{Z}}}{\left\|\log_b(\log_b{a})\right\|}\right) & = & n\\
\log_2(b^{\mathcal{Z}})-\log_2\left(\left\|\log_b(\log_b{a})\right\|\right) & = & n\\
\log_2(b^{\mathcal{Z}}) & = & n+\log_2\left(\left\|\log_b(\log_b{a})\right\|\right) \\
\mathcal{Z}\log_2(b) & = & n+\log_2\left(\left\|\log_b(\log_b{a})\right\|\right) \\
\mathcal{Z} & = & \frac{n+\log_2\left(\left\|\log_b(\log_b{a})\right\|\right)}{\log_2(b)}
\end{eqnarray}
\)

Knowing the precision in bits n, and the bases a and b, we can set a cap for our iterative exponentiations. Once we pass the cap, we begin doing iterated logarithms in the other base (remember, all this is in the context of performing a change of base using my formula).

With these tools in place, we can solve a change of base. The only hole I've identified in the formula is that it is only provably correct for integer iteration counts. In between, it gives us infinitely differentiably results which satisfy the iterative exponential property, but there's no guarantee that it's "the" correct solution for fractional iterations. Given the simplicity and the direct correlation between the superlogarithmic "constant" and the logarithmic constant, I had been lulled into assuming that if it was correct for all integer iterations, it would be correct for fractional iterations as well. To assume otherwise would lead to cyclic (wavy) curves if you graphed \( \text{slog}_b\left({}^{x} a\right) \), when with my formula you would get an asymptotically straight line. It was certainly unexpected to me that such a graph would be wavy, as it would imply that tetration "knows" where it is.

To put this into perspective, think about the iterated multiplication formula (you know, exponentation). Let's say that we know that 2^4 equals 4^2 and 2^6 equals 4^3. In fact, let's say that for all integers k, we know that 2^2k = 4^k.

Wouldn't you expect 2^3 to equal 4^1.5? That's essentially the basis for my initial confidence that my change of base formula was correct. I had found that it was correct for all integer tetrations, so why should I have the slightest concern that it wouldn't be correct for fractional tetrations? It would be as absurd as doubting that 2^3 equals 4^1.5.

And yet, Andrew's solution does indeed show this very problem. It behaves as though 2^3 equaled 4^1.487 or something like that. Sure, the error is small, but it's also unexpected.

Barring a really good reason, I'd be perfectly fine saying that Andrew's solution was in error, not mine. And yet the positive/convex nature of the odd derivatives of his solution is so beautiful as to make all my doubts melt away. I cannot fathom that Andrew's solution is wrong.

Which means that my change of base formula is on the right track, but for whatever reason it requires a cyclic shifting constant, a constant which "knows" the underlying exponent.

It'd be like saying that \( 4^x=2^{x\log_2(4,x)} \), where log_2(4,x) is no longer a constant, but a function of x that is cyclic though very nearly constant. Absurd!

But if I had to choose between this absurdity and denying the beauty of Andrew's solution, I'll take the absurdity. The superlogarithmic constant would appear to be a function of the underlying tetrational exponent, cyclic though very nearly constant.

Of course, further proof is needed. Beauty is fine and dandy, but my solution had a beauty of its own, and I consider it now wrong. Beauty alone cannot prove Andrew's solution either. We must find some underlying reason why having all the odd derivatives be convex is a desirable property, besides the fact that there is (almost certainly) only one such solution per base. Uniqueness alone is insufficient, because my solution is unique in its own way and based on "the" unique solution for base eta.
~ Jay Daniel Fox
Reply
#39
jaydfox Wrote:To put this into perspective, think about the iterated multiplication formula (you know, exponentation). Let's say that we know that 2^4 equals 4^2 and 2^6 equals 4^3. In fact, let's say that for all integers k, we know that 2^2k = 4^k.

Wouldn't you expect 2^3 to equal 4^1.5? That's essentially the basis for my initial confidence that my change of base formula was correct. I had found that it was correct for all integer tetrations, so why should I have the slightest concern that it wouldn't be correct for fractional tetrations? It would be as absurd as doubting that 2^3 equals 4^1.5.

Though I did not understand everything you wrote, this is a base problem of tetration (imposed by right-bracketing). For most values is:
\( {}^{xy}b\neq {}^x({}^y b) \)
particularely we cannot define the n-th super root by \( {}^{\frac{1}{n}}x \) because \( {}^{\frac{1}{n}}({}^nx)\neq x \).

Quote:Barring a really good reason, I'd be perfectly fine saying that Andrew's solution was in error, not mine. And yet the positive/convex nature of the odd derivatives of his solution is so beautiful as to make all my doubts melt away. I cannot fathom that Andrew's solution is wrong.
Attributes like "wrong" or "right" are completely inappropriate here.
In the realm of mathematics we assign a "right" if we can prove it and a "wrong" if we can disprove it.
Of course much research is a pursue of beauty but this is in the eye of the beholder. I would leave it there.

Quote:It'd be like saying that \( 4^x=2^{x\log_2(4,x)} \), where log_2(4,x) is no longer a constant, but a function of x that is cyclic though very nearly constant. Absurd!

I mean the interrelation between \( t \)-th superroot and superpowers \( {}^tx \) for real t, was not yet considered on this forum. How much differs \( {}^{\frac{1}{t}}x \) from the \( t \)-th superroot \( (x\mapsto {}^tx)^{-1} \)?

Quote:We must find some underlying reason why having all the odd derivatives be convex is a desirable property, besides the fact that there is (almost certainly) only one such solution per base. Uniqueness alone is insufficient, because my solution is unique in its own way and based on "the" unique solution for base eta.
As far as I know we couldnt prove any uniqueness conditions yet.
Reply
#40
(08/31/2007, 03:51 AM)jaydfox Wrote: Note that if we're attempting to do a change of base from base a to base b, then we could use a double-logarithmic scale in a third base c. Base e is the simplest base to work with, for two reasons: first, logarithms and exponentiations are all using base e under the hood anyway, and second, the double natural logarithm of my cheta function is the iteration function of the decremented natural exponentiation \( f(z) = e^z-1 \) which we've discussed elsewhere.

???

how does change of base formula for tetration and exp(z) -1 relate ???

i would recommend -- in case this is important and proved -- that more attention is given to it on the forum and/or FAQ
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [2sinh] exp(x) - exp( - (e-1) x), Low Base Constant (LBC) 1.5056377.. tommy1729 3 1,076 04/30/2023, 01:22 AM
Last Post: tommy1729
  f(x+y) g(f(x)f(y)) = f(x) + f(y) addition formula ? tommy1729 1 738 01/13/2023, 08:45 PM
Last Post: tommy1729
  Base -1 marraco 15 23,800 07/06/2022, 09:37 AM
Last Post: Catullus
  I thought I'd take a crack at base = 1/2 JmsNxn 9 4,958 06/20/2022, 08:28 AM
Last Post: Catullus
Question Formula for the Taylor Series for Tetration Catullus 8 4,609 06/12/2022, 07:32 AM
Last Post: JmsNxn
Big Grin Repetition of the last digits of a tetration of generic base Luknik 12 7,729 12/16/2021, 12:26 AM
Last Post: marcokrt
  On the [tex]2 \pi i[/tex]-periodic solution to tetration, base e JmsNxn 0 1,377 09/28/2021, 05:44 AM
Last Post: JmsNxn
  A different approach to the base-change method JmsNxn 0 1,839 03/17/2021, 11:15 PM
Last Post: JmsNxn
  There is a non recursive formula for T(x,k)? marraco 5 6,067 12/26/2020, 11:05 AM
Last Post: Gottfried
  Complex Tetration, to base exp(1/e) Ember Edison 7 14,957 08/14/2019, 09:15 AM
Last Post: sheldonison



Users browsing this thread: 1 Guest(s)