Consider the number 10000000099. This number has a factor between 9000 and 10000. Find the sum of digits of this factor.
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.
@Patrick Corn nice solution!
Thank you for taking the time to write a solution. But I have seen the same solution elsewhere too. How am I supposed to figure out the factorization of the polynomial? Is there a way to generalize this solution for similar numbers? Or is this just a way to test factorization skills? Thanks once again.
Log in to reply
I don't think there's anything all that generalizable about this situation.
If you plug in a sixth root of unity to x 5 + x − 1 , it's not hard to see that you get 0 , so x 2 − x + 1 has to be a factor, since it's the sixth cyclotomic polynomial (i.e. the minimal polynomial of e 2 π i / 6 ).
Log in to reply
Thank you. I read up on cyclotomic polynomials. From what I understand, I think we can say, that if we can find an n t h root of unity which satisfies the given polynomial, then the n t h cyclotomic polynomial will be one of its factors. Hence, the general approach would be to find that root of unity.
Problem Loading...
Note Loading...
Set Loading...
This number is x 5 + x − 1 where x = 1 0 0 . It so happens that x 5 + x − 1 = ( x 2 − x + 1 ) ( x 3 + x 2 − 1 ) , which leads to 1 0 0 0 0 0 0 0 0 9 9 = 9 9 0 1 ⋅ 1 0 0 9 9 9 9 . The answer is 1 9 .