I was bored and started thinking of fractals and decided I scribbled what I thought could be one.
$$a_{i+1} = (a_i - b_i) / c_i $$ $$b_{i+1} = (b_i - c_i) / a_i $$ $$c_{i+1} = (c_i - a_i) / b_i $$
I was just wondering if there was any information on this or what type of fractal this could be? I like the look of each layer as it develops.
I inputted into a vba program and got this as one of the layers of this fractal.
Red lines show are where the function at one point gave a div by zero error everywhere else is roughly how fast it goes to infinity.
For those who have excel and know how to use its code here is the code I wrote to generate this. Just note not to run this with any conditional formatting it will slow to a crawl and never complete.
Sub main()
Application.EnableEvents = False
Application.DisplayAlerts = False
Dim x, y, z As Double
For x = -100 To 100
For y = -100 To 100
For z = -100 To 100
SpeedToInfinity = Itterate(x / 100, y / 100, z / 100)
ThisWorkbook.Worksheets(1).Cells(y + 101, z + 101) = SpeedToInfinity
DoEvents
Next
Next
abc = 1 ' set a break point here.
Next
Application.EnableEvents = True
Application.DisplayAlerts = True
End Sub
Function Itterate(a As Double, b As Double, c As Double)
Dim newA, newB, newC As Double
Dim counter, counterMax As Integer
counterMax = 200
On Error GoTo ErrorHit
For counter = 0 To counterMax
newA = (a - b) / c
newB = (b - c) / a
newC = (c - a) / b
a = newA
b = newB
c = newC
Next
ErrorHit:
Select Case Err.Number
Case 11: 'div by zero
counter = counter * -1
Case 0:
End Select
Itterate = counter
End Function


fractaldoes not have a generally agreed upon definition in mathematics, every notion of fractal with which I am familiar refers to a set. What is the set you are defining? It looks like, perhaps, it is attracting set set of a discrete time dynamical system? Second, I am not sure that I follow your code. It looks like you take $(a_0,b_0,c_0)$ to be a point in $\mathbb{R}^3$, then iterate, looking at how fast the iterates diverge to infinity (or not?). Is this correct? – Xander Henderson Feb 13 '19 at 01:39