Generalization of Fibonacci sequence

Size: px
Start display at page:

Download "Generalization of Fibonacci sequence"

Transcription

1 Generalization of Fibonacci sequence Etienne Durand Julien Chartrand Maxime Bolduc February 18th 2013 Abstract After studying the fibonacci sequence, we found three interesting theorems. The first theorem is the relation between the number of seeds required to have a sequence and the recurrence relation. The second theorem is a generalization of the recurrence relation of Fibonacci, whatever the seeds are. Finally, the last theorem that we discovered is an interesting identity in a sequence of number coming from a certain recurrence relation. 1 Introduction Leonardo Pisano Bigollo, most commonly known as Fibonacci, is a famous Mathematician and is considered by many as the most talented mathematician of the Middle Ages. In the modern world, he is known widely for the spreading of the Hindu-Arabic numeral system in Europe, and for the Fibonacci numbers. 1

2 Fibonacci first explained the concept of Fibonacci numbers in his book of calculations in 1202, named Liber Abaci [1]. The concept of this sequence of numbers was explained by a growing population of idealized rabbits, assuming that: a newly born pair of rabbits, one male, one female, are put in a field. Rabbits are able to mate at one month, so that at the end of its second month a female can produce another pair of rabbits. The concept assumes that rabbits never die and a mating pair always produces one new pair of one male and one female every month from the second month on.[2] 1. In the second month, the rabbits are mate but there is still only one pair. 2. In the third month, the pair of rabbits produces a new pair of rabbits, so there is now two pairs. 3. In the fourth month, the original pair produces a new pair of rabbits, so there is now three pairs. 4. In the fifth month, the original pair produces a new pair of rabbits, and the pair of rabbits that was born 2 months before also produces a new pair of rabbits, so there is now five pairs. The number of pair of rabbits in the month n will then be equal to the number of pair in the month (n-1) plus in the month (n-2). F n is the number of rabbit at the end of month n. The recurrence formula is then: 2

3 Fn = Fn 1 + Fn 2 F0 = 0 F1 = 1 The sequence of Fibonacci numbers creates a sequence that is known as Fibonacci sequence. Here is the sequence of the 15 first Fibonacci numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610,... Fibonacci numbers now have many applications and it s possible to see fibonacci numbers in nature. For example, these numbers can be related to sunflowers [6]. Also, Fibonacci numbers are present in other mathematical principle, like in the Pascal Triangle. [5] Figure 1: Fibonacci number sequence in Pascal s triangle There are several ways to generalize the Fibonacci sequence, you can change the initial values (seeds), change the coefficients of the recurrence relation or change the number of terms (or order) of the recurrence relation. In this paper, generalizations of Fibonacci sequence will be investigated. Indeed, in this paper, sequences coming from different recurrence relations and seeds will be investigated. There are a lot of theorems and proprieties concerning the Fibonacci sequence, and not that many generalizations for other sequences, that s why our results could be relevant. 2 Basics of the Generalizations The main objective of our researches was to generalize the Fibonacci sequence. To be able to understand the generalizations of this sequence, there 3

4 are several concepts that need to be explained. Seeds The seeds in a sequence of numbers are very important. In fact, they dictate the pace of the sequence of numbers. These are defined as the two first numbers of the sequence. For example, in the Fibonacci sequence, the seeds are: F 0 = 0 and F 1 = 1 which gives the following sequence: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610,... When only one of the seeds is changed, all the sequence is affected. For example, Edouard Lucas did create a new sequence of numbers that used the same recurrence relation than Fibonacci, by changing the seeds to L 0 = 2 and L 1 = 1: Recurrence relation 2, 1, 3, 4, 7, 11, 18, 29, 47, 76, 123, 199, 322, 521,... The recurrence relation in a sequence is a determining factor for the appearance of the structure of the sequence. In fact, it dictates how to add, subtract, multiply or divide the numbers. In the Fibonacci sequence, the recurrence relation is F n = F n 1 + F n 2. This recurrence means that if two consecutive numbers are added, the sum will give the value of the number that follows those two numbers. It is possible to make other sequences of numbers by changing the recurrence relation and keeping the same seeds. For example, changing the lucas sequence of L n = L n 1 +L n 2 by L n = L n 1 L n 2 will give: which is way different of : 2, 1, 2, 2, 4, 8, 32, 256, 8192, , 1, 3, 4, 7, 11, 18, 29, 47, 76, 123, 199, 322, 521,

5 Closed-form formula Some time after the discovery of the Fibonacci numbers, a functional expression has been found to generate the Fibonacci numbers. This closed-form formula has a direct relation with the Golden ratio ϕ. Indeed, when you divide F n by F n 1, it will give a result that tends to ϕ.[3] lim x F n F n 1 = ϕ Figure 2: Fibonacci numbers in the golden spiral It s the mathematician Jacques Philippe Marie Binet [4] that has found the functional expression to find the Fibonacci numbers. The Binet Formula: F n = ϕn (1 ϕ) n 5 This formula has been proved but the proof is actually very long and complicated, so the formula will be tried with a random Fibonacci number to see if it works: n = 8 F n = ϕn (1 ϕ) n 5 5

6 F 8 = ϕ8 (1 ϕ) 8 5 F 8 = 46, , F 8 = 21 3 Results Theorem on the number of seeds required We have discovered that to generate a sequence of numbers with a recurrence relation, there is a certain number of seeds required to start the sequence. Indeed, to generate the Fibonacci sequence of numbers, which has a recurrence relation of F n = F n 1 + F n 2, the number of seeds you need to start with is two. In the case of Fibonacci sequence, the seeds are S 0 = 0 and S 1 = 1. If you have a recurrence relation of G n = G n 1 +G n 3, you can t generate the sequence of number G with only two seeds. This is because, at the beginning of the sequence, you won t be able to generate the next number. Consequently, to add G n 1 and G n 3, you need at least three consecutive numbers. Indeed, we have found that to generate a sequence of numbers using a recurrence relation, the number of seeds required is equal to the biggest index of this recurrence relation. Theorem 1. In a recurrence relation G n = G n 1 + G n y, the number of seeds required will be y if y > 1. This discovery will be very useful for the computer program because it will tell us how many seeds we need to have to produce a sequence with a certain recurrence relation. 6

