Recursive Sequences Terry Anderson. What is a Recursive Sequence? A sequence that follows a pattern involving previous terms  To generate new terms,

Slides:



Advertisements
Similar presentations
Biography ( ) Fibonacci is a short for the Latin "filius Bonacci" which means "the son of Bonacci" but his full name was Leonardo of Pisa, or Leonardo.
Advertisements

The Fibonacci Sequence in Nature
1 Fibonacci Numbers Stage 4 Year 7 Press Ctrl-A ©2009 – Not to be sold/Free to use.
Fibonacci.
5.5 Fibonacci's Rabbits 1 Section 5.5 Fibonacci’s Problem.
Chapter 5 Number Theory © 2008 Pearson Addison-Wesley. All rights reserved.
Original Question: How fast rabbits can rabbits breed in ideal circumstances? Suppose a newly-born pair of.
The Fibonacci Numbers and The Golden Section By: Nicole Doepkens Amanda Nance Heather Charney Laura Kuhn Kristi Glidden.
CPE 130 Algorithms and Data Structures Recursion Asst. Prof. Dr. Nuttanart Facundes.
6.1 Golden Section 6.2 More about Exponential and Logarithmic Functions 6.3 Nine-Point Circle Contents 6 Further Applications (1)
Beyond the Fundamentals; Technical Analysis FIN 40500: International Finance.
THE FIBONOCCI SEQUENCE IN REAL LIFE BY ANNE-MARIE PIETERSMA, HARRY BUI, QUINN CASHELL, AND KWANGGEUN HAN.
Basic Practice of Statistics - 3rd Edition
Lecture 3, Tuesday, Aug. 29. Chapter 2: Single species growth models, continued 2.1. Linear difference equations, Fibonacci number and golden ratio. Required.
Math around Us: Fibonacci Numbers John Hutchinson March 2005.
EXCURSIONS IN MODERN MATHEMATICS SIXTH EDITION Peter Tannenbaum 1.
Spiral Growth in Nature
Great Theoretical Ideas in Computer Science.
ISU CCEE BioE 202: Aesthetics The Golden Section – its origin and usefulness in engineering.
Fibonacci Numbers.
Discovering Fibonacci
FIBONACCI NUMBERS 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, ,
The Fibonacci Sequence. These are the first 9 numbers in the Fibonacci sequence
Fibonacci Number man. Fibonacci bunnies 1.At the end of the first month, they mate, but there is still one only 1 pair. 2.At the end of the second month.
Great Theoretical Ideas in Computer Science.
Fibonacci Sequence by Lydia Bliven & Ethel Jones.
Fibonacci Sequence and the Golden Ratio Robert Farquhar MA 341.
Copyright 2013, 2010, 2007, Pearson, Education, Inc. Section 5.8 Fibonacci Sequence.
Maths in Nature By Keith Ball.
Excursions in Modern Mathematics, 7e: Copyright © 2010 Pearson Education, Inc. 9 The Mathematics of Spiral Growth 9.1Fibonacci’s Rabbits 9.2Fibonacci.
Sequences defined recursively
SECTION 5-5 The Fibonacci Sequence and the Golden Ratio Slide
1. 2 A spiral winds in a continuous curve round a point.
Background Born 1170, Died 1250 in Pisa (now in Italy). Real name is Leonardo Pisano, Fibonacci is his nickname. Studied in North Africa in mathematics.
The Mathematical Formula of Art
The Golden Ratio and Fibonacci Numbers in Nature
Whiteboardmaths.com © 2007 All rights reserved
Aim: Arithmetic Sequence Course: Alg. 2 & Trig. Do Now: Aim: What is an arithmetic sequence and series? Find the next three numbers in the sequence 1,
Math 409/409G History of Mathematics The Fibonacci Sequence Part 1.
Fibonacci The Fibonacci Sequence The Golden Ratio.
The Golden Mean The Mathematical Formula of Life Life.
Fermat’s Little Theorem Fibonacci Numbers Shirley Moore CS4390/5390 Fall September 10,
13.2: Arithmetic and Geometric Sequences
Fibonacci Sequences and the Golden Ratio Carl Wozniak Northern Michigan University.
Patterns in Nature.
MATH 2160 Sequences. Arithmetic Sequences The difference between any two consecutive terms is always the same. Examples: 1, 2, 3, … 1, 3, 5, 7, … 5, 10,
GOLDEN RATIO GOLDEN SECTION FIBONACCI NUMBERS 1, 1, 2, 3, 5, 8, 13….. The ratio of any consecutive numbers is the golden ratio A pattern found in nature.
The Fibonacci Sequence. Leonardo Fibonacci (1170 – 1250) First from the West, but lots of evidence from before his time.
Introduction to Fibonacci number
Excursions in Modern Mathematics, 7e: Copyright © 2010 Pearson Education, Inc. 9 The Mathematics of Spiral Growth 9.1Fibonacci’s Rabbits 9.2Fibonacci.
Fibonacci Sequence and Related Numbers
The Fibonacci Sequence
Who was Fibonacci ? Greatest European mathematician of the middle ages Born in Pisa, Italy, the city with the famous Leaning Tower,~ 1175 AD Major contributions.
By Steven Cornell.  Was created by Leonardo Pisano Bogollo.  It show’s the growth of an idealized rabbit population.
Essential Questions Introduction to Sequences
Algorithmic Foundations COMP108 COMP108 Algorithmic Foundations Divide and Conquer Prudence Wong
Recursive Series and Summations. Finding the general term of a sequence can be difficult. You are looking for a pattern and then giving it a mathematical.
The Golden Mean By Susan Convery Foltz Broward College EPI 003 Technology February 8, 2009.
 2012 Pearson Education, Inc. Slide Chapter 5 Number Theory.
