Base -1
#11
See fractals at tetration of -1 

Mandelbrot of exponential map  at -1
[Image: -1-09.gif]

Julia set of exponential map at -1
[Image: J-1.gif]
Daniel
Reply
#12
Hey, Daniel--could you elaborate further on how you are constructing these graphs/the mathematical theory behind this?

I know you are using the fixed point formula \((-1)^{-1} = -1\) but could you elaborate further? Which branch of the exponential are you using particularly. I assume this is the Schroder iteration (your Bell matrix approach). But which branch of \((-1)^z\) are you choosing. Which is to mean: \((-1)^z = f_k(z) = e^{\pi i(2k+1) z}\) for some \(k \in \mathbb{Z}\). And each has a repelling fixed point at \(z=-1\) with multiplier \((2k+1)\pi i\). I assume that you are doing the entire iteration about these fixed points (every entire function about a repelling fixed point admits an entire iteration).

Just curious because this looks really interesting. I'm just interested to know more about the backstory of how these graphs are made! Big Grin 

Please, elaborate!

Regards, James.
Reply
#13
(06/20/2022, 12:40 AM)JmsNxn Wrote: Hey, Daniel--could you elaborate further on how you are constructing these graphs/the mathematical theory behind this?

I know you are using the fixed point formula \((-1)^{-1} = -1\) but could you elaborate further? Which branch of the exponential are you using particularly. I assume this is the Schroder iteration (your Bell matrix approach). But which branch of \((-1)^z\) are you choosing. Which is to mean: \((-1)^z = f_k(z) = e^{\pi i(2k+1) z}\) for some \(k \in \mathbb{Z}\). And each has a repelling fixed point at \(z=-1\) with multiplier \((2k+1)\pi i\). I assume that you are doing the entire iteration about these fixed points (every entire function about a repelling fixed point admits an entire iteration).

Just curious because this looks really interesting. I'm just interested to know more about the backstory of how these graphs are made! Big Grin 

Please, elaborate!

Regards, James.

These fractals were made thirty years ago with FractInt, a versatile fractal generator with a programming language. As you can see in the code, the algorithms are simple that generated the fractals.  

Tetration (exponential map) Mandelbrot set
Code:
TetrationM (XAXIS) {;
  z = pixel:
   z = pixel ^ z
    |z| <= 100000
  }
 
Tetration (exponential map) Julia set
Code:
TetraJ (XAXIS) {;
  z = pixel:
   z = P1 ^ z
    |z| <= 100000
  }
Daniel
Reply
#14
Daniel, please explain better. I get that that makes sense to you. Please elaborate further. At the risk of sounding stupid. Explain more. Elaborate.

Can you elaborate further from the Fractint reference? I didn't get much from this that I could use to answer my original question. Any help would be greatly appreciated. Are these just \(f(z) = e^{\pi i z}\) and \(F(s)\) is the iterate? Please, elaborate futher.
Reply
#15
(06/20/2022, 01:01 AM)Daniel Wrote:
(06/20/2022, 12:40 AM)JmsNxn Wrote: Hey, Daniel--could you elaborate further on how you are constructing these graphs/the mathematical theory behind this?

I know you are using the fixed point formula \((-1)^{-1} = -1\) but could you elaborate further? Which branch of the exponential are you using particularly. I assume this is the Schroder iteration (your Bell matrix approach). But which branch of \((-1)^z\) are you choosing. Which is to mean: \((-1)^z = f_k(z) = e^{\pi i(2k+1) z}\) for some \(k \in \mathbb{Z}\). And each has a repelling fixed point at \(z=-1\) with multiplier \((2k+1)\pi i\). I assume that you are doing the entire iteration about these fixed points (every entire function about a repelling fixed point admits an entire iteration).

Just curious because this looks really interesting. I'm just interested to know more about the backstory of how these graphs are made! Big Grin 

Please, elaborate!

Regards, James.

These fractals were made thirty years ago with FractInt, a versatile fractal generator with a programming language. As you can see in the code, the algorithms are simple that generated the fractals.  

