CAT 2021 Slot 1 — QA Question 21
Miscellaneous ProgressionsEasy
If x0 = 1, x1 = 2 and xn+2 = , n = 0, 1, 2, 3, …, then x2021 is equal to
Answer & solution
- A
1
- B
3
- C
4
2
Solution
Easy
Recurrences like this almost always become periodic. Compute the first several terms directly from until the starting pair reappears; that reveals the period. Then reduce modulo the period.
1
Generate terms. Start from .
2
Spot the period. Since , the sequence repeats with period :
3
Reduce the index.