Warm-up Simple methods Linear recurrences. Solving recurrences. Misha Lavrov. ARML Practice 2/2/2014

Size: px
Start display at page:

Download "Warm-up Simple methods Linear recurrences. Solving recurrences. Misha Lavrov. ARML Practice 2/2/2014"

Transcription

1 Solving recurrences Misha Lavrov ARML Practice 2/2/2014

2 Warm-up / Review 1 Compute 100 k=2 ( 1 1 ) ( = 1 1 ) ( 1 1 ) ( 1 1 ). k Compute 100 k=2 ( 1 1 ) k 2. Homework: find and solve problem Algebra #7 from the February 2009 HMMT.

3 Warm-up / Review Solutions 1 Write 1 1 k k 1 as k. Then the product becomes Except for the 1 and the 100, every number occurs once in the numerator and once in the denominator, so the final answer is Write 1 1 k 2 ( as k2 1 k 2 ) ( = k 1 k k+1 k ) ( Then the product becomes ) ( ). 100 The second factor of each term is the reciprocal of the first factor of the next. Therefore the adjacent factors cancel, leaving only =

4 Three methods for solving recurrences Method 1: Guess and check Problem If a n = 2a n and a 0 = 0, find a formula for a n.

5 Three methods for solving recurrences Method 1: Guess and check Problem If a n = 2a n and a 0 = 0, find a formula for a n. 1 Find the first few values of a n : 0, 1, 3, 7, 15,... 2 Guess a formula: a n = 2 n 1. 3 We can prove this: { 2 n 1 = 2(2 n 1 1) + 1, = 0.

6 Three methods for solving recurrences Method 2: Convert to a sum Problem If a n = 2a n and a 0 = 0, find a formula for a n. 1 Divide by a suitable function for step 2 to work. a n 2 n = a n 1 2 n n. 2 Make a substitution to write the recurrence as s n = s n s n = s n n where s n = a n 2 n. 3 Solve for s n and reverse the substitution. n 1 s n = k = n a n = 2 n s n = 2 n 1. k=1

7 Three methods for solving recurrences Method 3: Convert to a product Problem If a n = 2a n and a 0 = 0, find a formula for a n. 1 Add or subtract something that makes step 2 work. a n + 1 = 2a n = 2(a n 1 + 1). 2 Make a substitution to write the recurrence as p n =? p n 1. p n = 2p n 1 where p n = a n Solve for p n and reverse the substitution. p n = 2 n p 0 = 2 n a n = p n 1 = 2 n 1.

8 Exercises 1 Solve the recurrences: x n = 2x n n, x 0 = 0. y n = 3y n 1 + 2n 1, y 0 = 0. z n = 3z 2 n 1, z 0 = 1. 2 In preparation for the next topic, solve the recurrence a n = a n 1 + 2a n 2 with a 0 = 2 and a 1 = 1.

9 Exercises Solutions: # 1 We solve x n by the method of sums. Dividing by 2 n, we get x n 2 n = x n 1 2 n This leads to the recurrence s n = s n 1 + 1, with s 0 = 0, where s n = x n /2 n. This is easy to solve: s n = n. Therefore x n = n 2 n.

10 Exercises Solutions: # 1 We solve x n by the method of sums. Dividing by 2 n, we get x n 2 n = x n 1 2 n This leads to the recurrence s n = s n 1 + 1, with s 0 = 0, where s n = x n /2 n. This is easy to solve: s n = n. Therefore x n = n 2 n. We solve y n by the method of products. Add n + 1 to both sides and factor to get y n + n + 1 = 3(y n 1 + n). This means that for p n = y n + n + 1 we have the recurrence p 0 = 1 and p n = 3p n 1, so p n = 3 n and therefore y n = 3 n n 1.

11 Exercises Solutions: # 1 We solve x n by the method of sums. Dividing by 2 n, we get x n 2 n = x n 1 2 n This leads to the recurrence s n = s n 1 + 1, with s 0 = 0, where s n = x n /2 n. This is easy to solve: s n = n. Therefore x n = n 2 n. We solve y n by the method of products. Add n + 1 to both sides and factor to get y n + n + 1 = 3(y n 1 + n). This means that for p n = y n + n + 1 we have the recurrence p 0 = 1 and p n = 3p n 1, so p n = 3 n and therefore y n = 3 n n 1. Finally, for z n, we take the log of both sides. The recurrence z n = 3z 2 n 1 becomes log 3 z n = 2 log 3 z n 1 + 1, with log 3 z 0 = 0. This is the recurrence we took great pains to solve earlier, so log 3 z n = 2 n 1, and therefore z n = 3 2n 1.

12 Exercises Solutions: # 2 One way to approach the two-term recurrence is to begin with the method of products. Add a n 1 to both sides; then a n + a n 1 = 2a n 1 + 2a n 2 = 2(a n 1 + a n 2 ). If p n = a n + a n 1, we have p n = 2p n 1, with p 1 = 3. Therefore p n = 3 2 2n. However, this doesn t solve the problem fully: a formula for p n only tells us that a n = a n n.

13 Exercises Solutions: # 2 One way to approach the two-term recurrence is to begin with the method of products. Add a n 1 to both sides; then a n + a n 1 = 2a n 1 + 2a n 2 = 2(a n 1 + a n 2 ). If p n = a n + a n 1, we have p n = 2p n 1, with p 1 = 3. Therefore p n = 3 2 2n. However, this doesn t solve the problem fully: a formula for p n only tells us that a n = a n n. We can solve this by the method of sums. Let s n = ( 1) n a n ; then we have the recurrence s n = s n ( 2)n, with s 0 = 2. Therefore s n = n k=1 ( 2)k = ( 2) n + 1. Finally, because a n = ( 1) n s n, we get a n = 2 n + ( 1) n.

14 Solving linear recurrences Recurrences such as a n = a n 1 + 2a n 2 come up so often there is a special method for dealing with these. 1 Find all solutions of the form a n = r n. We will need to solve a quadratic equation, since r n = r n 1 + 2r n 2 just means r 2 = r + 2. In this case, the solutions are r = 2 and r = 1. 2 Find a combination of these solutions that satisfies the initial conditions. Here, if a n = x 2 n + y ( 1) n, we have { x y ( 1) 0 = a 0 = 2, So a n = 2 n + ( 1) n. x y ( 1) 1 = a 1 = 1. In general, if a n is a linear combination of a n 1,..., a n k, we d have to solve a degree-k polynomial to get what we want.

15 Example of solving linear recurrences The Fibonacci numbers are defined by F 0 = 0, F 1 = 1, F n = F n 1 + F n 2. Find a formula for F n.

16 Example of solving linear recurrences The Fibonacci numbers are defined by F 0 = 0, F 1 = 1, F n = F n 1 + F n 2. Find a formula for F n. 1 To find the exponential solutions, we solve r 2 = r + 1 to get r = 1 ± 5. Call these two solutions φ 1 and φ 2. 2

17 Example of solving linear recurrences The Fibonacci numbers are defined by F 0 = 0, F 1 = 1, F n = F n 1 + F n 2. Find a formula for F n. 1 To find the exponential solutions, we solve r 2 = r + 1 to get r = 1 ± 5. Call these two solutions φ 1 and φ Now we know F n = xφ n 1 + yφn 2. To find x and y, we solve: { { F 0 = xφ yφ0 2, x + y = 0, F 1 = xφ yφ1 2. ( ) ( ) x y = 1.

18 Example of solving linear recurrences The Fibonacci numbers are defined by F 0 = 0, F 1 = 1, F n = F n 1 + F n 2. Find a formula for F n. 1 To find the exponential solutions, we solve r 2 = r + 1 to get r = 1 ± 5. Call these two solutions φ 1 and φ Now we know F n = xφ n 1 + yφn 2. To find x and y, we solve: { { F 0 = xφ yφ0 2, x + y = 0, F 1 = xφ yφ1 2. ( ) ( ) x y = 1. 3 So x = 1 5, y = 1 5, and F n = ( ) n ( ) n 5.

19 One thing that can go wrong Consider the recurrence a n = 4a n 1 4a n 2, with a 0 = 0 and a 1 = 2. What goes wrong? Try to solve this using our previous methods.

20 One thing that can go wrong Consider the recurrence a n = 4a n 1 4a n 2, with a 0 = 0 and a 1 = 2. What goes wrong? Try to solve this using our previous methods. The problem is that r 2 = 4r 4 only has one solution: r = 2. But multiples of 2 n aren t enough to fit the initial conditions.

21 One thing that can go wrong Consider the recurrence a n = 4a n 1 4a n 2, with a 0 = 0 and a 1 = 2. What goes wrong? Try to solve this using our previous methods. The problem is that r 2 = 4r 4 only has one solution: r = 2. But multiples of 2 n aren t enough to fit the initial conditions. Writing a n 2a n 1 = 2(a n 1 2a n 2 ) yields the one-term recurrence a n = 2a n n. We have already solved this today; the solution is a n = n 2 n. In general, when a root r is repeated k times, it yields the solutions a n = r n, a n = n r n,..., a n = n k 1 r n, and we solve for their combination as usual. (Here, all solutions to the recurrence are a combination of 2 n and n 2 n.)

22 Exercises 1 Solve the recurrence x n = 2x n 1 + x n 2 with x 0 = x 1 = 1. 2 Solve the recurrence y n = y n 1 + 2y n with y 0 = 0 and y 1 = 1. 3 Solve the recurrence z n = z n 1 + z n 2 z n 3 with z 0 = 1, z 1 = 0, and z 2 = 3.

23 Exercises Solutions 1 The characteristic equation is r 2 = 2r + 1, which yields r = 1 ± 2. Determining the constants, we see that x n = (1 + 2) n + (1 2) n. 2 2 By a trick analogous to the method of products, we write y n + 1 = (y n 1 + 1) + 2(y n 2 + 1). Then y n + 1 is some combination of 2 n and ( 1) n ; from y = 1 and y = 2, we can deduce y n + 1 = 2 n, so y n = 2 n 1. 3 Here we must first solve the cubic r 3 = r 2 + r 1, whose three roots are 1, 1, 1. This means z n is a combination of 1, n, and ( 1) n. From the initial conditions, we see that z n = n + ( 1) n.

24 More math problems Inspired by 1990 VTRMC, #6. The sequence (y n ) obeys the recurrence y n = y n 1 (2 y n 1 ). Solve for y n in terms of y AIME II, #11. For a positive integer m, let a 0, a 1,..., a m be a sequence such that a 0 = 37, a 1 = 72, a k+1 = a k 1 3 a k for k = 1,..., m 1, and finally, a m = 0. Find m PUMαC, Algebra A #7. Two sequences x n and y n are defined by x 0 = y 0 = 7 and { x n = 4x n 1 + 3y n 1 y n = 3y n 1 + 2x n 1. Find lim n x n y n. [Or just solve for x n and y n.] 2011 VTRMC, #2. The sequence (a n ) is defined by a 0 = 1, a 1 = 0, and a n = a 2 n 1 n2 a n 2 1. Find a 100.

25 More math problems Solutions 1990 VTRMC, #6. Rewrite the recurrence as 1 y n = (1 y n 1 ) 2. It follows that 1 y n = (1 y 0 ) 2n, so y n = 1 (1 y 0 ) 2n AIME II, #11. Let b k = a k a k+1. From the recurrence, we have b k = b k 1 3, with b 0 = So b k = k. We have b 888 = a 888 a 889 = 0; but a because b 887 = a 887 a 888 = 3. Therefore m = PUMαC, Algebra A #7. Note that x n y n = 2x n 1, so we can write x n as 7x n 1 6x n 2. Solving this, we get x n = n 7 5, so y n = n + 7 xn 5. In the limit, y n 42/5 28/5 = VTRMC, #2. From computing the first few terms, we guess that a n = n 2 1, which is confirmed by induction: n 2 1 = ((n 1) 2 1) 2 n 2 ((n 2) 2 1) 1.

Summing Series: Solutions

Summing Series: Solutions Sequences and Series Misha Lavrov Summing Series: Solutions Western PA ARML Practice December, 0 Switching the order of summation Prove useful identity 9 x x x x x x Riemann s zeta function ζ is defined

More information

Number Theory. Everything else. Misha Lavrov. ARML Practice 10/06/2013

Number Theory. Everything else. Misha Lavrov. ARML Practice 10/06/2013 Number Theory Everything else Misha Lavrov ARML Practice 10/06/2013 Solving integer equations using divisors PUMaC, 2009. How many positive integer pairs (a, b) satisfy a 2 + b 2 = ab(a + b)? Solving integer

More information

Math Problem Set #3 Solution 19 February 2001

Math Problem Set #3 Solution 19 February 2001 Math 203-04 Problem Set #3 Solution 19 February 2001 Exercises: 1. B & D, Section 2.3, problem #3. In your answer, give both exact values and decimal approximations for the amount of salt in the tank at

More information

Chapter 1.6. Perform Operations with Complex Numbers

Chapter 1.6. Perform Operations with Complex Numbers Chapter 1.6 Perform Operations with Complex Numbers EXAMPLE Warm-Up 1 Exercises Solve a quadratic equation Solve 2x 2 + 11 = 37. 2x 2 + 11 = 37 2x 2 = 48 Write original equation. Subtract 11 from each

More information

Math 2142 Homework 5 Part 1 Solutions

Math 2142 Homework 5 Part 1 Solutions Math 2142 Homework 5 Part 1 Solutions Problem 1. For the following homogeneous second order differential equations, give the general solution and the particular solution satisfying the given initial conditions.

More information

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions.

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions. Partial Fractions June 7, 04 In this section, we will learn to integrate another class of functions: the rational functions. Definition. A rational function is a fraction of two polynomials. For example,

More information

Assignment 16 Assigned Weds Oct 11

Assignment 16 Assigned Weds Oct 11 Assignment 6 Assigned Weds Oct Section 8, Problem 3 a, a 3, a 3 5, a 4 7 Section 8, Problem 4 a, a 3, a 3, a 4 3 Section 8, Problem 9 a, a, a 3, a 4 4, a 5 8, a 6 6, a 7 3, a 8 64, a 9 8, a 0 56 Section

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

Algebra Review. Finding Zeros (Roots) of Quadratics, Cubics, and Quartics. Kasten, Algebra 2. Algebra Review

Algebra Review. Finding Zeros (Roots) of Quadratics, Cubics, and Quartics. Kasten, Algebra 2. Algebra Review Kasten, Algebra 2 Finding Zeros (Roots) of Quadratics, Cubics, and Quartics A zero of a polynomial equation is the value of the independent variable (typically x) that, when plugged-in to the equation,

More information

Math 3 Variable Manipulation Part 3 Polynomials A

Math 3 Variable Manipulation Part 3 Polynomials A Math 3 Variable Manipulation Part 3 Polynomials A 1 MATH 1 & 2 REVIEW: VOCABULARY Constant: A term that does not have a variable is called a constant. Example: the number 5 is a constant because it does

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

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

Math Lecture 4 Limit Laws

Math Lecture 4 Limit Laws Math 1060 Lecture 4 Limit Laws Outline Summary of last lecture Limit laws Motivation Limits of constants and the identity function Limits of sums and differences Limits of products Limits of polynomials

More information

Math Lecture 18 Notes

Math Lecture 18 Notes Math 1010 - Lecture 18 Notes Dylan Zwick Fall 2009 In our last lecture we talked about how we can add, subtract, and multiply polynomials, and we figured out that, basically, if you can add, subtract,

More information

Math Lecture 3 Notes

Math Lecture 3 Notes Math 1010 - Lecture 3 Notes Dylan Zwick Fall 2009 1 Operations with Real Numbers In our last lecture we covered some basic operations with real numbers like addition, subtraction and multiplication. This

More information

Foundations of Math II Unit 5: Solving Equations

Foundations of Math II Unit 5: Solving Equations Foundations of Math II Unit 5: Solving Equations Academics High School Mathematics 5.1 Warm Up Solving Linear Equations Using Graphing, Tables, and Algebraic Properties On the graph below, graph the following

More information

Quiz 3 Reminder and Midterm Results

Quiz 3 Reminder and Midterm Results Quiz 3 Reminder and Midterm Results Reminder: Quiz 3 will be in the first 15 minutes of Monday s class. You can use any resources you have during the quiz. It covers all four sections of Unit 3. It has

More information

MATH 3012 N Homework Chapter 9

MATH 3012 N Homework Chapter 9 MATH 01 N Homework Chapter 9 February, 017 The recurrence r n+ = r n+1 + r n can be expressed with advancement operators as A A )r n = 0 The quadratic can then be factored using the quadratic formula,

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

27 Wyner Math 2 Spring 2019

27 Wyner Math 2 Spring 2019 27 Wyner Math 2 Spring 2019 CHAPTER SIX: POLYNOMIALS Review January 25 Test February 8 Thorough understanding and fluency of the concepts and methods in this chapter is a cornerstone to success in the

More information

What if the characteristic equation has a double root?

What if the characteristic equation has a double root? MA 360 Lecture 17 - Summary of Recurrence Relations Friday, November 30, 018. Objectives: Prove basic facts about basic recurrence relations. Last time, we looked at the relational formula for a sequence

More information

Mathematics (MEI) Advanced Subsidiary GCE Core 1 (4751) June 2010

Mathematics (MEI) Advanced Subsidiary GCE Core 1 (4751) June 2010 Link to past paper on OCR website: www.ocr.org.uk The above link takes you to OCR s website. From there you click QUALIFICATIONS, QUALIFICATIONS BY TYPE, AS/A LEVEL GCE, MATHEMATICS (MEI), VIEW ALL DOCUMENTS,

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

5.1 Simplifying Rational Expressions

5.1 Simplifying Rational Expressions 5. Simplifying Rational Expressions Now that we have mastered the process of factoring, in this chapter, we will have to use a great deal of the factoring concepts that we just learned. We begin with the

More information

DIFFERENTIATION RULES

DIFFERENTIATION RULES 3 DIFFERENTIATION RULES DIFFERENTIATION RULES We have: Seen how to interpret derivatives as slopes and rates of change Seen how to estimate derivatives of functions given by tables of values Learned how

More information

MTH 1310, SUMMER 2012 DR. GRAHAM-SQUIRE. A rational expression is just a fraction involving polynomials, for example 3x2 2

MTH 1310, SUMMER 2012 DR. GRAHAM-SQUIRE. A rational expression is just a fraction involving polynomials, for example 3x2 2 MTH 1310, SUMMER 2012 DR. GRAHAM-SQUIRE SECTION 1.2: PRECALCULUS REVIEW II Practice: 3, 7, 13, 17, 19, 23, 29, 33, 43, 45, 51, 57, 69, 81, 89 1. Rational Expressions and Other Algebraic Fractions A rational

More information

Math 4242 Fall 2016 (Darij Grinberg): homework set 8 due: Wed, 14 Dec b a. Here is the algorithm for diagonalizing a matrix we did in class:

Math 4242 Fall 2016 (Darij Grinberg): homework set 8 due: Wed, 14 Dec b a. Here is the algorithm for diagonalizing a matrix we did in class: Math 4242 Fall 206 homework page Math 4242 Fall 206 Darij Grinberg: homework set 8 due: Wed, 4 Dec 206 Exercise Recall that we defined the multiplication of complex numbers by the rule a, b a 2, b 2 =

More information

Section Example Determine the Maclaurin series of f (x) = e x and its the interval of convergence.

Section Example Determine the Maclaurin series of f (x) = e x and its the interval of convergence. Example Determine the Maclaurin series of f (x) = e x and its the interval of convergence. Example Determine the Maclaurin series of f (x) = e x and its the interval of convergence. f n (0)x n Recall from

More information

Algebra 1: Hutschenreuter Chapter 10 Notes Adding and Subtracting Polynomials

Algebra 1: Hutschenreuter Chapter 10 Notes Adding and Subtracting Polynomials Algebra 1: Hutschenreuter Chapter 10 Notes Name 10.1 Adding and Subtracting Polynomials Polynomial- an expression where terms are being either added and/or subtracted together Ex: 6x 4 + 3x 3 + 5x 2 +

More information

Generating Function Notes , Fall 2005, Prof. Peter Shor

Generating Function Notes , Fall 2005, Prof. Peter Shor Counting Change Generating Function Notes 80, Fall 00, Prof Peter Shor In this lecture, I m going to talk about generating functions We ve already seen an example of generating functions Recall when we

More information

Mathematics (MEI) Advanced Subsidiary GCE Core 1 (4751) May 2010

Mathematics (MEI) Advanced Subsidiary GCE Core 1 (4751) May 2010 Link to past paper on OCR website: http://www.mei.org.uk/files/papers/c110ju_ergh.pdf These solutions are for your personal use only. DO NOT photocopy or pass on to third parties. If you are a school or

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

5.2 Polynomial Operations

5.2 Polynomial Operations 5.2 Polynomial Operations At times we ll need to perform operations with polynomials. At this level we ll just be adding, subtracting, or multiplying polynomials. Dividing polynomials will happen in future

More information

LESSON 8.1 RATIONAL EXPRESSIONS I

LESSON 8.1 RATIONAL EXPRESSIONS I LESSON 8. RATIONAL EXPRESSIONS I LESSON 8. RATIONAL EXPRESSIONS I 7 OVERVIEW Here is what you'll learn in this lesson: Multiplying and Dividing a. Determining when a rational expression is undefined Almost

More information

Evaluating Limits Analytically. By Tuesday J. Johnson

Evaluating Limits Analytically. By Tuesday J. Johnson Evaluating Limits Analytically By Tuesday J. Johnson Suggested Review Topics Algebra skills reviews suggested: Evaluating functions Rationalizing numerators and/or denominators Trigonometric skills reviews

More information

LESSON 6.1 EXPONENTS LESSON 6.1 EXPONENTS 253

LESSON 6.1 EXPONENTS LESSON 6.1 EXPONENTS 253 LESSON 6.1 EXPONENTS LESSON 6.1 EXPONENTS 5 OVERVIEW Here's what you'll learn in this lesson: Properties of Exponents Definition of exponent, power, and base b. Multiplication Property c. Division Property

More information

5.6 Solving Equations Using Both the Addition and Multiplication Properties of Equality

5.6 Solving Equations Using Both the Addition and Multiplication Properties of Equality 5.6 Solving Equations Using Both the Addition and Multiplication Properties of Equality Now that we have studied the Addition Property of Equality and the Multiplication Property of Equality, we can solve

More information

= W z1 + W z2 and W z1 z 2

= W z1 + W z2 and W z1 z 2 Math 44 Fall 06 homework page Math 44 Fall 06 Darij Grinberg: homework set 8 due: Wed, 4 Dec 06 [Thanks to Hannah Brand for parts of the solutions] Exercise Recall that we defined the multiplication of

More information

Math 192r, Problem Set #3: Solutions

Math 192r, Problem Set #3: Solutions Math 192r Problem Set #3: Solutions 1. Let F n be the nth Fibonacci number as Wilf indexes them (with F 0 F 1 1 F 2 2 etc.). Give a simple homogeneous linear recurrence relation satisfied by the sequence

More information

Chapter 1: Precalculus Review

Chapter 1: Precalculus Review : Precalculus Review Math 115 17 January 2018 Overview 1 Important Notation 2 Exponents 3 Polynomials 4 Rational Functions 5 Cartesian Coordinates 6 Lines Notation Intervals: Interval Notation (a, b) (a,

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

Math 651 Introduction to Numerical Analysis I Fall SOLUTIONS: Homework Set 1

Math 651 Introduction to Numerical Analysis I Fall SOLUTIONS: Homework Set 1 ath 651 Introduction to Numerical Analysis I Fall 2010 SOLUTIONS: Homework Set 1 1. Consider the polynomial f(x) = x 2 x 2. (a) Find P 1 (x), P 2 (x) and P 3 (x) for f(x) about x 0 = 0. What is the relation

More information

Section 3.6 Complex Zeros

Section 3.6 Complex Zeros 04 Chapter Section 6 Complex Zeros When finding the zeros of polynomials, at some point you're faced with the problem x = While there are clearly no real numbers that are solutions to this equation, leaving

More information

Before this course is over we will see the need to split up a fraction in a couple of ways, one using multiplication and the other using addition.

Before this course is over we will see the need to split up a fraction in a couple of ways, one using multiplication and the other using addition. CH MORE FRACTIONS Introduction I n this chapter we tie up some loose ends. First, we split a single fraction into two fractions, followed by performing our standard math operations on positive and negative

More information

Section 4.6 Negative Exponents

Section 4.6 Negative Exponents Section 4.6 Negative Exponents INTRODUCTION In order to understand negative exponents the main topic of this section we need to make sure we understand the meaning of the reciprocal of a number. Reciprocals

More information

Lesson 5: The Distributive Property

Lesson 5: The Distributive Property Exploratory Exercise Kim was working on an exercise in math when she ran across this problem. Distribute and simplify if possible. (3x + 5) Kim s dad said, I remember doing something like this in school.

More information

Tropical Polynomials

Tropical Polynomials 1 Tropical Arithmetic Tropical Polynomials Los Angeles Math Circle, May 15, 2016 Bryant Mathews, Azusa Pacific University In tropical arithmetic, we define new addition and multiplication operations on

More information

EXTRA CREDIT FOR MATH 39

EXTRA CREDIT FOR MATH 39 EXTRA CREDIT FOR MATH 39 This is the second, theoretical, part of an extra credit homework. This homework in not compulsory. If you do it, you can get up to 6 points (3 points for each part) of extra credit

More information

LESSON 6.2 POLYNOMIAL OPERATIONS I

LESSON 6.2 POLYNOMIAL OPERATIONS I LESSON 6. POLYNOMIAL OPERATIONS I LESSON 6. POLYNOMIALS OPERATIONS I 63 OVERVIEW Here's what you'll learn in this lesson: Adding and Subtracting a. Definition of polynomial, term, and coefficient b. Evaluating

More information

What is proof? Lesson 1

What is proof? Lesson 1 What is proof? Lesson The topic for this Math Explorer Club is mathematical proof. In this post we will go over what was covered in the first session. The word proof is a normal English word that you might

More information

Recurrence Relations and Recursion: MATH 180

Recurrence Relations and Recursion: MATH 180 Recurrence Relations and Recursion: MATH 180 1: Recursively Defined Sequences Example 1: The sequence a 1,a 2,a 3,... can be defined recursively as follows: (1) For all integers k 2, a k = a k 1 + 1 (2)

More information

Section 1.x: The Variety of Asymptotic Experiences

Section 1.x: The Variety of Asymptotic Experiences calculus sin frontera Section.x: The Variety of Asymptotic Experiences We talked in class about the function y = /x when x is large. Whether you do it with a table x-value y = /x 0 0. 00.0 000.00 or with

More information

Table of Contents. 2013, Pearson Education, Inc.

Table of Contents. 2013, Pearson Education, Inc. Table of Contents Chapter 1 What is Number Theory? 1 Chapter Pythagorean Triples 5 Chapter 3 Pythagorean Triples and the Unit Circle 11 Chapter 4 Sums of Higher Powers and Fermat s Last Theorem 16 Chapter

More information

Spring Nikos Apostolakis

Spring Nikos Apostolakis Spring 07 Nikos Apostolakis Review of fractions Rational expressions are fractions with numerator and denominator polynomials. We need to remember how we work with fractions (a.k.a. rational numbers) before

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

1. Introduction to commutative rings and fields

1. Introduction to commutative rings and fields 1. Introduction to commutative rings and fields Very informally speaking, a commutative ring is a set in which we can add, subtract and multiply elements so that the usual laws hold. A field is a commutative

More information

O.K. But what if the chicken didn t have access to a teleporter.

O.K. But what if the chicken didn t have access to a teleporter. The intermediate value theorem, and performing algebra on its. This is a dual topic lecture. : The Intermediate value theorem First we should remember what it means to be a continuous function: A function

More information

Infinite Limits. By Tuesday J. Johnson

Infinite Limits. By Tuesday J. Johnson Infinite Limits By Tuesday J. Johnson Suggested Review Topics Algebra skills reviews suggested: Evaluating functions Graphing functions Working with inequalities Working with absolute values Trigonometric

More information

Math 320: Real Analysis MWF 1pm, Campion Hall 302 Homework 4 Solutions Please write neatly, and in complete sentences when possible.

Math 320: Real Analysis MWF 1pm, Campion Hall 302 Homework 4 Solutions Please write neatly, and in complete sentences when possible. Math 320: Real Analysis MWF pm, Campion Hall 302 Homework 4 Solutions Please write neatly, and in complete sentences when possible. Do the following problems from the book: 2.6.3, 2.7.4, 2.7.5, 2.7.2,

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

Partial Fraction Decomposition

Partial Fraction Decomposition Partial Fraction Decomposition As algebra students we have learned how to add and subtract fractions such as the one show below, but we probably have not been taught how to break the answer back apart

More information

Generating Functions

Generating Functions 8.30 lecture notes March, 0 Generating Functions Lecturer: Michel Goemans We are going to discuss enumeration problems, and how to solve them using a powerful tool: generating functions. What is an enumeration

More information

ABE Math Review Package

ABE Math Review Package P a g e ABE Math Review Package This material is intended as a review of skills you once learned and wish to review before your assessment. Before studying Algebra, you should be familiar with all of the

More information

Example. How to Guess What to Prove

Example. How to Guess What to Prove How to Guess What to Prove Example Sometimes formulating P (n) is straightforward; sometimes it s not. This is what to do: Compute the result in some specific cases Conjecture a generalization based on

More information

Sec. 1 Simplifying Rational Expressions: +

Sec. 1 Simplifying Rational Expressions: + Chapter 9 Rational Epressions Sec. Simplifying Rational Epressions: + The procedure used to add and subtract rational epressions in algebra is the same used in adding and subtracting fractions in 5 th

More information

A constant is a value that is always the same. (This means that the value is constant / unchanging). o

A constant is a value that is always the same. (This means that the value is constant / unchanging). o Math 8 Unit 7 Algebra and Graphing Relations Solving Equations Using Models We will be using algebra tiles to help us solve equations. We will practice showing work appropriately symbolically and pictorially

More information

MATH 301 INTRO TO ANALYSIS FALL 2016

MATH 301 INTRO TO ANALYSIS FALL 2016 MATH 301 INTRO TO ANALYSIS FALL 016 Homework 04 Professional Problem Consider the recursive sequence defined by x 1 = 3 and +1 = 1 4 for n 1. (a) Prove that ( ) converges. (Hint: show that ( ) is decreasing

More information

Key Features of a Graph. Warm Up What do you think the key features are of a graph? Write them down.

Key Features of a Graph. Warm Up What do you think the key features are of a graph? Write them down. Warm Up What do you think the key features are of a graph? Write them down. 1 Domain and Range x intercepts and y intercepts Intervals of increasing, decreasing, and constant behavior Parent Equations

More information

2. Limits at Infinity

2. Limits at Infinity 2 Limits at Infinity To understand sequences and series fully, we will need to have a better understanding of its at infinity We begin with a few examples to motivate our discussion EXAMPLE 1 Find SOLUTION

More information

P.6 Complex Numbers. -6, 5i, 25, -7i, 5 2 i + 2 3, i, 5-3i, i. DEFINITION Complex Number. Operations with Complex Numbers

P.6 Complex Numbers. -6, 5i, 25, -7i, 5 2 i + 2 3, i, 5-3i, i. DEFINITION Complex Number. Operations with Complex Numbers SECTION P.6 Complex Numbers 49 P.6 Complex Numbers What you ll learn about Complex Numbers Operations with Complex Numbers Complex Conjugates and Division Complex Solutions of Quadratic Equations... and

More information

Math 154 :: Elementary Algebra

Math 154 :: Elementary Algebra Math 4 :: Elementary Algebra Section. Additive Property of Equality Section. Multiplicative Property of Equality Section.3 Linear Equations in One-Variable Section.4 Linear Equations in One-Variable with

More information

2 Analogies between addition and multiplication

2 Analogies between addition and multiplication Problem Analysis The problem Start out with 99% water. Some of the water evaporates, end up with 98% water. How much of the water evaporates? Guesses Solution: Guesses: Not %. 2%. 5%. Not 00%. 3%..0%..5%.

More information

Unit 7: Factoring Quadratic Polynomials

Unit 7: Factoring Quadratic Polynomials Unit 7: Factoring Quadratic Polynomials A polynomial is represented by: where the coefficients are real numbers and the exponents are nonnegative integers. Side Note: Examples of real numbers: Examples

More information

Divisibility in the Fibonacci Numbers. Stefan Erickson Colorado College January 27, 2006

Divisibility in the Fibonacci Numbers. Stefan Erickson Colorado College January 27, 2006 Divisibility in the Fibonacci Numbers Stefan Erickson Colorado College January 27, 2006 Fibonacci Numbers F n+2 = F n+1 + F n n 1 2 3 4 6 7 8 9 10 11 12 F n 1 1 2 3 8 13 21 34 89 144 n 13 14 1 16 17 18

More information

FN20.2 INDUCTIVE & DEDUCTIVE REASONING. DAY 1 NOTES: Section 1.1 Make a Conjecture by Observing Patterns and Identifying Properties

FN20.2 INDUCTIVE & DEDUCTIVE REASONING. DAY 1 NOTES: Section 1.1 Make a Conjecture by Observing Patterns and Identifying Properties FOUNDATIONS 20 FN20.2 INDUCTIVE & DEDUCTIVE REASONING DAY 1 NOTES: Section 1.1 Make a Conjecture by Observing Patterns and Identifying Properties CONJECTURE: INDUCTIVE REASONING: Concepts: #14 EXAMPLE

More information

Lesson 3 Algebraic expression: - the result obtained by applying operations (+, -,, ) to a collection of numbers and/or variables o

Lesson 3 Algebraic expression: - the result obtained by applying operations (+, -,, ) to a collection of numbers and/or variables o Lesson 3 Algebraic expression: - the result obtained by applying operations (+, -,, ) to a collection of numbers and/or variables o o ( 1)(9) 3 ( 1) 3 9 1 Evaluate the second expression at the left, if

More information

Holes in a function. Even though the function does not exist at that point, the limit can still obtain that value.

Holes in a function. Even though the function does not exist at that point, the limit can still obtain that value. Holes in a function For rational functions, factor both the numerator and the denominator. If they have a common factor, you can cancel the factor and a zero will exist at that x value. Even though the

More information

Equations and Inequalities. College Algebra

Equations and Inequalities. College Algebra Equations and Inequalities College Algebra Radical Equations Radical Equations: are equations that contain variables in the radicand How to Solve a Radical Equation: 1. Isolate the radical expression on

More information

2.3 Differentiation Formulas. Copyright Cengage Learning. All rights reserved.

2.3 Differentiation Formulas. Copyright Cengage Learning. All rights reserved. 2.3 Differentiation Formulas Copyright Cengage Learning. All rights reserved. Differentiation Formulas Let s start with the simplest of all functions, the constant function f (x) = c. The graph of this

More information

Welcome to Math Video Lessons. Stanley Ocken. Department of Mathematics The City College of New York Fall 2013

Welcome to Math Video Lessons. Stanley Ocken. Department of Mathematics The City College of New York Fall 2013 Welcome to Math 19500 Video Lessons Prof. Department of Mathematics The City College of New York Fall 013 An important feature of the following Beamer slide presentations is that you, the reader, move

More information

AMC Lecture Notes. Justin Stevens. Cybermath Academy

AMC Lecture Notes. Justin Stevens. Cybermath Academy AMC Lecture Notes Justin Stevens Cybermath Academy Contents 1 Systems of Equations 1 1 Systems of Equations 1.1 Substitution Example 1.1. Solve the system below for x and y: x y = 4, 2x + y = 29. Solution.

More information

Applications. More Counting Problems. Complexity of Algorithms

Applications. More Counting Problems. Complexity of Algorithms Recurrences Applications More Counting Problems Complexity of Algorithms Part I Recurrences and Binomial Coefficients Paths in a Triangle P(0, 0) P(1, 0) P(1,1) P(2, 0) P(2,1) P(2, 2) P(3, 0) P(3,1) P(3,

More information

Algebra III and Trigonometry Summer Assignment

Algebra III and Trigonometry Summer Assignment Algebra III and Trigonometry Summer Assignment Welcome to Algebra III and Trigonometry! This summer assignment is a review of the skills you learned in Algebra II. Please bring this assignment with you

More information

Sail into Summer with Math!

Sail into Summer with Math! Sail into Summer with Math! For Students Entering Algebra 1 This summer math booklet was developed to provide students in kindergarten through the eighth grade an opportunity to review grade level math

More information

1.2. Indices. Introduction. Prerequisites. Learning Outcomes

1.2. Indices. Introduction. Prerequisites. Learning Outcomes Indices 1.2 Introduction Indices, or powers, provide a convenient notation when we need to multiply a number by itself several times. In this Section we explain how indices are written, and state the rules

More information

Fractions. Review R.7. Dr. Doug Ensley. January 7, Dr. Doug Ensley Review R.7

Fractions. Review R.7. Dr. Doug Ensley. January 7, Dr. Doug Ensley Review R.7 Review R.7 Dr. Doug Ensley January 7, 2015 Equivalence of fractions As long as c 0, a b = a c b c Equivalence of fractions As long as c 0, a b = a c b c Examples True or False? 10 18 = 2 5 2 9 = 5 9 10

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

CDM. Recurrences and Fibonacci. 20-fibonacci 2017/12/15 23:16. Terminology 4. Recurrence Equations 3. Solution and Asymptotics 6.

CDM. Recurrences and Fibonacci. 20-fibonacci 2017/12/15 23:16. Terminology 4. Recurrence Equations 3. Solution and Asymptotics 6. CDM Recurrences and Fibonacci 1 Recurrence Equations Klaus Sutner Carnegie Mellon University Second Order 20-fibonacci 2017/12/15 23:16 The Fibonacci Monoid Recurrence Equations 3 Terminology 4 We can

More information

Rational Functions. Elementary Functions. Algebra with mixed fractions. Algebra with mixed fractions

Rational Functions. Elementary Functions. Algebra with mixed fractions. Algebra with mixed fractions Rational Functions A rational function f (x) is a function which is the ratio of two polynomials, that is, Part 2, Polynomials Lecture 26a, Rational Functions f (x) = where and are polynomials Dr Ken W

More information

Announcements. CSE332: Data Abstractions Lecture 2: Math Review; Algorithm Analysis. Today. Mathematical induction. Dan Grossman Spring 2010

Announcements. CSE332: Data Abstractions Lecture 2: Math Review; Algorithm Analysis. Today. Mathematical induction. Dan Grossman Spring 2010 Announcements CSE332: Data Abstractions Lecture 2: Math Review; Algorithm Analysis Dan Grossman Spring 2010 Project 1 posted Section materials on using Eclipse will be very useful if you have never used

More information

Limits and Continuity

Limits and Continuity Limits and Continuity MATH 151 Calculus for Management J. Robert Buchanan Department of Mathematics Fall 2018 Objectives After this lesson we will be able to: Determine the left-hand and right-hand limits

More information

2017 SUMMER REVIEW FOR STUDENTS ENTERING GEOMETRY

2017 SUMMER REVIEW FOR STUDENTS ENTERING GEOMETRY 2017 SUMMER REVIEW FOR STUDENTS ENTERING GEOMETRY The following are topics that you will use in Geometry and should be retained throughout the summer. Please use this practice to review the topics you

More information

Intro to Algebra Today. We will learn names for the properties of real numbers. Homework Next Week. Due Tuesday 45-47/ 15-20, 32-35, 40-41, *28,29,38

Intro to Algebra Today. We will learn names for the properties of real numbers. Homework Next Week. Due Tuesday 45-47/ 15-20, 32-35, 40-41, *28,29,38 Intro to Algebra Today We will learn names for the properties of real numbers. Homework Next Week Due Tuesday 45-47/ 15-20, 32-35, 40-41, *28,29,38 Due Thursday Pages 51-53/ 19-24, 29-36, *48-50, 60-65

More information

SUMMATION TECHNIQUES

SUMMATION TECHNIQUES SUMMATION TECHNIQUES MATH 53, SECTION 55 (VIPUL NAIK) Corresponding material in the book: Scattered around, but the most cutting-edge parts are in Sections 2.8 and 2.9. What students should definitely

More information

1. Introduction to commutative rings and fields

1. Introduction to commutative rings and fields 1. Introduction to commutative rings and fields Very informally speaking, a commutative ring is a set in which we can add, subtract and multiply elements so that the usual laws hold. A field is a commutative

More information

STEP Support Programme. Hints and Partial Solutions for Assignment 17

STEP Support Programme. Hints and Partial Solutions for Assignment 17 STEP Support Programme Hints and Partial Solutions for Assignment 7 Warm-up You need to be quite careful with these proofs to ensure that you are not assuming something that should not be assumed. For

More information

Before this course is over we will see the need to split up a fraction in a couple of ways, one using multiplication and the other using addition.

Before this course is over we will see the need to split up a fraction in a couple of ways, one using multiplication and the other using addition. CH 0 MORE FRACTIONS Introduction I n this chapter we tie up some loose ends. First, we split a single fraction into two fractions, followed by performing our standard math operations on positive and negative

More information

HAMPSHIRE COLLEGE: YOU CAN T GET THERE FROM HERE : WHY YOU CAN T TRISECT AN ANGLE, DOUBLE THE CUBE, OR SQUARE THE CIRCLE. Contents. 1.

HAMPSHIRE COLLEGE: YOU CAN T GET THERE FROM HERE : WHY YOU CAN T TRISECT AN ANGLE, DOUBLE THE CUBE, OR SQUARE THE CIRCLE. Contents. 1. HAMPSHIRE COLLEGE: YOU CAN T GET THERE FROM HERE : WHY YOU CAN T TRISECT AN ANGLE, DOUBLE THE CUBE, OR SQUARE THE CIRCLE RAVI VAKIL Contents 1. Introduction 1 2. Impossibility proofs, and 2 2 3. Real fields

More information

Teacher's Page. Mar 20 8:26 AM

Teacher's Page. Mar 20 8:26 AM Teacher's Page Unit 4.1 in two parts: Part 1: Polynomials and Part 2: Quadratics Benchmarks: A.SSE.3 Choose and produce an equivalent form of an expression to reveal and explain properties of the quantity

More information

1.2. Indices. Introduction. Prerequisites. Learning Outcomes

1.2. Indices. Introduction. Prerequisites. Learning Outcomes Indices.2 Introduction Indices, or powers, provide a convenient notation when we need to multiply a number by itself several times. In this section we explain how indices are written, and state the rules

More information