Here is the problem in full:
A heap has $x$ marbles, where $x$ is a positive integer. The following process is repeated until the heap is broken down into single marbles: choose a heap with more than 1 marble and form two non-empty heaps from it. One will contain $n$ marbles and the other $m$ marbles. Each time this is done, record the product $nm$. Use induction to show the sum of your recorded products is $\binom{x}{2}$ no matter what the sequence of dividing the heap is.
So, using induction: We assume truth when there are $k$ marbles, where $k$ is a positive integer. We test the basis case $k = 1$, which is a one marble pile. $\binom{1}{2} = 0$, and splitting into a pile with 1 marble and a pile with 0 marbles also gives a product of 0, so the basis case is true. Next we demonstrate truth when $x=k+1$. We begin by making a pile of size 1 and a pile of size $k$. The product that we get from this split is $k$. The induction hypothesis says $k$ marbles ends up with a result of $\binom{k}{2}$. I can't prove it just yet (I need help here too) but I know $k + \binom{k}{2} = \binom{k+1}{2}$. Therefore the proof is shown.
Now, I need help here. I don't think this is right because of the part, "no matter what the sequence of dividing the heap is." I think I violated this when I make a pile of size 1 specifically during the induction step. Could strong induction somehow help me here? I just can't really see how.
Additionally, if anyone could point me to a proof for $k + \binom{k}{2} = \binom{k+1}{2}$ I would really appreciate being able to understand this one from an analytic standpoint too.
Thanks.
Let’s dispose of the technical point first. By straight algebra,
$$k+\binom{k}2=k+\frac{k(k-1)}2=\frac{2k+k^2-k}2=\frac{k(k+1)}2=\binom{k+1}2\;.$$
Alternatively,
$$k+\binom{k}2=\binom{k}1+\binom{k}2=\binom{k+1}2$$
by the Pascal’s triangle identity.
You’re quite right that it’s not sufficient to consider splitting your $k+1$ pile into piles of size $1$ and $k$. In fact, you want to use what’s often called strong induction: suppose that the result is true for piles of size less than $k$, and show that it’s then necessarily true for piles of size $k$. Now you split your pile of size $k$ into piles of sizes $m$ and $n$, where $m,n\ge 1$ and $m+n=k$, and your induction hypothesis tells you that the pile of size $m$ will contribute a total of $\binom{m}2$, while the pile of size $n$ will contribute a total of $\binom{n}2=\binom{k-m}2$. In addition, of course, this split will contribute $mn$. Thus, you’ll end up with
$$\binom{m}2+\binom{k-m}2+m(k-m)\;.$$
Now do some algebra, more or less along the lines of what I did at the top.