Difficulty: Easy
Correct Answer: -50
Explanation:
Introduction / Context:We sum the first 100 integers with alternating signs. Grouping consecutive pairs simplifies the computation because each pair contributes a constant amount.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
(1 − 2) = −1(3 − 4) = −1⋯ 50 pairs in totalSum = 50 * (−1) = −50Verification / Alternative check:Partial sums oscillate: S_2 = −1, S_4 = −2, … S_100 = −50, confirming the pairwise method.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:−50
Discussion & Comments