What is the largest prime factor of 5 8 + 2 2 ?
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.
N = 5 8 + 2 2 . N can be expessed as 6 2 5 2 + 2 2 . Notice that g c d ( 6 2 5 , 2 ) = 1
According to theorem by Euler all the divisors of 6 2 5 2 + 2 2 are of the form p 2 + q 2 .
Since 6 2 5 = 2 5 . Let p = 2 4 and q = 1 ⟹ 2 4 2 + 1 2 = 5 7 7 , which is prime; but we are going to take 6 7 7 .
To see from where we got 6 7 7 , break down N into two factors in this manner: 5 8 + 2 2 = ( ( 5 2 + 1 ) 2 + 1 ) ( ( 5 2 − 1 ) 2 + 1 ) = 6 7 7 × 5 7 7 ⟹ the answer is 6 7 7 because it is the largest prime factor.
What I did was write a quick code on Eclipse. It uses a while loop to countdown the numbers i that are divisible by x. If my english makes absolutely no sense, here is an image
there may or may not be some redundancies there.Problem Loading...
Note Loading...
Set Loading...
Consider the factorization a 4 + 4 = a 4 + 4 a 2 + 4 − 4 a 2 = ( a 2 + 2 ) 2 − ( 2 a ) 2 = ( a 2 + 2 a + 2 ) ( a 2 − 2 a + 2 ) .
Then 5 8 + 2 2 = 5 8 + 4 = ( 2 5 2 + 2 × 2 5 + 2 ) ( 2 5 2 − 2 × 2 5 + 2 ) . The first term is equal to 677, which we can verify is a prime. The second term is less that 677, hence any of its prime factors will be less than 677. Therefore, 677 is the largest prime factor of 5 8 2 2 .