1

The known formula for the sum of the first n natural numbers n(n+1)/2 is not intuitive at all. One proof for that formula is to duplicate the numbers and arrange it in pairs which sums up to n+1 and then sum up all the numbers:

1+2+3+4+5
+
5+4+3+2+1
= 2 (1+2+3+4+5) = n(n+1)

It is a really nice proof and also very direct and intuitive. But I have come up with this alternative:

Suppose there are n+1 people meeting and they all shake hands with each other. To count how many hand shakes are in total, one can start counting the hand shakes for one person which is n. Then for a second person count her hand shakes, but don't count the hand shake with the first person, because that one was already counted, so in total, for the second person, we count n-1, and so on. The total hand shakes is then the sum of the first n natural numbers.

But now we can count the hand shakes in a simpler way. There are n+1 people in total, and each of them shakes hand with n people. Then n(n+1) is twice the hands shake, because we are counting twice each hand shake. So the total hand shakes must be n(n+1)/2

The two ways of counting have to arrive to the same number so the formula holds.

I wonder how can this proof be formalized so it would be accepted as a real mathematical proof.

nadapez
  • 252
  • 3
    That very nice argument is a rephrasing of the associated proof without words. The argument you want is the second one (with a rectangle) – lulu Dec 07 '21 at 13:58
  • 5
    What matters in a "real mathematical proof" is not whether you used mathematical notation, symbols, $\epsilon, \delta, \Delta, \int\sin\cos\log\sum\prod$ etc. but whether the argument follows logically. Mathematical notation is just sometimes a shorter way to express those ideas. (Sometimes it's not.) –  Dec 07 '21 at 14:00
  • @lulu I thought there's only one proof of this fact on the AOPS webpage. The rectangle and triangle are part of the same proof, no? – Rushabh Mehta Dec 07 '21 at 14:01
  • 3
    Why do you want to formalize this crystal-clear proof ? Do you have any doubts of its correctness ? You can prove the formula for the sum of the first $n$ positive integers with induction , if you want. This is then clearly a formal proof. – Peter Dec 07 '21 at 14:02
  • @DonThousand I just meant that the first picture on that link was a proof for the fact that the sum of the odd integers gives the squares. As you say, the relevant proof does use both a triangle and a square. – lulu Dec 07 '21 at 14:13

1 Answers1

0

you can do it very nicely using graphs. Let G be an undirected complete graph on $n+1$ vertices. each vertice represents one of the people in your meeting, and each edge represents a handshake between two people. We want to count the number of edges in this graph. It is simply $${n+1 \choose 2} = \frac{n(n+1)}{2}$$ because ${n+1 \choose 2}$ counts the number of subsets of $\text{{1,2,...,n+1} }$with cardinality 2, and we can match each subset to an edge between these 2 vertices and as a handshake between these two people the vertices are representing.

Another fascinating way to get this is by the degree sum formula, where we get that the number of edges is: $$2\cdot|E| = \sum_{i=1}^{n+1}deg(v)$$ $$2\cdot|E| = \sum_{i=1}^{n+1}n$$ $$2\cdot|E| = n(n+1)$$ $$|E| = \frac{n(n+1)}{2}$$ as we wanted.