Transcript Lesson 1.1

Recursively Defined Sequences
Section 1.1
What is a Sequence?
Sequence
Example A
 A square table seats 4 people. Two square tables pushed
together seat 6 people. Three tables pushed together seat 8
people.
 How many people can sit at 10 tables pushed together?
 How many tables are needed to seat 32 people?
 Write a recursive definition to find the number of people
who can sit at any linear arrangement of square tables.
 Sketch the arrangements of four tables and five tables. Notice
that when you add another table, you seat two more people
than in the previous arrangement.
 Put this information into a table to reveal a clear pattern.
 Continue the pattern to find that 10 tables seat 22 people,
and 15 tables are needed for 32 people.
 You can also organize the information like this:
number of people at 1 table = 4
number of people at 2 tables = number of people at 1 table + 2
number of people at 3 tables = number of people at 2 tables + 2
 If you assume the same pattern continues, then
number of people at 10 tables = number of people at 9 tables + 2.
 In general, the pattern is
number of people at n tables = number of people at (n - 1) tables + 2.
 This rule shows how to use recursion to find the number of
people at any number of tables.
 In recursion, you use the previous value in the pattern to find the
next value.
What’s behind a pattern?
 Mathematics isn’t only about seeing patterns but also about
explaining them.
 Did you notice that every time a new table was inserted two
new people can sit down (one on each side)?
Sequence
 A sequence is an ordered list of numbers. The table in
Example A represents the sequence 4, 6, 8, 10, 12, . . .
 Each number in the sequence is called a term.
 The first term, u1, is 4. The second term, u2, is 6, and so on.
 The nth term, un, is called the general term of the sequence.
u1  4
un  un 1  2, where n  2
 Generate this sequence on your graphing calculator
Is there a difference
between
un 1
and
un  1
Which is the previous term?
Which is the next term?
un
un 1
?
Example B
 A concert hall has 59 seats in Row 1, 63 seats in Row 2, 67
seats in Row 3, and so on. The concert hall has 35 rows of
seats.
 Write a recursive formula to find the number of seats in each
row. How many seats are in Row 4?
 Which row has 95 seats?
Example B
 A concert hall has 59 seats in Row 1, 63 seats in Row 2, 67
seats in Row 3, and so on. The concert hall has 35 rows of
seats.
Placing the information in a table:
Row
1
2
3
Seats
59
63
67
How are the number of seat changing?
Every recursive formula has a starting term. In this case it is
the number of seats in the first row: u1  59
Since the number of seats is changing by 4 for each row:
un  un 1  4, where n  2
Write out u2, u3, u4, u5, . . .
Explain the meaning of u4.
Use your graphing calculator to generate this sequence of
numbers.
You can also create a graph of the sequence by graphing the
points: (row, seat)
Arithmetic Sequence
An arithmetic sequence is a sequence in
which each term is equal to the previous term
plus a constant.
This constant is called the common difference.
If d is the common difference, the recursive
rule for the sequence has the form
un  un-1 d
The key to identifying an arithmetic sequence is
recognizing the common difference.
Monitoring Inventory
 Art Smith has been providing the prints of an engraving
to FineArt Gallery. He plans to make just 2000 more
prints. FineArt has already received 470 of Art’s prints.
The Little Print Shoppe also wishes to order prints. Art
agrees to supply FineArt with 40 prints each month and
Little Print Shoppe with 10 prints each month until he
runs out.
 Step 1: As a group, model what happens to the number
of unmade prints, the number of prints delivered to
FineArt, and the number delivered to Little Print
Shoppe in a spreadsheet like the one below. Continue
until you reach 10 months
Month
Unmade Prints
FineArt
Little Print Shoppe
1
2000
470
0
2
1950
510
10
Step 2
 Use your table from Step 1 to answer these questions:
 How many months will it be until FineArt has an equal
number or a greater number of prints than the
number of prints left unmade?
On Month 18,
FineArt has
1150 prints,
and there are
1150 unmade
prints.
Step 2
 Use your table from Step 1 to answer these questions:
 How many prints will have been delivered to the Little
Print Shoppe when FineArt has received twice the
number of prints that remain to be made?
On month 27, FineArt
has 1510 prints while
there are 700 prints
unmade.
On month 26 FineArt
has 1470 prints while
there are 750 prints
unmade.
Step 3
 Write a short summary of how you modeled the number
of prints and how you found the answers to the questions
in Step 2. Compare your methods with the methods of
other groups.
Month
Unmade Prints
FineArt
Little Print Shoppe
1
2000
470
0
2
1950
510
10
n
u1  1900
un 1  50
v1  470
vn 1  40
w1  0
wn 1  10
Example C
 The geometric pattern below is created recursively. If you
continue the pattern endlessly, you create a fractal called
the Sierpinski triangle.
 How many red triangles are there at Stage 20?
 Create a table that records the number of red triangles in
each stage.
Row
1
2
3
Triangles
3
9
27
 Write a Sequence for this table of values:
u1  3
un  3 un 1 , where n  2
N
 Generate the sequence on your graphing calculator.
Geometric Sequence
 A geometric sequence is a sequence in which each term is
equal to the previous term multiplied by a constant.
This constant is called the common ratio.
 If r is the common ratio, the recursive rule for the sequence
has the form
un= r un 1