All questions
Question 1
The sequence an is defined recursively for n=1,2,3,… by a1=3 and an+1=3an. What is the next term after 3,9,27?
- 54
- 9
- 81 (correct answer)
- 30
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like a₁ = 3) and a rule for finding the next one (like aₙ₊₁ = 3aₙ, which means 'multiply the previous term by 3'). To find any term, you start at the beginning and apply the rule step by step. The sequence starts with 3, then 9 (33), then 27 (93), so the next term is 273 = 81. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice C is correct because it accurately calculates to get 81 by correctly evaluating each term following the recursive rule. Great work following the pattern! Choice B gets the first few terms right but makes an arithmetic error when calculating the fourth term, computing something like 272=54 instead of 27*3=81. With recursive sequences, one arithmetic slip affects all the terms after it! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps!
Question 2
A sequence is defined recursively by a1=2 and an+1=an−5 for n=1,2,3,…. What are the first four terms a1,a2,a3,a4?
- 2, −3, −8, −13 (correct answer)
- 2, 7, 12, 17
- 2, −3, −8, −3
- −3, −8, −13, −18
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like a₁ = 2) and a rule for finding the next one (like aₙ₊₁ = aₙ - 5, which means 'subtract 5 from the previous term'). Let's find the first four terms step by step using the recursive definition. We start with a₁ = 2. Then we apply the rule aₙ₊₁ = aₙ - 5: a₂ = a₁ - 5 = 2 - 5 = -3, then a₃ = a₂ - 5 = -3 - 5 = -8, and finally a₄ = a₃ - 5 = -8 - 5 = -13. So the first four terms are 2, -3, -8, -13. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice A is correct because it correctly evaluates each term following the recursive rule to get 2, -3, -8, -13. Great work following the pattern! Choice B adds 5 instead of subtracting 5. When following recursive rules, each step has to follow the exact rule—one small change throws off all the later terms! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. Remember: sequences ARE functions, just special ones! The input is always a positive integer (the term number), and the output is the term value.
Question 3
The sequence 1,1,2,3,5,… is defined by f(1)=1, f(2)=1, and f(n)=f(n−1)+f(n−2) for n≥3 (with domain n=1,2,3,…). What is f(6)?
- 5
- 8 (correct answer)
- 13
- 7
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. The Fibonacci sequence is a famous recursive sequence where each term is the sum of the two previous terms: f(1) = 1, f(2) = 1, and f(n) = f(n-1) + f(n-2) for n ≥ 3. So f(3) = f(2) + f(1) = 1 + 1 = 2, then f(4) = f(3) + f(2) = 2 + 1 = 3, and so on—each new term builds on the ones before it! For Fibonacci-style sequences where each term is based on the previous two, we need two starting values: f(1) = 1 and f(2) = 1. Then for each new term, we add the previous two: f(3) = f(2) + f(1) = 1 + 1 = 2, f(4) = f(3) + f(2) = 2 + 1 = 3, f(5) = f(4) + f(3) = 3 + 2 = 5, and f(6) = f(5) + f(4) = 5 + 3 = 8. It's like each term 'inherits' from its two parents! Choice B is correct because it correctly calculates f(6) = 8 by following the Fibonacci rule. Great work following the pattern! Choice A (5) is actually f(5), not f(6)—it stops one step too early. When finding a specific term, make sure to count carefully and continue all the way to the term you need! For Fibonacci-type sequences where each term combines previous terms, make a little table as you go: write n = 1, 2, 3, ... down one side and the term values across the top. This helps you keep track of what you've calculated and makes it easy to reference previous terms.
Question 4
A function f is defined on the integers n=1,2,3,… by f(1)=2 and f(n+1)=3f(n) for n≥1. What is f(4)?
- 18
- 54 (correct answer)
- 24
- 81
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like f(1) = 2) and a rule for finding the next one (like f(n+1) = 3f(n), which means 'multiply the previous term by 3'). Let's find f(4) step by step using the recursive definition. We start with f(1) = 2. Then we apply the rule f(n+1) = 3f(n): f(2) = 3·f(1) = 3·2 = 6, then f(3) = 3·f(2) = 3·6 = 18, and finally f(4) = 3·f(3) = 3·18 = 54. So f(4) = 54. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice B is correct because it properly follows the recursive rule, multiplying by 3 at each step to get 54. Great work following the pattern! Choice A makes an error by getting 18, which is actually f(3), not f(4). When following recursive rules, each step has to follow the exact rule—one small change throws off all the later terms! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. For geometric sequences like this one where we multiply by the same number each time, the values grow very quickly!
Question 5
A function f with domain n=0,1,2,3,… is defined recursively by f(0)=3 and f(n+1)=f(n)+5. What is f(3)?
- 15
- 23
- 13
- 18 (correct answer)
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like f(0) = 3) and a rule for finding the next one (like f(n+1) = f(n) + 5, which means 'add 5 to the previous term'). To find any term, you start at the beginning and apply the rule step by step. Let's find f(3) step by step using the recursive definition. We start with f(0) = 3. Then we apply the rule f(n+1) = f(n) + 5: f(1) = 3 + 5 = 8, then f(2) = 8 + 5 = 13, and f(3) = 13 + 5 = 18. So f(3) = 18. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice C is correct because it accurately calculates to get 18 by correctly evaluating each term following the recursive rule. Great work following the pattern! Choice D makes an error by stopping at f(2), giving 13 instead of continuing to add 5 for f(3). When following recursive rules, each step has to follow the exact rule—one small change throws off all the later terms! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps! If you need the 3rd term, you'll typically need to find the 1st and 2nd terms along the way.
Question 6
A function f is defined on the positive integers (so the domain is n=1,2,3,…) by f(1)=2 and f(n+1)=2f(n) for n≥1. What is f(5)?
- 10
- 32 (correct answer)
- 64
- 16
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like f(1) = 2) and a rule for finding the next one (like f(n+1) = 2f(n), which means 'multiply the previous term by 2'). To find any term, you start at the beginning and apply the rule step by step. Let's find f(5) step by step using the recursive definition. We start with f(1) = 2. Then we apply the rule f(n+1) = 2f(n): f(2) = 22 = 4, then f(3) = 24 = 8, then f(4) = 28 = 16, and f(5) = 216 = 32. So f(5) = 32. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice C is correct because it accurately calculates to get 32. Choice A gets the first few terms right but makes an arithmetic error when calculating f(5), computing 28=16 instead of continuing to 216=32. With recursive sequences, one arithmetic slip affects all the terms after it! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps! If you need the 5th term, you'll typically need to find the 2nd, 3rd, and 4th terms along the way.
Question 7
A function f is defined only for integers n=1,2,3,… by f(1)=2 and f(n+1)=2f(n). What is f(4)?
- 8
- 10
- 16 (correct answer)
- 32
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like f(1) = 2) and a rule for finding the next one (like f(n+1) = 2f(n), which means 'multiply the previous term by 2'). To find any term, you start at the beginning and apply the rule step by step. Let's find f(4) step by step using the recursive definition. We start with f(1) = 2. Then we apply the rule f(n+1) = 2f(n): f(2) = 2 * 2 = 4, then f(3) = 2 * 4 = 8, and f(4) = 2 * 8 = 16. So f(4) = 16. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice C is correct because it accurately calculates to get 16 by correctly evaluating each term following the recursive rule. Great work following the pattern! Choice D makes an error in the last step, multiplying by 2 one extra time to get 32 instead of stopping at f(4). When following recursive rules, each step has to follow the exact rule—one small change throws off all the later terms! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps! If you need the 4th term, you'll typically need to find the 2nd and 3rd terms along the way.
Question 8
The sequence 2, 5, 8, 11, … is a function with domain n=1,2,3,…. How is this sequence defined recursively?
- a1=2, an+1=an+3 (correct answer)
- a1=5, an+1=an+3
- a1=2, an+1=an⋅3
- a1=2, an+1=an−3
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A sequence is just a function where the inputs are whole numbers (like 1, 2, 3, ...) and each output is called a term: the first term a₁, the second term a₂, and so on. We can think of a sequence as a list of numbers where each number's position (1st, 2nd, 3rd) is its input! Looking at the sequence 2, 5, 8, 11, ..., let's find the pattern between consecutive terms: from 2 to 5, we add 3. From 5 to 8, we add 3 again. From 8 to 11, we add 3 once more. This pattern holds for all consecutive terms, so the recursive rule is aₙ₊₁ = aₙ + 3, with starting value a₁ = 2. Choice A is correct because it correctly identifies the pattern as adding 3 each time and starts with the right initial value of 2. Great work following the pattern! Choice B has the wrong starting value, using a₁ = 5 instead of a₁ = 2. The starting value is crucial in recursive sequences—like the first domino that sets everything else in motion! To write a recursive rule from a sequence, compare consecutive terms: What's happening from term to term? Are we adding the same number (arithmetic)? Multiplying by the same number (geometric)? Once you spot the pattern, write it as aₙ₊₁ = [rule using aₙ], and don't forget to state your starting value!
Question 9
A sequence is defined recursively by a1=4 and an+1=an+3 for n=1,2,3,…. What is a5?
- 13
- 16 (correct answer)
- 19
- 15
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like a₁ = 4) and a rule for finding the next one (like aₙ₊₁ = aₙ + 3, which means 'add 3 to the previous term'). Let's find a₅ step by step using the recursive definition. We start with a₁ = 4. Then we apply the rule aₙ₊₁ = aₙ + 3: a₂ = a₁ + 3 = 4 + 3 = 7, then a₃ = a₂ + 3 = 7 + 3 = 10, then a₄ = a₃ + 3 = 10 + 3 = 13, and finally a₅ = a₄ + 3 = 13 + 3 = 16. So a₅ = 16. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice B is correct because it correctly evaluates each term following the recursive rule to get 16. Great work following the pattern! Choice A (13) is actually a₄, not a₅—it stops one step too early. When finding a specific term, make sure to count carefully and continue all the way to the term you need! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps! If you need the 5th term, you'll typically need to find the 2nd, 3rd, and 4th terms along the way.
Question 10
A sequence is defined recursively by a1=4 and an+1=an+3 for n=1,2,3,…. What is a5?
- 19
- 16 (correct answer)
- 15
- 13
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like a1=4) and a rule for finding the next one (like an+1=an+3, which means 'add 3 to the previous term'). To find any term, you start at the beginning and apply the rule step by step. Let's find a5 step by step using the recursive definition. We start with a1=4. Then we apply the rule an+1=an+3: a2=4+3=7, then a3=7+3=10, then a4=10+3=13, and a5=13+3=16. So a5=16. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice B is correct because it accurately calculates to get 16. Choice A makes an error in the 5th step: it stops at 13 instead of adding 3 one more time. When following recursive rules, each step has to follow the exact rule—one small change throws off all the later terms! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps! If you need the 5th term, you'll typically need to find the 2nd, 3rd, and 4th terms along the way. Question 11
A sequence is defined by the explicit formula an=12−2n for n=1,2,3,…. What is a4?
- 6
- 2
- 4 (correct answer)
- 8
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with explicitly defined sequences. A sequence is just a function where the inputs are whole numbers (like 1, 2, 3, ...) and each output is called a term: the first term a₁, the second term a₂, and so on. We can think of a sequence as a list of numbers where each number's position (1st, 2nd, 3rd) is its input! Unlike recursive definitions, an explicit formula like aₙ = 12 - 2n lets us find any term directly by plugging in the value of n. To find a₄, we simply substitute n = 4 into the formula: a₄ = 12 - 2(4) = 12 - 8 = 4. So the 4th term is 4. Choice C is correct because it properly evaluates the explicit formula with n = 4 to get 4. Great work following the pattern! Choice D gives 8, which might come from calculating 12 - 4 = 8 instead of 12 - 2(4) = 4. Remember to multiply 2 times n before subtracting from 12! The beauty of explicit formulas is that you can jump directly to any term—no need to find all the terms before it! Notice that this sequence decreases by 2 each time: a₁ = 10, a₂ = 8, a₃ = 6, a₄ = 4, and so on.
Question 12
A sequence is defined recursively by a1=9 and an+1=an−2 for n=1,2,3,…. What are the first four terms a1,a2,a3,a4?
- 9, 7, 5, 3 (correct answer)
- 9, 11, 13, 15
- 9, 7, 6, 4
- 7, 5, 3, 1
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like a₁ = 9) and a rule for finding the next one (like aₙ₊₁ = aₙ - 2, which means 'subtract 2 from the previous term'). Let's find the first four terms step by step using the recursive definition. We start with a₁ = 9. Then we apply the rule aₙ₊₁ = aₙ - 2: a₂ = a₁ - 2 = 9 - 2 = 7, then a₃ = a₂ - 2 = 7 - 2 = 5, and finally a₄ = a₃ - 2 = 5 - 2 = 3. So the first four terms are 9, 7, 5, 3. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice A is correct because it properly follows the recursive rule, subtracting 2 at each step to get 9, 7, 5, 3. Great work following the pattern! Choice B shows an increasing sequence (9, 11, 13, 15) which would come from adding 2 instead of subtracting 2. When following recursive rules, each step has to follow the exact rule—one small change throws off all the later terms! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps!
Question 13
The sequence (an) is defined recursively for n=1,2,3,… by a1=5 and an+1=an+4. What is a6?
- 25 (correct answer)
- 21
- 29
- 9
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like a₁ = 5) and a rule for finding the next one (like aₙ₊₁ = aₙ + 4, which means 'add 4 to the previous term'). Let's find a₆ step by step using the recursive definition. We start with a₁ = 5. Then we apply the rule aₙ₊₁ = aₙ + 4: a₂ = a₁ + 4 = 5 + 4 = 9, then a₃ = a₂ + 4 = 9 + 4 = 13, then a₄ = a₃ + 4 = 13 + 4 = 17, then a₅ = a₄ + 4 = 17 + 4 = 21, and finally a₆ = a₅ + 4 = 21 + 4 = 25. So a₆ = 25. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice B is correct because it correctly evaluates each term following the recursive rule to get 25. Great work following the pattern! Choice C makes an error by adding 5 instead of 4 at some step, getting 29. When following recursive rules, each step has to follow the exact rule—one small change throws off all the later terms! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps! If you need the 6th term, you'll typically need to find the 2nd, 3rd, 4th, and 5th terms along the way.
Question 14
A sequence is defined recursively for n=1,2,3,… by a1=10 and an+1=an−2. What are the first four terms of the sequence?
- 10, 8, 6, 4 (correct answer)
- 8, 6, 4, 2
- 10, 12, 14, 16
- 10, 8, 6, 8
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like a₁ = 10) and a rule for finding the next one (like aₙ₊₁ = aₙ - 2, which means 'subtract 2 from the previous term'). Let's find the first four terms step by step using the recursive definition. We start with a₁ = 10. Then we apply the rule aₙ₊₁ = aₙ - 2: a₂ = a₁ - 2 = 10 - 2 = 8, then a₃ = a₂ - 2 = 8 - 2 = 6, and a₄ = a₃ - 2 = 6 - 2 = 4. So the first four terms are 10, 8, 6, 4. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice A is correct because it correctly evaluates each term following the recursive rule to get 10, 8, 6, 4. Great work following the pattern! Choice D has the right pattern but starts with the wrong initial value, using 8 instead of 10. The starting value is crucial in recursive sequences—like the first domino that sets everything else in motion! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps! If you need the 4th term, you'll typically need to find the 2nd and 3rd terms along the way.
Question 15
A sequence is defined recursively for n=1,2,3,… by a1=1 and an+1=an+5. What is the next term after 16 in this sequence?
- 20
- 21 (correct answer)
- 25
- 11
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like a₁ = 1) and a rule for finding the next one (like aₙ₊₁ = aₙ + 5, which means 'add 5 to the previous term'). Looking at this sequence with a₁ = 1 and the rule aₙ₊₁ = aₙ + 5, we can see that each term is 5 more than the previous one. If we have the term 16, then the next term is 16 + 5 = 21. We don't even need to figure out which term number 16 is—the recursive rule tells us that whatever term we're at, we just add 5 to get the next one! Choice B is correct because it correctly applies the recursive rule: next term = current term + 5 = 16 + 5 = 21. Great work following the pattern! Choice A gives 20, which would be correct if we were adding 4 instead of 5. When following recursive rules, make sure you're using the exact operation given—here it's 'add 5,' not 'add 4'! The beauty of recursive definitions is that they describe the pattern in the simplest way: once you know any term, you can immediately find the next one by applying the rule. You don't need to know if 16 is the 3rd term or the 30th term—just add 5! Remember: sequences ARE functions, just special ones where you can always find the next output by applying a rule to the current output.
Question 16
The sequence an (a function on n=1,2,3,…) begins 5,9,13,17,…. Which recursive rule generates this sequence?
- a1=5, an+1=an+4 (correct answer)
- a1=9, an+1=an+4
- a1=5, an+1=4an
- a1=5, an+1=an+5
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like a₁ = 5) and a rule for finding the next one (like aₙ₊₁ = aₙ + 4, which means 'add 4 to the previous term'). To find any term, you start at the beginning and apply the rule step by step. Looking at the sequence 5, 9, 13, 17, ..., let's find the pattern between consecutive terms: from 5 to 9, we add 4. From 9 to 13, we add 4. This pattern holds for all consecutive terms, so the recursive rule is aₙ₊₁ = aₙ + 4, with starting value a₁ = 5. Choice A is correct because it properly identifies the pattern as adding 4 each time with the correct starting value of 5. Great work following the pattern! Choice B has the right pattern but starts with the wrong initial value, using 9 instead of 5. The starting value is crucial in recursive sequences—like the first domino that sets everything else in motion! To write a recursive rule from a sequence, compare consecutive terms: What's happening from term to term? Are we adding the same number (arithmetic)? Multiplying by the same number (geometric)? Adding the previous two (Fibonacci-style)? Once you spot the pattern, write it as aₙ₊₁ = [rule using aₙ], and don't forget to state your starting value! The beauty of recursive definitions is that they describe the pattern in the simplest way: 'start at 5, add 4 each time' is clear and natural.
Question 17
A sequence is defined as a function f on n=1,2,3,… by f(1)=2 and f(n+1)=f(n)+f(n) (double the previous value). What are the first four terms f(1),f(2),f(3),f(4)?
- 2, 4, 6, 8
- 2, 4, 8, 16 (correct answer)
- 2, 2, 2, 2
- 4, 8, 16, 32
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like f(1) = 2) and a rule for finding the next one (like f(n+1) = f(n) + f(n), which means 'double the previous term'). Let's find the first four terms step by step using the recursive definition. We start with f(1) = 2. Then we apply the rule f(n+1) = f(n) + f(n) = 2f(n): f(2) = f(1) + f(1) = 2 + 2 = 4, then f(3) = f(2) + f(2) = 4 + 4 = 8, and f(4) = f(3) + f(3) = 8 + 8 = 16. So the first four terms are 2, 4, 8, 16. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice B is correct because it correctly evaluates each term following the recursive rule to get 2, 4, 8, 16. Great work following the pattern! Choice A makes an error by adding 2 instead of doubling, getting 2, 4, 6, 8. When following recursive rules, each step has to follow the exact rule—one small change throws off all the later terms! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps! The beauty of recursive definitions is that they describe the pattern in the simplest way: 'start at 2, double each time' is clear and natural.
Question 18
A function f is defined on the integers n=1,2,3,… by f(1)=8 and f(n+1)=f(n)−1. What are f(1),f(2),f(3),f(4)?
- 8, 7, 6, 5 (correct answer)
- 8, 9, 10, 11
- 7, 6, 5, 4
- 8, 7, 5, 4
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like f(1) = 8) and a rule for finding the next one (like f(n+1) = f(n) - 1, which means 'subtract 1 from the previous term'). Let's find f(1), f(2), f(3), f(4) step by step using the recursive definition. We start with f(1) = 8. Then we apply the rule f(n+1) = f(n) - 1: f(2) = f(1) - 1 = 8 - 1 = 7, then f(3) = f(2) - 1 = 7 - 1 = 6, and finally f(4) = f(3) - 1 = 6 - 1 = 5. So the first four terms are 8, 7, 6, 5. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice A is correct because it correctly evaluates each term following the recursive rule to get 8, 7, 6, 5. Great work following the pattern! Choice B adds 1 instead of subtracting 1. When following recursive rules, each step has to follow the exact rule—one small change throws off all the later terms! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. Remember: sequences ARE functions, just special ones! The input is always a positive integer (the term number), and the output is the term value.
Question 19
A sequence is defined recursively for n=1,2,3,… by a1=10 and an+1=an−2. What are the first four terms a1,a2,a3,a4?
- 10,8,6,4 (correct answer)
- 10,12,14,16
- 10,8,7,6
- 8,6,4,2
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with recursively defined sequences. A recursive definition tells you how to get each term from the previous term(s): it gives you a starting value (like a₁ = 10) and a rule for finding the next one (like aₙ₊₁ = aₙ - 2, which means 'subtract 2 from the previous term'). Let's find the first four terms step by step using the recursive definition. We start with a₁ = 10. Then we apply the rule aₙ₊₁ = aₙ - 2: a₂ = a₁ - 2 = 10 - 2 = 8, then a₃ = a₂ - 2 = 8 - 2 = 6, and finally a₄ = a₃ - 2 = 6 - 2 = 4. So the first four terms are 10, 8, 6, 4. Building sequences recursively is like climbing stairs—each step depends on the one before! Choice A is correct because it correctly evaluates each term following the recursive rule to get 10, 8, 6, 4. Great work following the pattern! Choice C makes an error in the third step: it shows 10, 8, 7, 6, which suggests subtracting 2, then 1, then 1—but the rule says to subtract 2 every time. When following recursive rules, each step has to follow the exact rule—one small change throws off all the later terms! When working with recursively defined sequences, always start by writing down the initial term(s) clearly, then apply the rule one step at a time, calculating each new term before moving to the next. It's like following a recipe—don't skip steps! The beauty of recursive definitions is that they describe the pattern in the simplest way: 'start at 10, subtract 2 each time' is clear and natural.
Question 20
A sequence is defined by the explicit formula an=2n+1 for n=1,2,3,…. What is a6?
- 11
- 13 (correct answer)
- 12
- 9
Explanation: This question tests your understanding that sequences are special functions with integer domains, and how to work with explicitly defined sequences. A sequence is just a function where the inputs are whole numbers (like 1, 2, 3, ...) and each output is called a term: the first term a₁, the second term a₂, and so on. We can think of a sequence as a list of numbers where each number's position (1st, 2nd, 3rd) is its input! Unlike recursive definitions, an explicit formula like aₙ = 2n + 1 lets us find any term directly by plugging in the value of n. To find a₆, we simply substitute n = 6 into the formula: a₆ = 2(6) + 1 = 12 + 1 = 13. So the 6th term is 13. Choice B is correct because it properly evaluates the explicit formula with n = 6 to get 13. Great work following the pattern! Choice A gives 11, which would be a₅ (since 2(5) + 1 = 11), not a₆. When using explicit formulas, make sure you're substituting the correct value of n! The beauty of explicit formulas is that you can jump directly to any term—want the 100th term? Just calculate a₁₀₀ = 2(100) + 1 = 201. No need to find all the terms before it! This is much faster than recursive definitions when you need a term far along in the sequence.