MATH 302 Lecture 10

From Notes
Jump to navigation Jump to search

« previous | Monday, October 3, 2011 | next »


Chapter 5: Sequences and Summation

Sequences

function from positive integers or natural numbers to a set, but instead of using function notation (a(n)), we use subscript notation (an)

Examples:

  • 1, 0, 2, 0, 3, 0, 4, 0, 5, …
  • 5, 15, 45, 135, … (geometric: an=53n)
  • 3, 7, 11, 15, … (arithmetic: an=3+4n)
  • 1, 1, 2, 3, 5, 8, 13, … (recurrence relation / fibonacci sequence: fn=fn1+fn2)

Analyzing Sequences

we will discuss two ways:

  1. closed form expression: an = formula or procedure
  2. recurrence relation (or difference equation): an = f(an', an'', …)
    we'll come back to recurrence relations later

Geometric Sequences

Given by: a, ar, ar2, , arn

  • a is the first term
  • r=an+1an

Arithmetic Progression

Given by: a, a+d, a+2d, , a+nd

  • a is the first term
  • d=an+1an

Mathematical Induction

Given a predicate P(n) accepting positive integers, prove that P(n) is true for all n > 0

  1. Prove the basis step: Show that P(1) is true.
  2. Prove the induction step: Shaw that P(k)P(k+1) for an arbitrary positive integer k (Assume P(k) is true, then show how P(k+1) must follow.)

Application to sequences

Given a sequence an=8an116an2 and a potential candidate an=4n, we can prove that they are equivalent using mathematical induction

4n=84n1164n2, which is true, and show that it holds for the first few terms.

Series

an is a sequence:

S=idxan

Summation Formulas

For a geometric sequence a, ar, ar2, ar3, , arn,

k=0nark=arn+1ar1

The formula above can be proved by induction.


For aritmetic equences a, a+d, a+2d, a+3d, , a+nd,

k=0na+kd=a+an2n