Question:
Let $m \in Z$. Prove that if $m$ is the product of four consecutive integers, then $m + 1$ is a perfect square (that is, $m + 1 = k^{2}$ for some $k \in Z$).
Answer:
Since $m$ is a product of four consecutive integers, we may assume that $m=(k-1)k(k+1)(k+2)$ for some integer $k$. Thus,
$$m+1 = [k(k+1)][(k-1)(k+2)]+1=(k^{2}+k)(k^{2}+k-2)+1=(k^{2}+k)^{2}-2(k^{2}+k)+1=(k^{2}+k-1)^{2}$$
My question is, how would someone find a proof like this, why starting with $k-1$ and not $k$ or $k+2$, is it just bruteforce? and if we make the first choice "right", how would one deduce that we can rewrite the product as $(k^{2}+k-1)^{2}$, is it just a trick I should know? I mean I probably could solve this exercise, but it would take me a whole day of trial and error, maybe more. Would this me normal?
You can start with $k$ or $k+2$ or $k+100$ instead of $k-1$. Just the formulas will be a little longer.
You need to recognize the square of a sum $(a+b)^2=a^2+2ab+b^2=a(a+2b)+b^2$ and expect that somewhere in your computation you should be using that.