What is the difference between the sum of the first even counting numbers and the sum of the first odd counting numbers?
- A)
- B)
- C)
- D)
- E)
Answer
D
Key insight
Pair the k-th even number 2k with the k-th odd number 2k-1; every pair differs by exactly 1, and there are 2003 pairs.
Solution
The -th even counting number is and the -th odd counting number is . Line the two lists up term by term:
Each of the parentheses equals , so the difference of the two sums is .
The answer is .
Why this works
Subtracting two sums with the same number of terms can be done term by term, and here every term-wise difference is constant. Whenever two sequences are "shifted copies" of each other, compare corresponding terms instead of evaluating each sum separately.
Alternative approach
Arithmetic series: the evens sum to , and the odds sum to . The difference is .
The trap
Computing each sum with the arithmetic-series formula and slipping on the arithmetic, or answering 1 by looking at a single pair.
Common mistakes
- Computing each sum with the arithmetic-series formula and slipping on the arithmetic, or answering 1 by looking at a single pair.
- Starting the even numbers at ; the counting numbers begin at , so the first even counting number is (though the term-by-term difference would still be per pair).
Techniques
Set up the equation/formula and compute; no special trick needed · Exploit symmetry to reduce work or pair up objects