3) What is the sum of the first 25 odd numbers? |
Method 1: Construct a sequence:
1. Make a sequence of the sums of the odd number and all the odd numbers that precede it:
element # | Odd number n | Sum n + n-1 + . . . |
1 | 1 | 1 |
2 | 3 | 4 |
3 | 5 | 9 |
4 | 7 | 16 |
5 |   |   |
Do you see the pattern here? (It involves the element # and the sum)
2. The sum of the first 25 odd numbers = ____
Method 2: Gauss' method:
1. Cut the numbers in half, making groups of the first 12 and the last 13 odd numbers (1 - 23) and (25 - 49)
2. Turn the second set around (49 + 47 + 45 + ...)
3. Now add them to the first set:
          1     3       5   ...
    + 49 + 47 + 45 + ...
4. Now you can see that each column adds to the same sum, but only 12
of them add this way, the last one is extra (because there are 25). Multiply this out and add the last number. Sum = _____
Method 3: Use the formula:
The formula for the sum of the first N terms of an arithmetic sequence is:
    Sum = (A1 + AN) N / 2, where:
    A1 is the first term
    AN is the last term.
Using this formula, the sum is _______
|