1 / 62

A Number You Can Call Your Own

Great Theoretical Ideas In Computer Science. A Number You Can Call Your Own. Is there life after p and e ?. Lecture 5. CS 15-251. 1.6180339887498948482045…. Khufu. 2589-2566 B.C. 2,300,000 blocks averaging 2.5 tons each. Great Pyramid at Gizeh. a. b.

cira
Télécharger la présentation

A Number You Can Call Your Own

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Great Theoretical Ideas In Computer Science A Number You Can Call Your Own Is there life afterp ande? Lecture 5 CS 15-251

  2. 1.6180339887498948482045…..

  3. Khufu • 2589-2566 B.C. • 2,300,000 blocks averaging 2.5 tons each

  4. Great Pyramid at Gizeh

  5. a b The ratio of the altitude of a face to half the base

  6. Golden Ratio Divine Proportion •  = 1.6180339887498948482045… • “Phi” is named after the Greek sculptor Phidias

  7. Parthenon, Athens (400 B.C.)

  8. Pentagon

  9. Ratio of height of the person to height of a person’s navel

  10. Definition of  (Euclid) • Ratio obtained when you divide a line segment into two unequal parts such that the ratio of the whole to the larger part is the same as the ratio of the larger to the smaller. A B C

  11. Definition of  (Euclid) • Ratio obtained when you divide a line segment into two unequal parts such that the ratio of the whole to the larger part is the same as the ratio of the larger to the smaller.

  12. Profound Truths

  13. Expanding Recursively

  14. Expanding Recursively

  15. Expanding Recursively

  16. Expanding Recursively

  17. Divina ProportioneLuca Pacioli (1509) • Pacioli devoted an entire book to the marvelous properties of . The book was illustrated by a friend of his named: Leonardo Da Vinci

  18. Table of contents • The first considerable effect • The second essential effect • The third singular effect • The fourth ineffable effect • The fifth admirable effect • The sixth inexpressible effect • The seventh inestimable effect • The ninth most excellent effect • The twelfth incomparable effect • The thirteenth most distinguished effect

  19. Table of contents • “For the sake of our salvation this list of effects must end.”

  20. Aesthetics •  plays a central role in renaissance art and architecture. • After measuring the dimensions of pictures, cards, books, snuff boxes, writing paper, windows, and such, psychologist Gustav Fechner claimed that the preferred rectangle had sides in the golden ratio (1871).

  21. Which is the most attractive rectangle?

  22. Which is the most attractive rectangle?  Golden Rectangle 1

  23. Bernoulli Spiral When the growth of the organism is proportional to its size

  24. Pineapple whorls • Church and Turing were both interested in the number of whorls in each ring of the spiral. The ratio of consecutive ring lengths approaches the Golden Ratio.

  25. Leonardo Fibonacci • In 1202, Fibonacci proposed a problem about the growth of rabbit populations.

  26. Leonardo Fibonacci • In 1202, Fibonacci proposed a problem about the growth of rabbit populations.

  27. Leonardo Fibonacci • In 1202, Fibonacci proposed a problem about the growth of rabbit populations.

  28. The rabbit reproduction model • A rabbit lives forever • The population starts as a single newborn pair • Every month, each productive pair begets a new pair which will become productive after 2 months old • Fn= # of rabbit pairs at the beginning of the nth month

  29. The rabbit reproduction model • A rabbit lives forever • The population starts as a single newborn pair • Every month, each productive pair begets a new pair which will become productive after 2 months old • Fn= # of rabbit pairs at the beginning of the nth month

  30. The rabbit reproduction model • A rabbit lives forever • The population starts as a single newborn pair • Every month, each productive pair begets a new pair which will become productive after 2 months old • Fn= # of rabbit pairs at the beginning of the nth month

  31. The rabbit reproduction model • A rabbit lives forever • The population starts as a single newborn pair • Every month, each productive pair begets a new pair which will become productive after 2 months old • Fn= # of rabbit pairs at the beginning of the nth month

  32. The rabbit reproduction model • A rabbit lives forever • The population starts as a single newborn pair • Every month, each productive pair begets a new pair which will become productive after 2 months old • Fn= # of rabbit pairs at the beginning of the nth month

  33. The rabbit reproduction model • A rabbit lives forever • The population starts as a single newborn pair • Every month, each productive pair begets a new pair which will become productive after 2 months old • Fn= # of rabbit pairs at the beginning of the nth month

  34. The rabbit reproduction model • A rabbit lives forever • The population starts as a single newborn pair • Every month, each productive pair begets a new pair which will become productive after 2 months old • Fn= # of rabbit pairs at the beginning of the nth month

  35. Fn is called the nth Fibonacci number F1=1, F2=1, and Fn=Fn-1+Fn-2 for n3

  36. Fn is called the nth Fibonacci number F1=1, F2=1, and Fn=Fn-1+Fn-2 for n3 Fn is defined by a recurrence relation. What is a closed form formula for Fn?

  37. Techniques we have seen so far: • Guess and verify • Guess the form and solve for the coefficients • Decorate the tree

  38. Leonhard Euler (1765)

  39. Less than .277

  40. 1,1,2,3,4,8,13,21,34,55,…. • 2/1 = 2 • 3/2 = 1.5 • 5/3 = 1.666… • 8/5 = 1.6 • 13/8 = 1.625 • 21/13= 1.6153846… • 34/21= 1.61904… •  = 1.6180339887498948482045

  41. A technique to derive the formula for the Fibonacci numbers • Fn is defined by two conditions: • Base condition: F0=0, F1=1 • Inductive condition: Fn=Fn-1+Fn-2

  42. Forget the base condition and concentrate on satisfying the inductive condition • Inductive condition: Fn=Fn-1+Fn-2 • Consider solutions of the form: • Fn= cn for some complex constant c • C must satisfy: • cn - cn-1 - cn-2 = 0

  43. cn - cn-1 - cn-2 = 0 • iff cn-2(c2 - c1 - 1) = 0 • iff c=0 or c2 - c1 - 1= 0 • Iff c = 0, c = , or c = -(1/)

  44. c = 0, c = , or c = -(1/) • So for all these values of c the inductive condition is satisfied: • cn - cn-1 - cn-2 = 0 • Do any of them happen to satisfy the base condition as well? c0=0 and c1=1? ROTTEN LUCK

  45. Insight: if 2 functions g(n) and h(n) satisfy the inductive condition then so does a g(n) + b h(n) for all complex a and b • (a g(n) + b h(n)) + (a g(n-1) + b h(n-1)) + (a g(n-2) + b h(n-2)) = 0

  46. a,b a n + b (-1/ )nsatisfies the inductive condition • Adjust a and b to fit the base conditions. • n=0: a+b = 0 • n=1: a 1 + b (-1/ )1 = 1 • a= 1/5 b= -1/5

  47. We have just proved Euler’s result:

  48. Sneezwort (Achilleaptarmica) Each time the plant starts a new shoot it takes two months before it is stong enough to support branching.

More Related