4.1-4.3 Flashcards
sequence
an ordered list of numbers
terms
the numbers in a sequence
finite sequence
a sequence with a last term
infinite sequence
a sequence with no last term
graphing sequences
each term is paired w/ a number that gives its position in the sequence
by plotting points with coord’s (position, term), you can graph a sequence on a coord plane
limit of a sequence
When the terms of an infinite sequence get closer and closer to a single fixed number L, then L is called the limit
not all infinite sequences have limits; repeating ones, for example, like 1, 2, 3, 1, 2, 3,…
graphing it often helps
explicit formula
gives the value of any term an in terms of n
finding explicit formulas
Ex: Given, 90, 83, 76, 69,…, find a formula for the sequence.
- Find a pattern. || a repeated subtraction of 7
- Write the 1st few terms. Show how you found each term. ||
a<sub>1</sub> = 90 a<sub>2</sub>= 83 = 90 - 1(7) a<sub>3</sub> = 76 = 90 - 2(7) a<sub>4</sub> = 69 = 90 - 3(7)
- Express the pattern in terms of n. || an = 90 - (n - 1)7
subscript 0
When the 1st term of a sequence represent a starting value before any change occurs, subscript 0 is often used.
Ex: monthly bank account balances, 1st term is v0for initial deposit. Next term = v1, for 1st month’s interest, etc. etc.
percentage explicit formulas
Ex: bacteria count increaes 10% each day; 10,000 now; Find formula for bacteria count after n days
- d + .1d (if annual interest, compounded monthly, then d + (.1/12)dd(1 + .1)d(1.1)
- d0 = 10,000d1 = 10,000(1.1)d2 = d1(1.1)
= 10,000(1.1)(1.1) = 10,000(1.1)<sup>2</sup>
d3 = d2(1.1)= 10,000(1.1)<sup>2</sup>(1.1) = 10,000(1.1)<sup>3</sup> • • •
dn = 10,000(1.1)nbasically, x(1 + rate)n
fractal
this process continues without end
self-similar
can be used to make a recursive formula
self-similarity
the appearance of any part = similar to the whole thing
recursive formula
tells how to find the nth term from the term(s) before it.
2 parts:
- a1 = 1 ⇔ value(s) of 1st term(s) r given
- an = 2an-1 ⇔ recursion equation
recursion equation
shows how to find each term from the term(s) before it
finding recursive formulas
Ex: 1, 2, 6, 24
- Write several terms of the sequence using subscripts. Then look for the relationship b/w each term & the term before it
a1 = 1
a2 = 2 = 2 • 1
a3 = 6 = 3 • 2
a4 = 24 = 4 • 6
- Write in terms of a
a2 = 2 • a1
a3 = 3 • a2
a4 = 4 • a3
- Write a recursin equation
an = nan-1
- Use value of first term & recursion equation to write recursive formula
a1 = 1
an = nan-1