Difficulty: Easy
Correct Answer: 15
Explanation:
Given data
Concept/ApproachAlternating increments: +1, +3, +1, +3, +1, ...
Step-by-Step calculation3 + 1 = 44 + 3 = 77 + 1 = 88 + 3 = 1111 + 1 = 12Next: 12 + 3 = 15
Verification/AlternativeView as two interleaved sequences of increments repeating every two steps.
Common pitfalls
Final Answer15
Discussion & Comments