Let P be product of all positive integers less than 720 which are relatively prime to 720. What is the remainder when P 2 is divided by 720?
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.
Did the same way...
Could you please explain the last step. Why is it easy to see that ( P 2 ) 9 6 ≡ 1 ( m o d 7 2 0 ) or P 2 ≡ 1 ( m o d 7 2 0 ) ?
DID THE SAME WAY
If the question was asking for the remainder of P when divided by 720, then this solution would yield two possible solutions: 1 and -1. So isn’t this method only applicable when finding the remainder of P to an even power?
( a ∈ P ∏ a ) 2 ( m o d n ) ≡ 1
Yes, it's true for any mod! This is because elements of P may be classified in two ways:
(1) a 2 = 1 . These elements are their own multiplicative inverses, and when the product is squared the do not contribute anything.
(2) a b = 1 . If a has a multiplicative inverse, it is necessarily in P . Otherwise, b would have some factor of n in it and could only be a multiple of that when multiplied by another element, thus the product could not one. In addition, if a has a multiplicative inverse in P is it unique to a .
Consider the existence of another multiplicative inverse to a , c . Then by writing down multiples of a we run into two ones. These two ones ought to be the same distance from a 0: equality is preserved going backwards, and we know that if b < c then by going backwards from both b times we reach zero for both. Yet there exists only one zero at a × 0 because a ∈ P . Thus b = c .
Okeydoke, now that that's all done we can just pair multiplicative inverses to get all 1's for those and squaring 1 gives 1, and then by adding all a with a 2 = 1 we still have 1 for the product.
In short, we can say that the elements in P form the multiplicative group of integers modulo n . Hence every element in P has its inverse and thus the product is unity.
here is the solution of the problem in a image bello
w
Why the reminder when p^2|720 = the reminder when p^2|10
Explain it....
For any integer n in P, there exists a unique integer m also in P such that nm ≡ 1 (mod 720). (note that n and m could be equal).
Since there are an even number of integers being multiplied in the product P², we can group the integers in pairs such that every pair has a product of 1 (mod 720), and the product of all pairs is therefore 1 .
Since the polynomial ( x − a 1 ) ( x − a 2 ) . . . ( x − a φ ( 7 2 0 ) ) ≡ x φ ( 7 2 0 ) − 1 ( m o d 7 2 0 ) , where a_i is a reduced residue system, we can plug in x=0.
what theorem is that? :) ... Well, the polynomial identity, I assume it's a theorem, or something like that, I'm asking for future reference mostly
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
Problem Loading...
Note Loading...
Set Loading...
I found ϕ ( 7 2 0 ) = 1 9 2 , and since P is the product of all of those 192 relatively prime numbers to 720, P must also be relatively prime to 7 2 0 since they share no common factors. Then using Euler's theorem, P 1 9 2 ≡ 1 ( m o d 7 2 0 ) , and then it's easy to see that ( P 2 ) 9 6 ≡ 1 ( m o d 7 2 0 ) or P 2 ≡ 1 ( m o d 7 2 0 ) hence the remainder is 1 .
Edit:
The modular inverses approach is most accurate.. Since there is a slight inaccuracy in the above solution (taking the 9 6 t h root on both sides of the modular expression can yield solutions other than 1 , although there aren't any) I'm trying an alternative approach using the Chinese Remainder Theorem and Carmichael function. Please feel free to correct me. I'm not sure if this is correct..
The Carmichael function λ ( n ) states that a λ ( n ) ≡ 1 ( m o d n ) when a and n are coprime and a < n . Let a 1 , a 2 , a 3 , … a n be all of the numbers which are relatively prime to 720. We get congruences such as
and then we can multiply all of the separate modular congruences to obtain
( a 1 1 2 a 2 1 2 a 3 1 2 … a n 1 2 ) = P 1 2 ≡ 1 ( m o d 7 2 0 ) .
Now, we need to scale down from P 1 2 to P 2 . To do this, we can see that 7 2 0 = 1 6 × 9 × 5 and λ ( 1 6 ) = 4 , λ ( 9 ) = 6 , λ ( 5 ) = 4 .
We can write the congruences as
As P is the product of all integers relatively prime to 720, P must also be coprime to 16, 9 and 5.
The expressions, upon solving for the residues of P 2 , yield
Now we see that for P to exist, P 2 has to be congruent to 1 for all three modulos, since if P 2 is congruent to say, for example, 9 for the first, 4 for the second and 1 for the third, upon solving we would obtain no value of P satisfying all three congruences.
Then after solving these three congruences simultaneously, we obtain the final answer of P 2 ≡ 1 ( m o d 7 2 0 ) .