3

For all integers $n \ge 1$, prove 6 divides $n(n+1)(n+2)$ by PMI.

I check for my base case, it holds.

Then, my inductive hypothesis that for any arbitrary $n \ge 1$, 6 divides $n(n+1)(n+2)$ so there exists integer $k$ s.t $n(n+1)(n +2) = 6k$. Assume $(n+1)(n+2)= 6k/n$.

Inductive step: $(n+1)(n+1+1)(n+1+2) = (n+1)(n+2)(n+3)=(6k/n)(n+3)= 6k + (18k/n)$.

From here I can simply factor out a $6$ but how do I know that $18k/n$ is an integer?

I also struggle when it comes to the substitution part. When there is one $n$ involve is simple but when I see various $n$'s in my equation I'm unsure about which one I really want substitute for, any pointers?

Lastly, am I allowed to make various substitutions or am I confined to only substitute once? Thank you for your time.

3 Answers3

2

Note: You may prove your result directly by noting that among $n,(n+1)$, and $(n+2)$, one is a multiple of $3$ and at least one is even, yielding a factor of $6$. However, an inductive proof is still quite possible. Just something useful to keep in mind.

For each $n\geq 1$, let $S(n)$ denote the statement $$ S(n) : 6\mid n(n+1)(n+2). $$ Base step: Since $6$ divides $6, S(1)$ holds.

Inductive step: Fix some $k\geq 1$, and suppose that $S(k)$ holds; that is, suppose that $\ell\in\mathbb{Z}$ so that $$ k(k+1)(k+2)=6\ell. $$ Then trying to prove $S(k+1)$, \begin{align} (k+1)(k+2)(k+3) &= k(k+1)(k+2)+3(k+1)(k+2)\\[0.5em] &= 6\ell+3(k+1)(k+2), \end{align} and since one of $k+1$ or $k+2$ is even, $6$ divides $3(k+1)(k+2)$, and so $6$ divides $(k+1)((k+1)+1)((k+1)+2)$, proving that $S(k+1)$, and concluding the inductive step that $S(k)\to S(k+1)$.

By PMI, for every $n\geq 1, S(n)$ holds. $\blacksquare$

  • how do you go from (k+1)(k+2)(k+3) = k(k+1)(k+2) + 3(k+1)(k+2). – ponderingdev Mar 21 '15 at 21:38
  • @curiousmind1995 You see it now I presume? – Daniel W. Farlow Mar 21 '15 at 22:08
  • I see they're equal but is there a property or something you used to arrive to the RHS. when I foil my LHS I get k^3 + 6k^2 + 11k + 6. care to explain how you arrived to the RHS? – ponderingdev Mar 21 '15 at 22:23
  • 1
    @curiousmind1995 Don't foil. Note the following: $$ (k+1)(k+2)(\color{red}{k}+\color{red}{3}) = \color{red}{k}(k+1)(k+2)+\color{red}{3}(k+1)(k+2). $$ Make sense now? – Daniel W. Farlow Mar 21 '15 at 22:25
  • WOW.....okay. thank you so much! I have a habit of overcomplating things.. – ponderingdev Mar 21 '15 at 22:32
  • @curiousmind1995 No problem. Glad it helped. :) – Daniel W. Farlow Mar 21 '15 at 22:33
  • Nice proof but here : "$6$ divides $3(k+1)(k+2)$", I think it is better to say that $2$ and $3$ divides this expression. Since $\gcd(2,3)=1$ by the Chinese lemma we can conclude that $6$ divides this expression. – Maman Jul 17 '15 at 01:03
  • may this be generalized to every $n$ by the same proof ? meaning the product of sequences of $L$ consecutive numbers is divisible by $L!$ ... –  Sep 13 '16 at 19:24
1

Here's an alternative: To prove that $(n+1)(n+2)(n+3)$ is divisible by $6$, you just have to prove that $(n+1)(n+2)(n+3)-n(n+1)(n+2)$ is divisible by $6$. And if we compute that last expression we find it to be equal to $3n^2+9n+6=3(n+1)(n+2)$ which is divisible by $3$ and by $2$ (since it is a product of two consecutive integers), hence it is divisible by $6$, the thing that completes the proof.

You may ask yourself why does this method work? The reason can be demonstrated as follows: If $g(n):=(n+1)(n+2)(n+3)-n(n+1)(n+2)$ is divisible by $6$, then that means that there is some $k$ in $\mathbf N$ such that $g(n)=6k$. Now by the inductive hypothesis we have that $n(n+1)(n+2)$ is divisible by $6$, hence there is some $h$ in $\mathbf N$ such that $n(n+1)(n+2)=6h$. So now we can write the very first equality as :

$$ 6k=(n+1)(n+2)(n+3)-6h\iff(n+1)(n+2)(n+3)=6(h+k). $$

Since $h+k\in\mathbf N$, it follows that $(n+1)(n+2)(n+3)$ is divisible by $6$. $$\tag*{$\small\square$}$$

This technique is very powerful in the sense that it works in most cases: If you have an expression $P(n)$ and you want to show that it is divisible by some number $m$, then it all boils down to showing that the base case holds and that $P(n+1)-P(n)$ is divisible by $m$.

Workaholic
  • 6,763
1

Write $$(n+1)(n+2)(n+3) = n(n+1)(n+2) + 3(n+1)(n+2) = 6k +3(n+1)(n+2)$$ and prove by induction that $(n+1)(n+2)$ is divisible by $2$.

N.M.
  • 48