7 Recurrence Theorem This is one of our first discovery on the Fibonacci numbers. The sum of three consecutive numbers in the Fibonacci sequence, added by the sum of the three next consecutive numbers, gives the sum of the three next consecutive numbers. This expression can be written like this: (F n + F n+1 + F n+2 ) + (F n+1 + F n+2 + F n+3 ) = F n+2 + F n+3 + F n+4 From these additions you can make a new sequence of numbers. To start this sequence of numbers, you have to add the first three consecutive numbers of the Fibonacci sequence, which are F 1 = 1, F 2 = 1 and F 3 = 2. This will give the first number of the new sequence, that we will call G sequence. So G 1 = F 1 + F 2 + F 3. For the next numbers of the sequence, this simple formula can be applied G n = F n + F n+1 + F n+2. We can now write the sequence starting at G 1 : 4, 6, 10, 16, 26, 42, 68, 110, 178, 288,... From now on, you can easily see that this sequence of numbers uses the same recurrence relation than the Fibonacci sequence, which will be G n = G n 1 + G n 2. Also, if you continue the sequence further down, you can see that G 1 would be in reality G 3 and that the sequence has seeds of G 0 = 0 and G 1 = 2. This would be the complete sequence of numbers: 0, 2, 2,4, 6, 10, 16, 26, 42, 68, 110, 178, 288,... This discovery can be applied with the addition of four consecutive Fibonacci numbers, or five consecutive Fibonacci numbers, or even more of these numbers. In fact, this can be applied with whatever the quantity of consecutive numbers that you add of the Fibonacci sequence. In every case, these additions will give new sequences of numbers, that will all have the same recurrence relation of G n = G n 1 + G n 2, but having different seeds. The Recurrence theorem is the theorem that shows how all sequences that are made with addition of several consecutive numbers in Fibonacci sequence work. n is the quantity of consecutive Fibonacci numbers that you add to produce the sequence. c is the number of F that you start with. 7

8 Theorem 2. n+c 1 i=c F i + n+c i=c+1 F i = n+c+1 i=c+2 F i Indeed, the Recurrence theorem would be true n N and c N. Here is an example of the theorem by adding four consecutive Fibonacci numbers starting with F 2. n = 4 and c = i=2 F i + 5 F i + i=2 4+2 i=2+1 F i = 6 F i = i= i=2+2 (F 2 + F 3 + F 4 + F 5 ) + (F 3 + F 4 + F 5 + F 6 ) = F 4 + F 5 + F 6 + F = 29 The theorem can be proved by using the recurrence relation of the Fibonacci sequence F n = F n 1 + F n 2 : 7 i=4 F i F i Proof. n+c 1 i=c F i + n+c i=c+1 = (F c + F c F c+n 1 ) + (F c+1 + F c F c+n ) F i = F c + F c+1 + F c+n 1 + F c+1 + F c+2 + F c+n = F c+1 + 2F c+2 + F c+n 1 + F c+n = F c+2 + F c+3 + F c+n 1 + F c+n = F c+2 + F c F c+n+1 = n+c+1 i=c+2 F i 8

9 The Recurrence theorem can be even more generalized by applying it on other sequences than the Fibonacci sequence. In fact, we have found that the theorem works not only with the Fibonacci sequence of numbers, but with every sequence of numbers using the recurrence formula G n = G n 1 + G n 2, whatever the seeds are. Considering n and c are natural numbers, the Recurrence theorem is now: Theorem 3. n+c 1 i=c G i + n+c i=c+1 G i = n+c+1 i=c+2 G i Multiplication theorem We found an interesting relation in the Fibonacci sequence when the recurrence relation in change by: G n = G n 1 + 2G n 2 with the same seeds as Fibonacci: G 0 = 0, G 1 = 1. The sequence of numbers is given by: 0, 1, 1, 3, 5, 11, 21, 43, 85, 171, By analyzing this sequence, an interesting recurrence in the numbers can be seen. In fact, by adding all the numbers as a summation, we get the following number of the sequence. However, adding the previous number will not always give the number that follows. When the n = even number, it is always necessary to add 1 to the sum. The theorem that will give the number is given by: Theorem 4. n 1 if n is odd then G i + 1 n 1 if n is even then By using the induction method, we can prove that it is true n N: G i Proof. G 1 = G = 1 G 1 = 1 9

10 2k 2 we assume that G 2k 1 = 1 + then, 1 + 2k G 1 = 1 + 2k 2 = G 2k 1 + G 2k + G 2k 1 = G 2k + 2G 2k 1 G i G i + G 2k + G 2k 1 = G 2k+1 (the next odd number) It is possible to prove the theorem for even numbers: Proof. then, n 1 G n = suppose, G 2k = 2k 1 G i = 2k 2 G i 2k 1 G i G i + G 2k+1 = G 2k+1 + G 2k = G 2k+2 (the next even number) BCD.html BCD is a program created using the html interface and coded mainly in JavaScript. This program eases the calculations of the F n = af n 1 +bf n c sequence with multiple selectable seeds and selectable coefficients of a, b and c. You can also change the number of iterations the program calculates. The core mechanics of the program is based on a for() loop that repeats this formula for its number of times, depending on user input: Where a, b and c correspond to the coefficients in the initial formula. First we create an array called fib[]. In arrays you can organize data by position, 10

11 so if we have an array called: example (1,5,3,7), example[0] would correspond to the first number in the array, 1, example[1] would be the second, 5, and so on. To include seeds in the calculation, numbers are added beforehand in the fib[] array. When the for() loop calculates the fib[] array, it will use the initial data provided in the array to create the sequence. A for() loop executes code that is written in between the braces, while using the parameters provided in the (). In this case, the parameters are (i=c; i its; i++). These are fairly simple and guide the for() loop to proceed the following way : execute the code contained into braces for its number of times (default is 20 iterations), while using c number of seeds, which corresponds to the Theorem on the number of seeds required. After executing the formula, the next step is to push the calculated data in the fib[] array into the second array, sequence[] which contains the entire sequence. It is required to do this, since the data in the fib[] array is only temporary, and each time it loops around, it overwrites the old data with the next number in the sequence. On each calculation of the loop, the data is pushed into the second array, where everything is kept, and then later displayed on the text area.?when developing BCD.html, we encountered many problems perfecting the equations, user input formulas, display texts and the core mechanics. The first issue was to integrate the source equation into JavaScript. We knew little on how to proceed, but we used a for() loop to calculate the equation, since it permitted me to control certain parameters and the number of iterations the program pushed into the text area. After the equation integration was done, the core essentials were there, 11

12 Figure 3: BCD program we had 2 seeds, F 0 and F 1, a recurring formula, and an array containing the output of said formula. The next issue was displaying the results in the array to the user of the program. To do so we initially used a input box to display the results. The input box displays the results on only one line. It was fine for 20 or so iterations, but when you increased these iterations, the numbers would go out of the input box. That was not convenient at all, so we searched for a better way to display the results. TextArea was the answer. TextArea permitted me to arrange the data in a more efficient way, since we could code-in the number of columns and rows that we wanted. So now, unless you have over 300 iterations, the numbers will not go out of the TextArea. Next challenge was integrating a modifiable core formula with two coefficients and interchangeable seeds that are selectable by the user. The coefficients were easy to integrate because they can be assigned to variables that are added into the core formula. The seeds, on the other hand, required a lot of fiddling around to get them to work. Initially we thought that only adding more initial values to the array would do the trick, but that was not 12

