I am starting to learn about proofs and I ran into this problem:
Prove that the product of 3 sequential numbers is divisible by 3
I am going to present my thoughts on how to prove that and any feedback about whether it is wrong or not would be very appreciated. Thank you in advance
Lets fisrt prove that n³-n
is divisible by 3 using Induction:
Constraints
n ∈ Z - {-1, 0, 1}
m ∈ Z
When n = 2,
n³ - n = 6 -> Proved for the base case
n = k
Then k³ - k = 3m
Lets proof for (k + 1)
(k + 1)³ - (k + 1)
= k³ - k + 3k² + 3k
= 3m + 3k² + 3k
= 3(k² + k + m) -> Proved
Now, lets prove the conjecture of this question by deduction, which is:
Prove that the product of 3 sequential numbers is divisible by 3
(n - 1)(n)(n + 1)
= (n² - n)(n + 1)
= n³ - n
Because It was previously proved that n³ - n is in fact divisible by 3, then it is proved as well