In case you don’t plan to read anything else in this powerpoint………. There is an activity you must do, somewhere hidden in this slide show, in preparation.
The Fibonacci Number Sequence
7.4 Exploring recursive sequences fibonacci
FIBONACCI NUMBERS IN NATURE
COMP108 Algorithmic Foundations Divide and Conquer
Exploring Fibonacci and the Golden Ratio
The Golden Ratio and Fibonacci Numbers in Nature
Maths in Nature.
FIBONACCI NUMBERS In NATURE
Section 5.8 Fibonacci Sequence
Presentation transcript:

Recursive Sequences Terry Anderson

What is a Recursive Sequence? A sequence that follows a pattern involving previous terms  To generate new terms, we use old ones  The terms t 1 (and sometimes t 2, t 3 …) must be defined ahead of time

Example of a Recursive Sequence Define t 1 = 3 General term: t n = 2t n  Note that t n-1 is the term before t n Now we may find the other terms  t 2 = 2t = 2(3) + 1 = 7  t 3 = 2t = 2(7) + 1 = 15  t 4 = 2t = 2(15) + 1 = 31

Fibonacci’s Rabbits 1202: Italian mathematician Leonardo Fibonacci publishes his solution to the famous problem:  “A certain man put a pair of rabbits in a place surrounded on all sides by a wall. How many pairs of rabbits can be produced from that pair in a year if it is supposed that every month each pair begets a new pair which from the second month on becomes productive?” Or, in modern English:  We start with one pair of rabbits  A pair of rabbits take one month to mature  Each pair of mature rabbits mate to produce another pair of rabbits every month

Month (n) Number of Pairs (t n )

The Fibonacci Sequence 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, …  Each term is the sum of the previous two  Define t 1 = 1, t 2 = 1  General term: t n = t n-1 + t n-2 This sequence appears in many other places in nature…

The most common number of petals on flowers belong to the sequence… 1 petal (white calla lily) 2 petals (euphorbia) 3 petals (trillium) 5 petals (columbine) 8 petals (bloodroot) 13 petals (black-eyed susan) 21 petals (shasta daisy) 34 petals (field daisy)

The patterns found on pineapples, pinecones, sunflowers, etc. can also be seen in the sequence…

The Golden Ratio We can find this number by dividing successive terms of the Fibonacci Sequence:  2/1=1  3/2=1.5  5/3=1.667  8/5=1.6  13/8=1.625  21/13=1.615  34/21=1.619  And so on… At infinity, this ratio converges to the golden ratio,  (phi):  appears in…  Nature  Paintings  Classical architecture  The pyramids  The human body  Music  And many other places…