Find natural number k , where polynomial p ( x ) = x 2 k + 1 + ( x + 1 ) 2 k is indivisible by x 2 + x + 1 .
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
Similar solution as @Alak Bhattacharya 's
The roots to x 2 + x + 1 = 0 is the complex cubic root of unity ω . This is because, if we multiply both sides by x and + 1 , we have x 3 + x 2 + x + 1 = 1 ⟹ x 3 + 0 = 1 ⟹ ω 3 = 1 . Then we have:
ω n = ⎩ ⎪ ⎨ ⎪ ⎧ 1 ω ω 2 if n m o d 3 = 0 if n m o d 3 = 1 if n m o d 3 = 2
We note that p ( x ) is divisible by x 2 + x + 1 , when p ( ω ) = 0 . Let us consider p ( ω ) .
p ( ω ) = ω 2 k + 1 + ( ω + 1 ) 2 k = ω 2 k + 1 + ( − ω 2 ) 2 k = ω 2 k + 1 + ω 4 k = ω 2 k + ω k + 1 = ⎩ ⎪ ⎨ ⎪ ⎧ 3 0 0 if k m o d 3 = 0 if k m o d 3 = 1 if k m o d 3 = 2 As ω 2 + ω + 1 = 0 and ω ( 3 + 1 ) k = ω k
Therefore, p ( x ) is not divisible by x 2 + x + 1 or p ( ω ) = 0 , when k = 3 n , where n is a natural number.
Nice solution
If p ( x ) be not divisible by x 2 + x + 1 , then p ( ω ) = 0 , where ω is a complex cube root of unity (i.e., a root of the equation x 2 + x + 1 = 0 ). This means
ω 2 k + 1 + ( − ω ) k = 0 . This is true for k = 3 n where n is a natural number.
Nice solution but a solution without complexes would definitely be better
Log in to reply
But x in this case is a complex number. That is why I have edited your problem wording. Also note that it is x 2 + x + 1 cannot divide p ( x ) and not p ( x ) cannot divide x 2 + x + 1 .
Log in to reply
I've provided a solution without using complex numbers, but agree with @Chew-Seong Cheong and @Alak Bhattacharya that they give the most useful (by which I mean clear, informative and complete) solution.
Because not all will be knowing complex numbers
I put the correct answer but it said incorrect
Log in to reply
Did you put 3n?
Problem Loading...
Note Loading...
Set Loading...
As per the other solutions, complex numbers look to be the right way to go, but in an effort to solve without them we can note that if p ( x ) is divisible in the polynomial sense by x 2 + x + 1 , then x 2 + x + 1 will also divide p ( x ) for all integers x . (A simple comparison of coefficients shows that if the quotient is a polynomial, it would have to have integer coefficients.)
Consider the case x = 2 , and let k = 3 n . We have x 2 + x + 1 = 7 , and p ( 2 ) = 2 6 n + 1 + 3 6 n = 6 4 n + 7 2 9 n + 1 .
Reducing modulo 7 , we find p ( 2 ) ≡ 3 , since both 6 4 and 7 2 9 are congruent to 1 modulo 7 .
This is enough to prove that p ( x ) is never divisible by x 2 + x + 1 when k = 3 n (so it's enough to answer this form of the question, as it's multiple choice). Proving that these are the only such k is harder by this method.