Tetration (exponential map) Mandelbrot set
Code:
TetrationM (XAXIS) {;
  z = pixel:
   z = pixel ^ z
    |z| <= 100000
  }
 
Tetration (exponential map) Julia set
Code:
TetraJ (XAXIS) {;
  z = pixel:
   z = P1 ^ z
    |z| <= 100000
  }
(06/20/2022, 02:37 AM)JmsNxn Wrote: Daniel, please explain better. I get that that makes sense to you. Please elaborate further. At the risk of sounding stupid. Explain more. Elaborate.

Can you elaborate further from the Fractint reference? I didn't get much from this that I could use to answer my original question. Any help would be greatly appreciated. Are these just \(f(z) = e^{\pi i z}\) and \(F(s)\) is the iterate? Please, elaborate futher.

Tetration (exponential map) Mandelbrot set - the Mandelbrot set with the quadratic equation replaced by a=pixel and  
Code:
TetrationM (XAXIS) {; \\ x axis symmetry
  z = pixel:          \\ initialize setting z to the value of the current pixel converted to a complex number
   z = pixel ^ z      \\ iterate once the original complex value of the pixel
    |z| <= 100000     \\ iterate until |z| becomes larger than 100,000. The number of iterations is the escape value
                      \\ represented by the color of the pixel.
  }
 
Tetration (exponential map) Julia set
Code:
TetraJ (XAXIS) {;   \\ x axis symmetry
  z = pixel:        \\ initialize setting z to the value of the current pixel converted to a complex number
   z = P1 ^ z       \\ P1 is a user defined complex variable set at runtime.
                    \\ iterate once P1 to the power of z
    |z| <= 100000   \\ iterate until |z| becomes larger than 100,000. The number of iterations is the escape value
                    \\ represented by the color of the pixel.
  }
Daniel
Reply
#16
[Image: png.image?\dpi%7B110%7D%20-1\uparrow\uparrow1=-1]. [Image: png.image?\dpi%7B110%7D%20-1] is a fixed point of [Image: png.image?\dpi%7B110%7D%20-1\uparrow%20x]. A fixed point is also a 1-cycle, so the issue with iterated exponentials at n-cycles happens with [Image: png.image?\dpi%7B110%7D%20-1\uparrow\uparrow1].
What if [Image: png.image?\dpi%7B110%7D%20-1\uparrow\uparrow...forall%20x]?
Please remember to stay hydrated.
ฅ(ミ⚈ ﻌ ⚈ミ)ฅ Sincerely: Catullus /ᐠ_ ꞈ _ᐟ\
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  I thought I'd take a crack at base = 1/2 JmsNxn 9 2,814 06/20/2022, 08:28 AM
Last Post: Catullus
  On the [tex]2 \pi i[/tex]-periodic solution to tetration, base e JmsNxn 0 948 09/28/2021, 05:44 AM
Last Post: JmsNxn
  A different approach to the base-change method JmsNxn 0 1,389 03/17/2021, 11:15 PM
Last Post: JmsNxn
  Complex Tetration, to base exp(1/e) Ember Edison 7 12,860 08/14/2019, 09:15 AM
Last Post: sheldonison
  b^b^x with base 0<b<e^-e have three real fixpoints Gottfried 1 6,047 11/07/2017, 11:06 AM
Last Post: sheldonison
Question Analytic matrices and the base units Xorter 2 6,520 07/19/2017, 10:34 AM
Last Post: Xorter
  Base units Xorter 0 3,352 01/22/2017, 10:29 PM
Last Post: Xorter
  Mutliplication of base units Xorter 0 3,144 10/02/2016, 04:47 PM
Last Post: Xorter
  tetration base sqrt(e) tommy1729 2 7,182 02/14/2015, 12:36 AM
Last Post: tommy1729
  Explicit formula for the tetration to base [tex]e^{1/e}[/tex]? mike3 1 6,312 02/13/2015, 02:26 PM
Last Post: Gottfried



Users browsing this thread: 1 Guest(s)