Number Patterns and Recursion Practice Test
Number Patterns and Recursion Practice Test
Student name:
Multiple-choice questions
1 In the sequence 5, 14, 23, 32, … the value of the common difference, d, is:
A –9
B 9
C 19
D 27
E 41
2 The twelfth term, t12, in the sequence 43, 37, 31, 25, … is:
A –72
B –23
C –6
D 12
E 19
3 Using the recurrence relation t1 = 7, tn+1 = tn + 6, the fifth term would be:
A 11
B 13
C 18
D 25
E 31
4 A bicycle costs $50 to hire for the first day and $40 for each extra day.
If Cn is the cost of hiring the bicycle for n days, the recurrence relation is:
A C0 = 50, Cn+1 = Cn + 40
B C0 = 40, Cn = Cn+1 + 50
C C1 = 50, Cn = Cn+1 + 40
D C0 = 40, Cn+1 = Cn + 50
E C1 = 50, Cn+1 = Cn + 4
1
Chapter 8 Number patterns and recursion: Practice test
5 The common ratio, r, of the sequence 81, 54, 36, 24, … is:
A –57
B 2
3
C 3
4
D 3
2
E 57
E 0.91
2
Chapter 8 Number patterns and recursion: Practice test
9 The number of feral cats in a wildlife reserve increases by 15% each year. If there were
originally 200 feral cats in the reserve, the recurrence relation for the number of feral
cats Cn after n years is:
A C1 = 200, Cn+1 = 1.15Cn
B C1 = 200, Cn+1 = 0.15Cn
C C1 = 200, Cn+1 = 15Cn
D C0 = 200, Cn = 1.15Cn+1
E C0 = 200, Cn+1 = 1.15Cn
10 The following recurrence relation can be used to model a compound interest investment
of $3000, paying interest at the rate of 11% per annum.
V0 = 2000, Vn+1 = 1.09Vn
After how many years will the value of the investment first exceed $6000?
A 7
B 8
C 9
D 10
E 11
11 In a Fibonacci type sequence t5 =24 and t6 =39. The value for t8 is:
A 21
B 54
C 63
D 69
E 102
12 The first three terms in the sequence using the recurrence relation t1 = 5, tn+1 = 3tn – 4,
are:
A –1, 2, 5, …
B 3, –4, 5, …
C 5, 3, –4, …
D 5, 11, 29, …
E 11, 29, 83, …
3
Chapter 8 Number patterns and recursion: Practice test
Extended-response questions
1 Jessica accepted a job with a salary of $50 000 in the first year and an increase of $6000
in each following year.
a Show her salary for each of the first 10 years in a table.
b Would the points on a graph of the table of values be a straight line or a curve?
Give an explanation to support your answer.
Rebecca accepted a job which paid $44 000 in the first year and increased by 12% in
each following year.
c Show her salary for each of the first 10 years in a table.
d Would the points on a graph of the table of values be a straight line or a curve?
Give an explanation to support your answer.
2 An oil well started producing 1000 barrels of oil per day. The rate at which oil
production reduces each day is called the decline rate and is used to predict the
productive life of the oil well.
a Output for the first three days was recorded as:
1000, 980, 960.4
The decline rate is the percentage that production is reducing by each day. Calculate the
decline rate for this oil well.
b State the recurrence relation for the oil production Pn on the nth day of production.
c What is the expected production for the well on the tenth day of operation?
d How many days of production will be possible before the daily output falls below
700 barrels?
4
Chapter 8 Number patterns and recursion: Practice test
Multiple-choice questions
1 B
2 B
3 E
4 E
5 B
6 B
7 A
8 E
9 E
10 A
11 A
12 D
Extended-response questions
1 a
Year 1 2 3 4 5
Salary $50 000 $56 000 $62 000 $68 000 $74 000
Year 6 7 8 9 10
Salary $80 000 $86 000 $92 000 $98 000 $104 000
b A straight line. An arithmetic sequence produces a linear graph because the values
increase of decrease by a fixed amount. In this case the values increase by $7000.
c
Year 1 2 3 4 5
Salary $44 000 $49 280 $55 193.60 $61 816.83 $69 234.85
Year 6 7 8 9 10
Salary $77 543.03 $86 848.20 $97 269.98 $108 942.38 $122 015.47
5
Chapter 8 Number patterns and recursion: Practice test
d The graph would be a curve because the values do not increase by a constant
amount.
2 a 2%
b P1 = 1000, Pn+1 = 0.98Pn
c 833.75 barrels
d 18 days