13 working at all, completely corrupting the data. We forgot to change a parameter in the for() loop, and when we found that out, everything worked in harmony. Using the Theorem on the number of seeds required we could link directly the number of seeds required to the c coefficient. Lastly, when we finished the program, we decided to rewrite some parts of it into a more efficient code, by using more arrays and more for() loops for different parts of the program. Due to time constraints, we could not finish coding the more efficient code by time. But this affects in no way the accuracy, speed or the validity of the calculated data. To finish, our program contains a couple of limitations. First is the number of seeds available for the user to change. Currently, you can only change the first 20 seeds of the core formula. We could of coded more inputs, but the program would have displayed in a very disorganized manner, and so we decided to keep it to ten. If there is any need for more than 20 seeds, it is an easy fix. When displaying iterations, there are three problems; first is the when you have more than a couple hundred iterations displaying on the TextArea, the data goes out of bounds. Secondly, when working with very large numbers, JavaScript will display them in a similar fashion: e Obviously this number is out of our understandable reach of comprehension, and optimally, we would like the program to stop the iterations when these numbers start appearing, but that is out of my programing skills range. Lastly, the data doesnt show up in a nice, elegant vertical form, but rather in a horizontal form, separated by commas. Optimally, the data should be displayed with a line break after each number, but it is very complicated to integrate text-based string elements into integer-filled arrays. 4 Conclusion There are three main discoveries that we made during our researches. First of all, we found that there was a certain number of seeds that were required to make a sequence using a certain recurrence relation. In fact, this number corresponds to the biggest index of the recurrence relation. In a recurrence relation G n = G n 1 + G n y, the numbers of seeds required will always be y. 13

14 Secondly, we have found a theorem that is true for all sequences of numbers that use the same recurrence relation then the Fibonacci sequence G n = G n 1 + G n 2, whatever the seeds are. This theorem says that the of a quantity of consecutive numbers n, starting with the c number in the sequence, plus the of the same quantity of consecutive numbers, starting with the c + 1 number in the sequence, will give the of the same quantity of consecutive numbers, starting with the c + 2 number in the sequence. Thirdly, we have found an interesting theorem. When the Fibonacci recurrence relation is change for F n = F n 1 + 2F n 2. The sequence is given by the sum of each previous numbers and adding 1 to this summation when n is odd. Few problems were encountered in our researches. First of all, some proofs were hard to find. Specially the proof for the Multiplication theorem because of the induction method. The second part that caused problems was all the creation of pictures and diagrams and even to find a suitable location for those pictures and diagrams. Concerning the Recurrence theorem, there is a clear path for future investigations. The main goal would be to find another theorem that will generalize every sequence of numbers, whatever the recurrence relation and the seeds are. There is also a path of future investigation with the Multiplication theorem. By changing the seeds of the sequence used and by seeing if the theorem still works, there is a possibility to generalize it. Another path of future investigation on generalization would be to see what happens if in the recurrence relation you change the addition for a multiplication, and to try it with different seeds. 14

15 5 Acknowledgements We would like to thanks Maxime Desbiens for helping us with the beginning of our project. Indeed, he helped for the conceptualization of the Recurrence theorem. Also, we are thankful to Patrick St-Amant, who believed in us, and helped us with the proof of several conjectures. Finally, thanks to Tamara Snyder Caron for correcting some english mistakes. References [1] Boyer, Carl B.. A history of mathematics. New York: Wiley, [2] Ouaknin, Marc. Mystres des chiffres. Nouv. d. ed. Paris: Assouline, [3] Bernois, Jean. Le nombre d or. Paris: Trajectoire, [4] Cohen, Gilles. Grands mathematiciens modernes. Paris: Ed. Pole, [5] Fibonacci Number. mathworld. N.p., n.d. Web. 13 Feb mathworld.wolfram.com/fibonaccinumber [6] The Golden Ratio and Fibonacci Numbers Math is Fun - Maths Resources. N.p., n.d. Web. 14 Mar

Pascal triangle variation and its properties

Pascal triangle variation and its properties Pascal triangle variation and its properties Mathieu Parizeau-Hamel 18 february 2013 Abstract The goal of this work was to explore the possibilities harnessed in the the possible variations of the famous

More information

Question of the Day. Key Concepts. Vocabulary. Mathematical Ideas. QuestionofDay

Question of the Day. Key Concepts. Vocabulary. Mathematical Ideas. QuestionofDay QuestionofDay Question of the Day Using 1 1 square tiles and 1 2 dominoes, one can tile a 1 3 strip of squares three different ways. (Find them!) In how many different ways can one tile a 1 4 strip of

More information

Decrypting Fibonacci and Lucas Sequences. Contents

