Difficulty: Easy
Correct Answer: -128
Explanation:
Introduction / Context:
This is a classic alternating-sign geometric sequence. The absolute value doubles each step, while the sign flips positive/negative alternately.
Given Data / Assumptions:
Concept / Approach:
A geometric pattern with consistent doubling implies next magnitude is previous magnitude * 2. The sign alternates each term, so follow the established sign order.
Step-by-Step Solution:
Verification / Alternative check:
Express as term n: a1 = 4, a(n) = 4 * 2^(n−1) with sign (−1)^(n−1). For n = 6, a6 = −128, which matches.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting to alternate signs while applying the geometric factor. Track both magnitude and sign positions.
Final Answer:
-128
Discussion & Comments