Read in the Da Vinci Code that phi = 1.68

  • Thread starter jai6638
  • Start date
  • Tags
    Code Phi
In summary: I got 1.53...Not "everything", definitely. :rofl: In summary, the divinity of the golden proportion is not supported by any evidence.
  • #1
jai6638
263
0
Hey.. .i just read in the Da Vinci Code that phi = 1.68 and that everythin in thie universal has the same proportion.. and that its called the DIVINE Proportion... For example, if you divide the length between your head to ur toe by the length between your waist and toe ur going to get the value of phi, i.e. , 1.68..


Is this true?? In what context is phi used in mathematics or physics?

thanks
 
Physics news on Phys.org
  • #2
For example, if you divide the length between your head to ur toe by the length between your waist and toe ur going to get the value of phi, i.e. , 1.68..

Hmm, I got 1.53...
 
  • #3
Not "everything", definitely.

It's nice to say that there are all these mysterious properties attributed to phi, but that's mostly to keep you interested. There are some interesting things about the number phi, like the construction of rectangles within rectangles, and the limiting ratio of terms in a fibonacci sequence.

I really don't know of any real applications of phi in math or physics, nor do I suspect there would be any reason for it being particularly "appliable."
 
  • #5
No, it is not true that "everythin in thie universal has the same proportionl" (and that is NOT said in "The DaVinci Code").

The "divide proportion" is connected to the "Golden Rectangle" which is mentioned in
"The DaVinci Code" (DaVinci's "Last Supper" is in the proportions of a golden rectangle): If you mark off a length on the longer length, equal to the width of the rectangle, you divide the rectangle into a square (the "width by width") and a rectangle (the remaining part). If the original rectangle is a "golden rectangle", then the new smaller rectangle will be also: in both the ratio of length to width is the same: the "divide proportion".

The calculation: Call the length of the original rectangle l and its width w. If we cut off a "w by w" square, we have left a rectangle with sides of length w and l-w. Now, w is the longer "length" so the ration of "length to width" is w/(l-w) which must be equal to the original l/w:
[tex]\frac{w}{l-w}= \frac{l}{w}[/tex]

Multiplying by w(l-w) gives w2= l(l-w)= l2- lw.

If we divide both sides of that by w2, we get
1= (l/w)2- (l/w). let x= l/w and we have 1= x2- x or
x2- x- 1= 0. Solving that by the quadratic formula,
[tex]x= \frac{1+\sqrt{5}}{2}[/tex]
is the "divine ratio".

It's interesting but it is NOT "divine"!
 
  • #6
Um, 'Halls of Ivy' seems to have a cold. :) He keeps saying the "divide proportion".


The divine proportion is common in nature. Spiral seashells and other recursive structures exhibit properties based on it.

As far as the human body goes, that's nonsense. That is the trickery of numerology - you can always find numbers that fit your claim if you look hard enough, and are highly selective in your choices.

Someone once showed that the Statue of Liberty was of "obvious" extraterrestrial origin becasue its height in inches was exactly equal to the distance to Alpha Centauri minus the number of leap days since its construction - or some such silliness.
 
  • #7
DaveC426913 said:
The divine proportion is common in nature. Spiral seashells and other recursive structures exhibit properties based on it.

For a debunking see:
http://www.lhup.edu/~dsimanek/pseudo/fibonacc.htm
 
  • #8
Huh. I am guilty of having a simplistic view of this subject. I had always assumed that the golden ratio was a generalized set of curves, and the nautilus was just in that range.

I'll have to give that page a careful looksee and reflect deeply.

(This comes at a bad time. I am reading Crichton's book 'State of Fear'. The story, while fiction, does to Global Warming what this site did to my views on magic numbers in nature. Makes me question some of my basic and long-held beliefs, particularly the ones rooted in common- or "everybody knows"-knowledge.)
 
Last edited:
  • #9
Wow. I really like HallsofIvy's response. I am so, like, very impressed. and I also like the "divide proportion". That is so very clever. Henceforth, I, too, shall refer to the "divide proportion". I love it! Thank you HallsofIvy. Hugs. -CeeAnne-
 
  • #10
DaveC426913 said:
Um, 'Halls of Ivy' seems to have a cold. :) He keeps saying the "divide proportion".


:rofl: :rofl: :rofl:
 
  • #11
For the programmers amonst us:
Code:
	public double findPhi(int degree){
		double phi = 1.0;

		int n = 1;
		while ( n < degree + 1 ){
			phi = Math.sqrt( phi + 1 );
			n++;
		}
		return phi;
	}

This is some code I wrote a little while ago, in Java.
 
  • #12
Actually, you can do it without resorting the square roots in your loop. Use:

[tex]\phi = 1 + \frac {1}{\phi}[/tex]
 
  • #13
AAAAAChooo!
 

1. What is phi?

Phi, also known as the Golden Ratio, is a mathematical concept that is found in nature and often used in art and architecture. It is approximately equal to 1.618, and is believed to represent perfect proportions.

2. How is phi related to the Da Vinci Code?

In the book, the character Robert Langdon mentions that phi is equal to 1.68, which is the inverse of the Golden Ratio. This number is used as a clue to help solve a puzzle in the story.

3. Is phi really equal to 1.68?

The value of phi is actually closer to 1.618, but in the context of the Da Vinci Code, the use of 1.68 may be a literary device or creative interpretation.

4. How is phi calculated?

Phi can be calculated by taking the sum of 1 plus the square root of 5, divided by 2. This results in approximately 1.618. Alternatively, it can also be found by dividing a line into two parts, where the ratio of the longer part to the shorter part is equal to the ratio of the whole line to the longer part.

5. What significance does phi have in the real world?

Phi has been observed in natural phenomena such as the arrangement of branches on a tree, the shape of a spiral shell, and the proportions of the human body. It has also been used in various forms of art and design, as it is believed to represent beauty and harmony.

Similar threads

  • Other Physics Topics
Replies
5
Views
5K
  • General Discussion
Replies
4
Views
2K
  • Classical Physics
Replies
6
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
3
Views
2K
  • Special and General Relativity
2
Replies
40
Views
2K
Replies
10
Views
2K
  • Special and General Relativity
3
Replies
75
Views
3K
  • Classical Physics
Replies
18
Views
2K
  • Mechanical Engineering
Replies
1
Views
3K
  • Beyond the Standard Models
Replies
27
Views
14K
Back
Top