Problem: James has a pile of n stones for some positive integer n ≥ 2. At each step, he chooses one pile of stones and splits it into two smaller piles and writes the product of the new pile sizes on the board. He repeats this process until every pile is exactly one stone.
For example, if James has n = 12 stones, he could split that pile into a pile of size 4 and another pile of size 8. James would then write the number 4 · 8 = 32 on the board. He then decides to split the pile of 4 stones into a pile with 1 stone and a pile with 3 stones and writes 1 · 3 = 3 on the board. He continues this way until he has 12 piles with one stone each.
Prove that no matter how James splits the piles (starting with a single pile of n stones), the sum of the numbers on the blackboard at the end of the procedure is always the same.
Hint: First figure out what the formula for the final sum will be. Then prove it using strong induction.
The formula I came up with is $n(n-1) / $2. It could be totally wrong...
My (Partial) Solution:
1) Base Case: (n=2) James has one pile of 2 stones. Suppose he takes the top-most stone and puts in one pile A, which now has size 1. He takes the remaining stone and places it into another pile B, which now has size 1. Then the product of the sizes is 1. The sum of all the products on his board is 1. Now, if he were to start again, and take the bottom stone first and put it in pile A, he has a pile of size 1, and then takes the top stone and puts it in pile B, he has a pile of size 1, and the product is 1, with sum of all products on the board is 1.
2) Inductive Hypothesis (Strong Induction): Suppose for some $k \geq 2$, $n$ stones can be split in $ 2 \leq n \leq k $ stones and $k-n$ stones.
3) Inductive Step: Consider $n=k+1$. What do I do now?