GEB - Diagram G recurive definition

  • Thread starter Thread starter dsmith1974
  • Start date Start date
  • Tags Tags
    Definition Diagram
dsmith1974
Messages
4
Reaction score
0
I've been reading Godel, Escher and Bach. In chapter V 'Recursive Structures and Processes' there's a recursive function given for Diagram G as:

G(n) = n - G(G(n-1)) // for n > 0
G(0) = 0

I can codify the Fibonacci seq that the diagram creates as:

$f=1,1;foreach($n in 3..30){$f += $f[$n-2] + $f[$n-3]}

or say that the total node count for rows up to n will be the actual node count on row n+2.

But, I'm not sure what he's trying to say with the function above? I gather it's more a statement about the overall geometric structure rather than an individual item in the Fib. seq.

But how can n - (anything) produce G(n)? Is n an integer - the nth order, or the whole diagram?

Many thanks,

Duncan
 
Mathematics news on Phys.org
dsmith1974 said:
I've been reading Godel, Escher and Bach. In chapter V 'Recursive Structures and Processes' there's a recursive function given for Diagram G as:

G(n) = n - G(G(n-1)) // for n > 0
G(0) = 0

I can codify the Fibonacci seq that the diagram creates as:

$f=1,1;foreach($n in 3..30){$f += $f[$n-2] + $f[$n-3]}

or say that the total node count for rows up to n will be the actual node count on row n+2.

But, I'm not sure what he's trying to say with the function above? I gather it's more a statement about the overall geometric structure rather than an individual item in the Fib. seq.

But how can n - (anything) produce G(n)? Is n an integer - the nth order, or the whole diagram?

Many thanks,

Duncan
Since G(0)= 0. G(1)= 1- G(G(0))= 1- G(0)= 1
G(2)= 1- G(G(1))= 1- G(1)= 1- 1= 0
G(3)= 1- G(G(2))= 1- G(0)= 1
G(4)= 1- G(G(3))= 1- G(1)= 0

In other words, G(n) is 0 for any even n, 1 for any odd n.
 
I think (maybe) what he's saying is that for any item g(n), the value will be the sum of all previous items excluding n-1. The notation's a little unclear, but the G(G(n-1)) part is repeated until n=1.

So for e.g.

5 = 2 + 1 + 1 + 1 (skipping 3)
8 = 3 + 2 + 1 + 1 + 1 (skipping 5)
13 = 5 + 3 + 2 + 1 + 1 +1 (skipping 8)
.
.
.

Regards,

Duncan
 
That doesn't look to me at all like what the OP said but I now notice that I misread it.

For some reason I read it as G(n)= 1- G(G(n-1)) but I now see that it should be G(n)= n- G((G(n-1))
 
I think the OP needs to go back to GEB and re-read the text associated with these diagrams. Hofstadter explains the meaning of that function. Without his text, which the OP did not provide in this post, there is simply NO way anyone can answer this question.

Dsmith1976,
GEB is not something that can be read like a novel, it often requires re-reading sections until you understand. You need to re-read this section ( I have it open in front of me) D.H. tells you the meaning and intent of that function.
 
Last edited:
Recall the problem.

G(n) = n - G(G(n-1))​

G(0) = 0​

Try it!

G(0) = 0
G(1) = 1 - G(G(0)) = 1 - G(0) = 1 - 0 = 1
G(2) = 2 - G(G(1)) = 2 - G(1) = 2 - 1 = 1
G(3) = 3 - G(G(2)) = 3 - G(2) = 3 - 1 = 2
G(4) = 4 - G(G(3)) = 4 - G(2) = 4 - 1 = 3
G(5) = 5 - G(G(4)) = 5 - G(3) = 5 - 2 = 3
G(6) = 6 - G(G(5)) = 6 - G(3) = 6 - 2 = 4
G(7) = 7 - G(G(6)) = 7 - G(4) = 7 - 3 = 4
G(8) = 8 - G(G(7)) = 8 - G(4) = 8 - 3 = 5
G(9) = 9 - G(G(8)) = 9 - G(5) = 9 - 3 = 6​

Now, how does this become a graph? It's not very obvious. It took me a few hours of trial-and-error. First, let me rewrite the above without the derivations:

G(0) = 0
G(1) = 1
G(2) = 1
G(3) = 2
G(4) = 3
G(5) = 3
G(6) = 4
G(7) = 4
G(8) = 5
G(9) = 6​

Ignore G(0) and G(1) for now.

Start with "G(2) = 1"--interpret this as "2 is connected to 1". Next, "G(3) = 2"--interpret this as "3 is connected to 2". Then, we have both "G(4) = 3" and "G(5) = 3"--interpret these as "4 and 5 are connected to 3".

And so on. If you draw it out, you'll reproduce Diagram G. As for G(0) and G(1)--interpret these as "0 is connected to 0" and "1 is connected to 1"--in other words, they're not really connected to the anything else, so you can ignore them for your purposes.
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
Thread 'Imaginary Pythagorus'
I posted this in the Lame Math thread, but it's got me thinking. Is there any validity to this? Or is it really just a mathematical trick? Naively, I see that i2 + plus 12 does equal zero2. But does this have a meaning? I know one can treat the imaginary number line as just another axis like the reals, but does that mean this does represent a triangle in the complex plane with a hypotenuse of length zero? Ibix offered a rendering of the diagram using what I assume is matrix* notation...

Similar threads

Replies
125
Views
19K
Replies
23
Views
4K
Replies
1
Views
4K
4
Replies
175
Views
25K
Replies
4
Views
5K
Back
Top