True or false :
n ( n + 1 ) ( 2 n + 1 ) is divisible by 6 for all positive integers n .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Nice solution. My approach was as follows. Since one of n or n + 1 must be even we know that the given product is divisible by 2 . Now if either n or n + 1 is divisible by 3 then the given product is divisible by 2 ∗ 3 = 6 . If neither n nor n + 1 is divisible by 3 then n + 2 must be divisible by 3 , since precisely one of three consecutive integers is divisible by 3 . But then with n + 2 = 3 m for some integer m we find that
2 n + 1 = ( 3 n + 3 ) − ( n + 2 ) = 3 ( n + 1 ) − 3 m = 3 ( n + 1 − m ) ,
which means that 3 ∣ ( 2 n + 1 ) , and hence 6 ∣ n ( n + 1 ) ( 2 n + 1 ) .
Log in to reply
To prove that if n , ( n + 1 ) are not multiples of 3 then 2 n + 1 is a multiple of 3 we can first observe that n + 2 must be a multiple of 3 . This will imply that 2 n + 4 should also be a multiple of 3 .
2 n + 1 = 2 n + 4 − 3
Therefore it is a multiple of 3 too.
Yeah.... I also did the exact same ...
A very nice way. Good job.
Very good! Bonus question: for all natural numbers n , what is n 2 ( n + 1 ) 2 divisible by?
Log in to reply
1^3+2^3+3^3+...+n^3=(n(n+1))^2/4. So the answer is 4/
Log in to reply
Yes, this is correct. Alternatively, note that either the term n or n + 1 will be even. Upon squaring both terms, we get the product of an odd number and an even number divisible by 2 × 2 = 4 .
still I couldn't get it
Nice approach! I find it better than using the writing a proof by induction .
Log in to reply
I've left the use of Induction. Once you start doing high level problems Induction becomes nasty
My approach was as follows. Since one of n or n + 1 must be even we know that the given product is divisible by 2 . Now if either n or n + 1 is divisible by 3 then the given product is divisible by 2 ∗ 3 = 6 . If neither n nor n + 1 is divisible by 3 then n + 2 must be divisible by 3 , since precisely one of three consecutive integers is divisible by 3 . But then with n + 2 = 3 m for some integer m we find that
2 n + 1 = ( 3 n + 3 ) − ( n + 2 ) = 3 ( n + 1 ) − 3 m = 3 ( n + 1 − m ) ,
which means that 3 ∣ ( 2 n + 1 ) , and hence 6 ∣ n ( n + 1 ) ( 2 n + 1 ) .
2 n + 1 = ( n − 1 ) + ( n + 2 )
∴ n ( n + 1 ) ( 2 n + 1 ) = ( n − 1 ) ( n ) ( n + 1 ) + ( n ) ( n + 1 ) ( n + 2 )
3 ! = 6 ∣ k ( k + 1 ) ( k + 2 ) where k ∈ N
∴ 6 ∣ ( n − 1 ) ( n ) ( n + 1 ) + ( n ) ( n + 1 ) ( n + 2 )
⇒ 6 ∣ n ( n + 1 ) ( 2 n + 1 )
This can be proved by using induction on n
One of two consecutive integers is divisible by 2.
One of three consecutive integers is divisible by 3.
Therefore the multiple of three consecutive integers is divisible by 6.
My solution: Call A = n ( n + 1 ) ( 2 n + 1 ) Mutiply A by 4, we get: 4 A = ( 2 n ) ( 2 n + 1 ) 2 ( n + 1 ) = 2 n ( 2 n + 1 ) ( 2 n + 2 ) In two even numbers, 2 n and 2 n + 2 , there exist a number which is divisible by 4 , and the others is divisible by 2 .Beside that, these are 3 consecutive integer, so there is also exist a number which is divisible by 3 , so ( 4 × 3 × 2 ) ∣ 4 A ⟺ 2 4 ∣ 4 A ⇒ 4 2 4 ∣ 4 4 A ⟺ 6 ∣ A
2n+1=n+(n+1). The number n(n+1)(2n+1) is a product of two consecutive numbers multiplied by their sum. One of the two consecutive number has to be even, so the product is divisible by 2. If n and n+1 are not divisible by 3, then their sum has to be divisible by 3 because n and n+1 when divided by 3 would leave a remainder of 1 & 2 respectively and therefore, their sum would leave a remainder of 1+2=3 i. e. would be divisible by 3. Hence the number is divisible by 6.
Let f(n) = n(n+1)(2n+1), where n is an element of the set of positive integers. f(1) = 1×2×3=6, which is divisible by 6. Assume that for n=k, f(k) = k(k+1)(2k+1) is divisible by 6 for all positive integer values of n. Therefore f(k+1) = (k+1)(k+1+1)(2(k+1)+1) = 2k^3 + 9k^2 + 13k + 6 f(k) can also be written as f(k) = 2k^3 + 3k^2 + k Therefore f(k+1)-f(k) = 2k^3 + 9k^2 + 13k + 6 - 2k^3 -3k^2 - k = 6k^2 + 12k + 6 = 6(k^2 + 2k + 1) So f(k+1) = f(k) + 6(k^2 + 2k + 1) Therefore f(n) is divisible by 6 when n=k+1 If f(n) is divisible by 6 when n=k, then it has been shown that f(n) is also divisible by 6 when n=k+1. As f(n) is divisible by 6 when n=1, f(n) is also divisible by 6 for all positive integers by mathematical induction.
Problem Loading...
Note Loading...
Set Loading...
Recall the algebraic identity
1 2 + 2 2 + 3 2 + ⋯ + n 2 = i = 1 ∑ n n 2 = 6 n ( n + 1 ) ( 2 n + 1 )
Now, multiplying both sides by 6 gives us
6 i = 1 ∑ n n 2 = n ( n + 1 ) ( 2 n + 1 ) .
Because LHS is a multiplication of an integer and another integer that is the sum of squares of integers, then RHS is a natural number multiplied by 6.
Hence, n ( n + 1 ) ( 2 n + 1 ) is divisible by 6 for all natural numbers n .