Decrypting Fibonacci and Lucas Sequences. Contents Contents Abstract Introduction 3 Chapter 1 U(n) Formula in 3 unknowns 7 Chapter Polynomial Expression of L(kn) in Terms of L(n) 19 Introduction of the Tables (Fibonacci Table, Lucas-Fibonacci Table and

More information

Ratio by Using Coefficients of Fibonacci Sequence

Ratio by Using Coefficients of Fibonacci Sequence International J.Math. Combin. Vol.3(2013), 96-103 Ratio by Using Coefficients of Fibonacci Sequence Megha Garg and Pertik Garg (Punjab Technical University, Jalanahar, Punjab) Ravinder Kumar (Bhai Gurdas

More information

Chapter 8: Recursion. March 10, 2008

Chapter 8: Recursion. March 10, 2008 Chapter 8: Recursion March 10, 2008 Outline 1 8.1 Recursively Defined Sequences 2 8.2 Solving Recurrence Relations by Iteration 3 8.4 General Recursive Definitions Recursively Defined Sequences As mentioned

More information

Advanced Counting Techniques

Advanced Counting Techniques . All rights reserved. Authorized only for instructor use in the classroom. No reproduction or further distribution permitted without the prior written consent of McGraw-Hill Education. Advanced Counting

More information

Reverse Fibonacci Segllence. found the Fibonacci sequence to be interesting and wanted to do something with it. First, when I

Reverse Fibonacci Segllence. found the Fibonacci sequence to be interesting and wanted to do something with it. First, when I Marie Neubrander October 19,2011 3B Mrs. Johnson Reverse Fibonacci Segllence I was prompted to do this project when in math this year we had to write a report about a mathematician of our choice. Some

More information

5. Sequences & Recursion

5. Sequences & Recursion 5. Sequences & Recursion Terence Sim 1 / 42 A mathematician, like a painter or poet, is a maker of patterns. Reading Sections 5.1 5.4, 5.6 5.8 of Epp. Section 2.10 of Campbell. Godfrey Harold Hardy, 1877

More information

Advanced Counting Techniques. Chapter 8

Advanced Counting Techniques. Chapter 8 Advanced Counting Techniques Chapter 8 Chapter Summary Applications of Recurrence Relations Solving Linear Recurrence Relations Homogeneous Recurrence Relations Nonhomogeneous Recurrence Relations Divide-and-Conquer

More information

n F(n) 2n F(2n) Here are some values of the series in comparison to Fibonacci number:

n F(n) 2n F(2n) Here are some values of the series in comparison to Fibonacci number: I did my exploration on Lucas numbers because different series fascinate me and it was related to the Fibonacci numbers which is pretty well known to all the mathematicians across the world so I wanted

More information

Pascal s Triangle Introduction!

Pascal s Triangle Introduction! Math 0 Section 2A! Page! 209 Eitel Section 2A Lecture Pascal s Triangle Introduction! A Rich Source of Number Patterns Many interesting number patterns can be found in Pascal's Triangle. This pattern was

More information

MATH 402 : 2017 page 1 of 6

MATH 402 : 2017 page 1 of 6 ADMINISTRATION What? Math 40: Enumerative Combinatorics Who? Me: Professor Greg Smith You: students interested in combinatorics When and Where? lectures: slot 00 office hours: Tuesdays at :30 6:30 and

More information

Leonardo Fibonacci. made his entrance into the world around He was born in the humble city of Pisa, Italy

Leonardo Fibonacci. made his entrance into the world around He was born in the humble city of Pisa, Italy John Townsend Dr. Shanyu Ji Math 4388 15 October 2017 Leonardo Fibonacci Regarded as one of the greatest mathematician of the Middle Ages, Leonardo Pisano made his entrance into the world around 1175.

More information

Power series and Taylor series

Power series and Taylor series Power series and Taylor series D. DeTurck University of Pennsylvania March 29, 2018 D. DeTurck Math 104 002 2018A: Series 1 / 42 Series First... a review of what we have done so far: 1 We examined series

More information

Math 475, Problem Set #8: Answers

Math 475, Problem Set #8: Answers Math 475, Problem Set #8: Answers A. Brualdi, problem, parts (a), (b), and (d). (a): As n goes from to 6, the sum (call it h n ) takes on the values,, 8, 2, 55, and 44; we recognize these as Fibonacci

More information

O Notation (Big Oh) We want to give an upper bound on the amount of time it takes to solve a problem.

O Notation (Big Oh) We want to give an upper bound on the amount of time it takes to solve a problem. O Notation (Big Oh) We want to give an upper bound on the amount of time it takes to solve a problem. defn: v(n) = O(f(n)) constants c and n 0 such that v(n) c f(n) whenever n > n 0 Termed complexity:

More information

SEQUENCES M.K. HOME TUITION. Mathematics Revision Guides Level: GCSE Higher Tier

SEQUENCES M.K. HOME TUITION. Mathematics Revision Guides Level: GCSE Higher Tier Mathematics Revision Guides Sequences Page 1 of 12 M.K. HOME TUITION Mathematics Revision Guides Level: GCSE Higher Tier SEQUENCES Version: 3.1 Date: 11-02-2019 Mathematics Revision Guides Sequences Page

More information

Linear Programming and its Extensions Prof. Prabha Shrama Department of Mathematics and Statistics Indian Institute of Technology, Kanpur

Linear Programming and its Extensions Prof. Prabha Shrama Department of Mathematics and Statistics Indian Institute of Technology, Kanpur Linear Programming and its Extensions Prof. Prabha Shrama Department of Mathematics and Statistics Indian Institute of Technology, Kanpur Lecture No. # 03 Moving from one basic feasible solution to another,

More information

When is a number Fibonacci?

When is a number Fibonacci? When is a number Fibonacci? Phillip James Department of Computer Science, Swansea University March 6, 009 Abstract This article looks into the importance of the Fibonacci numbers within Computer Science,

More information

Fibonacci Numbers. By: Sara Miller Advisor: Dr. Mihai Caragiu

Fibonacci Numbers. By: Sara Miller Advisor: Dr. Mihai Caragiu Fibonacci Numbers By: Sara Miller Advisor: Dr. Mihai Caragiu Abstract We will investigate various ways of proving identities involving Fibonacci Numbers, such as, induction, linear algebra (matrices),

More information

Application of the Fibonacci Numbers to Mathematical Problems

Application of the Fibonacci Numbers to Mathematical Problems Application of the Fibonacci Numbers to Mathematical Problems Saipin Rakkratok 1 (plamyfon@gmail.com) Apichai Hematulin 2 (api9904@yahoo.com) Jessada Tanthanuch 3 (jessada@g.sut.ac.th) Abstract The Fibonacci

More information

Lecture 8: Phyllotaxis, the golden ratio and the Fibonacci sequence

Lecture 8: Phyllotaxis, the golden ratio and the Fibonacci sequence The 77 th Compton lecture series Frustrating geometry: Geometry and incompatibility shaping the physical world Lecture 8: Phyllotaxis, the golden ratio and the Fibonacci sequence Efi Efrati Simons postdoctoral

More information

1 Sequences and Series

1 Sequences and Series Sequences and Series. Introduction What is a sequence? What is a series? Very simply a sequence is an infinite list of things. Normally we consider now only lists of numbers - so thus, the list of all

More information

{ 0! = 1 n! = n(n 1)!, n 1. n! =

{ 0! = 1 n! = n(n 1)!, n 1. n! = Summations Question? What is the sum of the first 100 positive integers? Counting Question? In how many ways may the first three horses in a 10 horse race finish? Multiplication Principle: If an event

More information

Ross Program 2017 Application Problems

Ross Program 2017 Application Problems Ross Program 2017 Application Problems This document is part of the application to the Ross Mathematics Program, and is posted at http://u.osu.edu/rossmath/. The Admission Committee will start reading

More information

Ex. Here's another one. We want to prove that the sum of the cubes of the first n natural numbers is. n = n 2 (n+1) 2 /4.

Ex. Here's another one. We want to prove that the sum of the cubes of the first n natural numbers is. n = n 2 (n+1) 2 /4. Lecture One type of mathematical proof that goes everywhere is mathematical induction (tb 147). Induction is essentially used to show something is true for all iterations, i, of a sequence, where i N.

More information

1 A first example: detailed calculations

1 A first example: detailed calculations MA4 Handout # Linear recurrence relations Robert Harron Wednesday, Nov 8, 009 This handout covers the material on solving linear recurrence relations It starts off with an example that goes through detailed

More information

Running Head: BONACCI REVOLUTIONIZED THE WORLD 1

Running Head: BONACCI REVOLUTIONIZED THE WORLD 1 Running Head: BONACCI REVOLUTIONIZED THE WORLD 1 Bonacci Revolutionized the World A Review of the Fibonacci Numbers Sapphire Ortega El Paso Community College Author Note This paper was prepared for Math

More information

Quiz 1 Solutions. Problem 2. Asymptotics & Recurrences [20 points] (3 parts)

Quiz 1 Solutions. Problem 2. Asymptotics & Recurrences [20 points] (3 parts) Introduction to Algorithms October 13, 2010 Massachusetts Institute of Technology 6.006 Fall 2010 Professors Konstantinos Daskalakis and Patrick Jaillet Quiz 1 Solutions Quiz 1 Solutions Problem 1. We

More information

Thesis submitted in partial fulfillment of the requirement for The award of the degree of. Masters of Science in Mathematics and Computing

Thesis submitted in partial fulfillment of the requirement for The award of the degree of. Masters of Science in Mathematics and Computing SOME n-color COMPOSITION Thesis submitted in partial fulfillment of the requirement for The award of the degree of Masters of Science in Mathematics and Computing Submitted by Shelja Ratta Roll no- 301203014

More information

Fibonacci Numbers in Daily Life

Fibonacci Numbers in Daily Life Fibonacci Numbers in Daily Life Yining Lin, Wangchun Peng, Huiia Chen, Ya Liu Abstract Fibonacci sequence was first introduced by an Italian mathematician Fibonacci in his book Liber Abaci. People named

More information

Real Analysis Prof. S.H. Kulkarni Department of Mathematics Indian Institute of Technology, Madras. Lecture - 13 Conditional Convergence

Real Analysis Prof. S.H. Kulkarni Department of Mathematics Indian Institute of Technology, Madras. Lecture - 13 Conditional Convergence Real Analysis Prof. S.H. Kulkarni Department of Mathematics Indian Institute of Technology, Madras Lecture - 13 Conditional Convergence Now, there are a few things that are remaining in the discussion

More information

The Fibonacci Sequence

The Fibonacci Sequence Elvis Numbers Elvis the Elf skips up a flight of numbered stairs, starting at step 1 and going up one or two steps with each leap Along with an illustrious name, Elvis parents have endowed him with an

More information

Lecture 10: Powers of Matrices, Difference Equations

Lecture 10: Powers of Matrices, Difference Equations Lecture 10: Powers of Matrices, Difference Equations Difference Equations A difference equation, also sometimes called a recurrence equation is an equation that defines a sequence recursively, i.e. each

More information

Magic of numbers and Fibonacci Sequence. March 10, 2018 Mathematics Circle

Magic of numbers and Fibonacci Sequence. March 10, 2018 Mathematics Circle Magic of numbers and Fibonacci Sequence March 10, 2018 Mathematics Circle Natural Numbers Kronecker, the German Mathematician said the following: GOD CREATED THE NATURAL NUMBERS, THE REST ARE MAN S HANDIWORK

More information

1 Sequences and Summation

1 Sequences and Summation 1 Sequences and Summation A sequence is a function whose domain is either all the integers between two given integers or all the integers greater than or equal to a given integer. For example, a m, a m+1,...,

More information

MATH 324 Summer 2011 Elementary Number Theory. Notes on Mathematical Induction. Recall the following axiom for the set of integers.

MATH 324 Summer 2011 Elementary Number Theory. Notes on Mathematical Induction. Recall the following axiom for the set of integers. MATH 4 Summer 011 Elementary Number Theory Notes on Mathematical Induction Principle of Mathematical Induction Recall the following axiom for the set of integers. Well-Ordering Axiom for the Integers If

More information

LECSS Physics 11 Introduction to Physics and Math Methods 1 Revised 8 September 2013 Don Bloomfield

LECSS Physics 11 Introduction to Physics and Math Methods 1 Revised 8 September 2013 Don Bloomfield LECSS Physics 11 Introduction to Physics and Math Methods 1 Physics 11 Introduction to Physics and Math Methods In this introduction, you will get a more in-depth overview of what Physics is, as well as

More information

4 Linear Recurrence Relations & the Fibonacci Sequence

4 Linear Recurrence Relations & the Fibonacci Sequence 4 Linear Recurrence Relations & the Fibonacci Sequence Recall the classic example of the Fibonacci sequence (F n ) n=1 the relations: F n+ = F n+1 + F n F 1 = F = 1 = (1, 1,, 3, 5, 8, 13, 1,...), defined

More information

GROWTH MINDSTS IN MATHEMATICS AND IMPLEMENTING THE NEW NEW JERSEY MATHEMATICS STANDARDS OCTOBER 26-27, 2017

GROWTH MINDSTS IN MATHEMATICS AND IMPLEMENTING THE NEW NEW JERSEY MATHEMATICS STANDARDS OCTOBER 26-27, 2017 THE 2017 AMTNJ 27 TH ANNUAL CONFERENCE GROWTH MINDSTS IN MATHEMATICS AND IMPLEMENTING THE NEW NEW JERSEY MATHEMATICS STANDARDS OCTOBER 26-27, 2017 THE NATIONAL CONFERENCE CENTER AND THE HOLIDAY INN HOTEL

More information

MI 4 Mathematical Induction Name. Mathematical Induction

MI 4 Mathematical Induction Name. Mathematical Induction Mathematical Induction It turns out that the most efficient solution to the Towers of Hanoi problem with n disks takes n 1 moves. If this isn t the formula you determined, make sure to check your data

More information

Introduction to Lucas Sequences

Introduction to Lucas Sequences A talk given at Liaoning Normal Univ. (Dec. 14, 017) Introduction to Lucas Sequences Zhi-Wei Sun Nanjing University Nanjing 10093, P. R. China zwsun@nju.edu.cn http://math.nju.edu.cn/ zwsun Dec. 14, 017

More information

Lecture 8 : Structural Induction DRAFT

Lecture 8 : Structural Induction DRAFT CS/Math 240: Introduction to Discrete Mathematics 2/15/2011 Lecture 8 : Structural Induction Instructor: Dieter van Melkebeek Scribe: Dalibor Zelený DRAFT Last week we discussed proofs by induction. We

More information

FIFTH ROOTS OF FIBONACCI FRACTIONS. Christopher P. French Grinnell College, Grinnell, IA (Submitted June 2004-Final Revision September 2004)

FIFTH ROOTS OF FIBONACCI FRACTIONS. Christopher P. French Grinnell College, Grinnell, IA (Submitted June 2004-Final Revision September 2004) Christopher P. French Grinnell College, Grinnell, IA 0112 (Submitted June 2004-Final Revision September 2004) ABSTRACT We prove that when n is odd, the continued fraction expansion of Fn+ begins with a

More information

Solving Recurrence Relations 1. Guess and Math Induction Example: Find the solution for a n = 2a n 1 + 1, a 0 = 0 We can try finding each a n : a 0 =

Solving Recurrence Relations 1. Guess and Math Induction Example: Find the solution for a n = 2a n 1 + 1, a 0 = 0 We can try finding each a n : a 0 = Solving Recurrence Relations 1. Guess and Math Induction Example: Find the solution for a n = 2a n 1 + 1, a 0 = 0 We can try finding each a n : a 0 = 0 a 1 = 2 0 + 1 = 1 a 2 = 2 1 + 1 = 3 a 3 = 2 3 + 1

More information

Discrete Structures Lecture Sequences and Summations

Discrete Structures Lecture Sequences and Summations Introduction Good morning. In this section we study sequences. A sequence is an ordered list of elements. Sequences are important to computing because of the iterative nature of computer programs. The

More information

COM S 330 Lecture Notes Week of Feb 9 13

COM S 330 Lecture Notes Week of Feb 9 13 Monday, February 9. Rosen.4 Sequences Reading: Rosen.4. LLM 4.. Ducks 8., 8., Def: A sequence is a function from a (usually infinite) subset of the integers (usually N = {0,,, 3,... } or Z + = {,, 3, 4,...

More information

Math 345 Intro to Math Biology Lecture 1: Biological Models using Difference Equations

Math 345 Intro to Math Biology Lecture 1: Biological Models using Difference Equations Math 345 Intro to Math Biology Lecture 1: Biological Models using Difference Equations Junping Shi College of William and Mary, USA Population of James City County, Virginia Population is often recorded

More information

35 Chapter CHAPTER 4: Mathematical Proof

35 Chapter CHAPTER 4: Mathematical Proof 35 Chapter 4 35 CHAPTER 4: Mathematical Proof Faith is different from proof; the one is human, the other is a gift of God. Justus ex fide vivit. It is this faith that God Himself puts into the heart. 21

More information

Every subset of {1, 2,...,n 1} can be extended to a subset of {1, 2, 3,...,n} by either adding or not adding the element n.

Every subset of {1, 2,...,n 1} can be extended to a subset of {1, 2, 3,...,n} by either adding or not adding the element n. 11 Recurrences A recurrence equation or recurrence counts things using recursion. 11.1 Recurrence Equations We start with an example. Example 11.1. Find a recurrence for S(n), the number of subsets of

More information

The mighty zero. Abstract

The mighty zero. Abstract The mighty zero Rintu Nath Scientist E Vigyan Prasar, Department of Science and Technology, Govt. of India A 50, Sector 62, NOIDA 201 309 rnath@vigyanprasar.gov.in rnath07@gmail.com Abstract Zero is a

More information

CS1800: Sequences & Sums. Professor Kevin Gold

CS1800: Sequences & Sums. Professor Kevin Gold CS1800: Sequences & Sums Professor Kevin Gold Moving Toward Analysis of Algorithms Today s tools help in the analysis of algorithms. We ll cover tools for deciding what equation best fits a sequence of

More information

Pascal s Triangle. Jean-Romain Roy. February, 2013

Pascal s Triangle. Jean-Romain Roy. February, 2013 Pascal s Triangle Jean-Romain Roy February, 2013 Abstract In this paper, I investigate the hidden beauty of the Pascals triangle. This arithmetical object as proved over the year to encompass seemingly

More information

12 Sequences and Recurrences

12 Sequences and Recurrences 12 Sequences and Recurrences A sequence is just what you think it is. It is often given by a formula known as a recurrence equation. 12.1 Arithmetic and Geometric Progressions An arithmetic progression

More information

Math 324 Summer 2012 Elementary Number Theory Notes on Mathematical Induction

Math 324 Summer 2012 Elementary Number Theory Notes on Mathematical Induction Math 4 Summer 01 Elementary Number Theory Notes on Mathematical Induction Principle of Mathematical Induction Recall the following axiom for the set of integers. Well-Ordering Axiom for the Integers If

More information

Grade 7/8 Math Circles. Continued Fractions

Grade 7/8 Math Circles. Continued Fractions Faculty of Mathematics Waterloo, Ontario N2L 3G Centre for Education in Mathematics and Computing A Fraction of our History Grade 7/8 Math Circles October th /2 th Continued Fractions Love it or hate it,

More information

Europe Starts to Wake up: Leonardo of Pisa

Europe Starts to Wake up: Leonardo of Pisa Europe Starts to Wake up: Leonardo of Pisa Leonardo of Pisa, also known as Fibbonaci (from filius Bonaccia, son of Bonnaccio ) was the greatest mathematician of the middle ages. He lived from 75 to 50,

More information

Conjectures and proof. Book page 24-30

Conjectures and proof. Book page 24-30 Conjectures and proof Book page 24-30 What is a conjecture? A conjecture is used to describe a pattern in mathematical terms When a conjecture has been proved, it becomes a theorem There are many types

More information

Reading 5 : Induction

Reading 5 : Induction CS/Math 40: Introduction to Discrete Mathematics Fall 015 Instructors: Beck Hasti and Gautam Prakriya Reading 5 : Induction In the last reading we began discussing proofs. We mentioned some proof paradigms

More information

Fibonacci (Leonardo Pisano) ? Statue in Pisa Italy FIBONACCI NUMBERS GOLDEN RATIO, RECURRENCES

Fibonacci (Leonardo Pisano) ? Statue in Pisa Italy FIBONACCI NUMBERS GOLDEN RATIO, RECURRENCES Fibonacci (Leonardo Pisano) 1170-1240? Statue in Pisa Italy FIBONACCI NUMBERS GOLDEN RATIO, RECURRENCES Lecture 23 CS2110 Fall 2016 Prelim tonight 2 You know already whether you are taking it at 5:30 or

More information

CS1800: Strong Induction. Professor Kevin Gold

CS1800: Strong Induction. Professor Kevin Gold CS1800: Strong Induction Professor Kevin Gold Mini-Primer/Refresher on Unrelated Topic: Limits This is meant to be a problem about reasoning about quantifiers, with a little practice of other skills, too

More information

Exponents and Logarithms

Exponents and Logarithms chapter 5 Starry Night, painted by Vincent Van Gogh in 1889. The brightness of a star as seen from Earth is measured using a logarithmic scale. Exponents and Logarithms This chapter focuses on understanding

More information

Chapter 1. Foundations of GMAT Math. Arithmetic

Chapter 1. Foundations of GMAT Math. Arithmetic Chapter of Foundations of GMAT Math In This Chapter Quick-Start Definitions Basic Numbers Greater Than and Less Than Adding and Subtracting Positives and Negatives Multiplying and Dividing Distributing

More information

arxiv: v1 [math.ho] 28 Jul 2017

arxiv: v1 [math.ho] 28 Jul 2017 Generalized Fibonacci Sequences and Binet-Fibonacci Curves arxiv:1707.09151v1 [math.ho] 8 Jul 017 Merve Özvatan and Oktay K. Pashaev Department of Mathematics Izmir Institute of Technology Izmir, 35430,

More information

Chapter 5: Sequences, Mathematic Induction, and Recursion

Chapter 5: Sequences, Mathematic Induction, and Recursion Chapter 5: Sequences, Mathematic Induction, and Recursion Hao Zheng Department of Computer Science and Engineering University of South Florida Tampa, FL 33620 Email: zheng@cse.usf.edu Phone: (813)974-4757

More information

Grades 7 & 8, Math Circles 10/11/12 October, Series & Polygonal Numbers

Grades 7 & 8, Math Circles 10/11/12 October, Series & Polygonal Numbers Faculty of Mathematics Waterloo, Ontario N2L G Centre for Education in Mathematics and Computing Introduction Grades 7 & 8, Math Circles 0//2 October, 207 Series & Polygonal Numbers Mathematicians are

More information

Example If the function for a sequence is f (n) = 2n 1 then the values are found by substituting the domain values into the function in order

Example If the function for a sequence is f (n) = 2n 1 then the values are found by substituting the domain values into the function in order Section 12 1A: Sequences A sequence is a function whose domain is the positive integers Z +. Z + represents the counting numbers 1, 2, 3, 4, 5, 6, 7,... We use the letter n to represent the domain of the

More information

Take the Anxiety Out of Word Problems

Take the Anxiety Out of Word Problems Take the Anxiety Out of Word Problems I find that students fear any problem that has words in it. This does not have to be the case. In this chapter, we will practice a strategy for approaching word problems

More information

Primes in Spirals. Cassie Gribble. A Thesis Submitted to the Faculty of the DEPARTMENT OF MATHEMATICS

Primes in Spirals. Cassie Gribble. A Thesis Submitted to the Faculty of the DEPARTMENT OF MATHEMATICS Primes in Spirals By Cassie Gribble A Thesis Submitted to the Faculty of the DEPARTMENT OF MATHEMATICS In Partial Fulfillment of the Requirements For the Degree of MASTER OF MIDDLE SCHOOL MATHEMATICS LEADERSHIP

More information

Algoritmi di Bioinformatica. Computational efficiency I

Algoritmi di Bioinformatica. Computational efficiency I Algoritmi di Bioinformatica Zsuzsanna Lipták Laurea Magistrale Bioinformatica e Biotechnologie Mediche (LM9) a.a. 2014/15, spring term Computational efficiency I 2 / 18 Computational Efficiency As we will

More information

All About Numbers Definitions and Properties

All About Numbers Definitions and Properties All About Numbers Definitions and Properties Number is a numeral or group of numerals. In other words it is a word or symbol, or a combination of words or symbols, used in counting several things. Types

More information

Fermat s Little Theorem. Fermat s little theorem is a statement about primes that nearly characterizes them.

Fermat s Little Theorem. Fermat s little theorem is a statement about primes that nearly characterizes them. Fermat s Little Theorem Fermat s little theorem is a statement about primes that nearly characterizes them. Theorem: Let p be prime and a be an integer that is not a multiple of p. Then a p 1 1 (mod p).

More information

Some Review Problems for Exam 2: Solutions

Some Review Problems for Exam 2: Solutions Math 5366 Fall 017 Some Review Problems for Exam : Solutions 1 Find the coefficient of x 15 in each of the following: 1 (a) (1 x) 6 Solution: 1 (1 x) = ( ) k + 5 x k 6 k ( ) ( ) 0 0 so the coefficient

More information

The Fibonacci Sequence

The Fibonacci Sequence The Fibonacci Sequence MATH 100 Survey of Mathematical Ideas J. Robert Buchanan Department of Mathematics Summer 2018 The Fibonacci Sequence In 1202 Leonardo of Pisa (a.k.a Fibonacci) wrote a problem in

More information

SEQUENCES, MATHEMATICAL INDUCTION, AND RECURSION

SEQUENCES, MATHEMATICAL INDUCTION, AND RECURSION CHAPTER 5 SEQUENCES, MATHEMATICAL INDUCTION, AND RECURSION Alessandro Artale UniBZ - http://www.inf.unibz.it/ artale/ SECTION 5.6 Defining Sequences Recursively Copyright Cengage Learning. All rights reserved.

More information

Characteristics of Fibonacci-type Sequences

Characteristics of Fibonacci-type Sequences Characteristics of Fibonacci-tye Sequences Yarden Blausa May 018 Abstract This aer resents an exloration of the Fibonacci sequence, as well as multi-nacci sequences and the Lucas sequence. We comare and

More information

Exploration of Fibonacci function Prof. K. Raja Rama Gandhi

Exploration of Fibonacci function Prof. K. Raja Rama Gandhi Bulletin of Mathematical Sciences and Applications Online: 2012-08-01 ISSN: 2278-9634, Vol. 1, pp 57-62 doi:10.18052/www.scipress.com/bmsa.1.57 2012 SciPress Ltd., Switzerland Keywords: Fibonacci function,

More information

MCR3U Unit 7 Lesson Notes

MCR3U Unit 7 Lesson Notes 7.1 Arithmetic Sequences Sequence: An ordered list of numbers identified by a pattern or rule that may stop at some number or continue indefinitely. Ex. 1, 2, 4, 8,... Ex. 3, 7, 11, 15 Term (of a sequence):

More information

ON SUMS AND RECIPROCAL SUM OF GENERALIZED FIBONACCI NUMBERS BISHNU PADA MANDAL. Master of Science in Mathematics

ON SUMS AND RECIPROCAL SUM OF GENERALIZED FIBONACCI NUMBERS BISHNU PADA MANDAL. Master of Science in Mathematics ON SUMS AND RECIPROCAL SUM OF GENERALIZED FIBONACCI NUMBERS A report submitted by BISHNU PADA MANDAL Roll No: 42MA2069 for the partial fulfilment for the award of the degree of Master of Science in Mathematics

More information

Complex Numbers: A Brief Introduction. By: Neal Dempsey. History of Mathematics. Prof. Jennifer McCarthy. July 16, 2010

Complex Numbers: A Brief Introduction. By: Neal Dempsey. History of Mathematics. Prof. Jennifer McCarthy. July 16, 2010 1 Complex Numbers: A Brief Introduction. By: Neal Dempsey History of Mathematics Prof. Jennifer McCarthy July 16, 2010 2 Abstract Complex numbers, although confusing at times, are one of the most elegant

More information

Introduction. An Introduction to Algorithms and Data Structures

Introduction. An Introduction to Algorithms and Data Structures Introduction An Introduction to Algorithms and Data Structures Overview Aims This course is an introduction to the design, analysis and wide variety of algorithms (a topic often called Algorithmics ).

More information

Egyptian Fractions: Part I

Egyptian Fractions: Part I Egyptian Fractions: Part I Prepared by: Eli Jaffe October 8, 2017 1 Cutting Cakes 1. Imagine you are a teacher. Your class of 10 students is on a field trip to the bakery. At the end of the tour, the baker

More information

Introduction to Algebra: The First Week

Introduction to Algebra: The First Week Introduction to Algebra: The First Week Background: According to the thermostat on the wall, the temperature in the classroom right now is 72 degrees Fahrenheit. I want to write to my friend in Europe,

More information

Day 1: Over + Over Again

Day 1: Over + Over Again Welcome to Morning Math! The current time is... huh, that s not right. Day 1: Over + Over Again Welcome to PCMI! We know you ll learn a great deal of mathematics here maybe some new tricks, maybe some

More information

(Refer Slide Time: )

(Refer Slide Time: ) Digital Signal Processing Prof. S. C. Dutta Roy Department of Electrical Engineering Indian Institute of Technology, Delhi FIR Lattice Synthesis Lecture - 32 This is the 32nd lecture and our topic for

More information

Learning Objectives

Learning Objectives Learning Objectives Learn about recurrence relations Learn the relationship between sequences and recurrence relations Explore how to solve recurrence relations by iteration Learn about linear homogeneous

More information

than meets the eye. Without the concept of zero, math as we know it would be far less

than meets the eye. Without the concept of zero, math as we know it would be far less History of Math Essay 1 Kimberly Hannusch The Origin of Zero Many people don t think twice about the number zero. It s just nothing, after all. Isn t it? Though the simplest numerical value of zero may

More information

Biostatistics and Design of Experiments Prof. Mukesh Doble Department of Biotechnology Indian Institute of Technology, Madras

Biostatistics and Design of Experiments Prof. Mukesh Doble Department of Biotechnology Indian Institute of Technology, Madras Biostatistics and Design of Experiments Prof. Mukesh Doble Department of Biotechnology Indian Institute of Technology, Madras Lecture - 39 Regression Analysis Hello and welcome to the course on Biostatistics

More information

Sequences and infinite series

Sequences and infinite series Sequences and infinite series D. DeTurck University of Pennsylvania March 29, 208 D. DeTurck Math 04 002 208A: Sequence and series / 54 Sequences The lists of numbers you generate using a numerical method

More information

Situation: Summing the Natural Numbers

Situation: Summing the Natural Numbers Situation: Summing the Natural Numbers Prepared at Penn State University Mid-Atlantic Center for Mathematics Teaching and Learning 14 July 005 Shari and Anna Edited at University of Georgia Center for

More information

Lecture 1 - Preliminaries

Lecture 1 - Preliminaries Advanced Algorithms Floriano Zini Free University of Bozen-Bolzano Faculty of Computer Science Academic Year 2013-2014 Lecture 1 - Preliminaries 1 Typography vs algorithms Johann Gutenberg (c. 1398 February

More information

arxiv: v1 [math.nt] 20 Mar 2017

arxiv: v1 [math.nt] 20 Mar 2017 On certain ratios regarding integer numbers which are both triangulars and squares arxiv:1703.06701v1 [math.nt] 0 Mar 017 Fabio Roman Abstract We investigate integer numbers which possess at the same time

More information

Unit 5: Sequences, Series, and Patterns

Unit 5: Sequences, Series, and Patterns Unit 5: Sequences, Series, and Patterns Section 1: Sequences and Series 1. Sequence: an ordered list of numerical terms 2. Finite Sequence: has a first term (a beginning) and a last term (an end) 3. Infinite

More information

Math 11 Foundations: Unit 1 - Logic. Unit 1: Logic

Math 11 Foundations: Unit 1 - Logic. Unit 1: Logic Unit 1: Logic 1.4 Deductive Reasoning Inductive reasoning is not a of anything except for possibilities that you tested. There could always be a just around the corner. In order to prove that something

More information

Written Assignment 2 Fibonacci Sequence

Written Assignment 2 Fibonacci Sequence Written Assignment Fibonacci Sequence Banana Slug (Put Your Name here) University of California at Santa Cruz Santa Cruz, CA 9064 USA September, 018 (Write your own abstract.) Abstract 1 Introduction.

More information

Reading and Writing. Mathematical Proofs. Slides by Arthur van Goetham

Reading and Writing. Mathematical Proofs. Slides by Arthur van Goetham Reading and Writing Mathematical Proofs Slides by Arthur van Goetham What is a proof? Why explanations are not proofs What is a proof? A method for establishing truth What establishes truth depends on

More information

SEVENTH EDITION and EXPANDED SEVENTH EDITION

SEVENTH EDITION and EXPANDED SEVENTH EDITION SEVENTH EDITION and EXPANDED SEVENTH EDITION Slide 5-1 Chapter 5 Number Theory and the Real Number System 5.1 Number Theory Number Theory The study of numbers and their properties. The numbers we use to

More information

Chapter12. Relations, Functions, and Induction

Chapter12. Relations, Functions, and Induction . Relations. Functions. Seuences.4 Mathematical Induction.5 Recurrence Relations Chapter Review Chapter Relations, Functions, and Induction In this chapter we introduce the concepts of a relation and a

More information

Adding and Subtracting Terms

Adding and Subtracting Terms Adding and Subtracting Terms 1.6 OBJECTIVES 1.6 1. Identify terms and like terms 2. Combine like terms 3. Add algebraic expressions 4. Subtract algebraic expressions To find the perimeter of (or the distance

More information

Egyptian Fractions: Part I

Egyptian Fractions: Part I Egyptian Fractions: Part I Prepared by: Eli Jaffe October 8, 2017 1 Cutting Cakes 1. Imagine you are a teacher. Your class of 10 students is on a field trip to the bakery. At the end of the tour, the baker

More information