Gauss's Trick - Arithmetic Sums

  • Context: High School 
  • Thread starter Thread starter Johnathanrs
  • Start date Start date
  • Tags Tags
    Arithmetic Sums
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
Johnathanrs
Messages
1
Reaction score
0
I can't grasp the underlying process on how this is working.

n/2(f+l) = algorithm sum of all integers
n= number of all integers
f= first integer
l= last integer

Example: 1, 2, 3, 4
4/2(1+4)
2(5) = 10

I know how to do it, but I don't really understand how to actually do it. Am I just too stupid?

Why do I need to split the sum of all integers?
Why am I adding the first + last integer?
Why when I times them together does it work?
How did he create the algorithm for this?
 
Mathematics news on Phys.org
What Gauss did (according to the usual story) was to pair off the numbers like this.
Suppose you want to sum the 9 numbers 7 8 9 10 11 12 13 14 15
7 + 15 = 22
8 + 14 = 22
9 + 13 = 22
10 + 12 = 22
11 = 22/2
So the sum = (9/2)(22) = (9/2)(7+15)