Find the remainder when 1 9 9 2 is divided by 92.
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.
It would easier to show that 1 9 4 = ( 1 9 2 ) 2 ≡ ( − 7 ) 2 ≡ 4 9 rather than calculating the value of 1 9 4 itself.
Could you please explain me how 130321 equals 49 mod 92 ?
One can do this as well: 1 9 4 ( m o d 9 2 ) = 3 6 1 2 = ( m o d 9 2 ) ( − 7 ) 2 ( m o d 9 2 ) = 4 9 ( m o d 9 2 )
Long division. Seriously, just do it.
(Alternatively, notice that 1 3 0 3 2 1 = 1 4 1 6 ∗ 9 2 + 4 9 , which is the result you should derive from doing the division by hand)
how can u solve the theta(92) = 44 in a fastest way..?? tnx :D
@Ojna Eugitaraba – Well, there is a somewhat easy way to do this if you can factor the number in an easy way; Euler has a formula for his phi function that is the following:
ϕ ( n ) = n ∗ p ∣ n ∏ ( 1 − p 1 )
What you're reading above is this: "The totient function of n equals n times the product of all numbers of the form 1 − p 1 such that p is a prime factor of n ."
Now, when n = 9 2 , we can factor it as: n = 2 2 ∗ 2 3 . Thus, we can write: ϕ ( 9 2 ) = 9 2 ∗ ( 1 − 2 1 ) ( 1 − 2 3 1 ) = 9 2 ∗ ( 2 1 ) ∗ ( 2 3 2 2 ) = 2 ∗ 2 2 = 4 4
19^2 = (92*4 - 7)
19^92 = (92*4 - 7)^46
When divided by 92, we'll only have 7^46 left.
So 19^92 = 7^46 (mod 92).
7^4 = 9 (mod 92), and (7^2) (9^2) = 13 (mod 92) and 13 (9^3) = 1 (mod 92).
So (7^2) (7^8) = 7^10 = 13 (mod 92) and (7^10) (7^12) = 7^22 = 1 (mod 92).
So 19^92 = (7^44) (7^2) = (1) (49) = 49 (mod 92).
It would be easier to use modular arithmetic on this very step: 1 9 9 2 = 7 4 6 m o d 9 2 ≡ 7 4 6 m o d ϕ ( 9 2 ) = 7 4 6 m o d 4 4 = 7 2 = 4 9
The remainder is 49. Here's why: 19^4=(92 1416+49) So then we can factor out 19^4 from 19^92 so (19^4)(19^88)/92 --> (92 1416+49)(19^88)/92
--->(1416+49/92)(19^88)---->(19^88)(1416)+(19^88)(49/92)
again we factor out 19^4 from the second term and regroup --->(19^88)(1416)+((19^4)/92)(19^84)(49)
--->(19^88)(1416)+(1416+49/92)(19^84)(49)
again we factor and regroup --->(19^88)(1416)+(1416(19^84)(49))+(49(19^80)(19^4)(49/92))
At every step in this process, the last term will be factorable by (19^4)/92, which is (1416 + 49/92), until the only term left is (19^4)/92, which, because it is of the form (92*1416 + 49)/92, has a remainder of 49.
This was not particularly fun, and I'm sure there's a more concise solution.
Applying the exponentiation properties of modular arithmetic greatly speeds up the process. What you did is analogous of manually adding the same number over and over again without using multiplication.
92 = (2^2)(23^1)
P(92) = (92)(1 - 1/2)(1 - 1/23) = 44
19^92 = 19^(88 + 4) = 19^4 (mod 92) =
(19^2)(19^2) = (361)(361) = (-7)(-7) = 49 (mod 92)
Since you're not using L A T E X , you should mention that P(x) is the Euler totient function of x . And you should mention that your sum of your equal signs are actually equivalent signs: ≡ .
how is 19^(88+4) = 19^4(mod 92)
Problem Loading...
Note Loading...
Set Loading...
Okay, to solve this we use Euler's Theorem. According to it, if two numbers a and n are coprime, then a ϕ ( n ) ≡ 1 ( m o d n ) , where ϕ ( n ) is Euler's totient function.
Since 19 and 92 are coprime, then it follows that:
1 9 ϕ ( 9 2 ) ≡ 1 ( m o d 9 2 ) .
ϕ ( 9 2 ) = 4 4 , thus: 1 9 4 4 ≡ 1 ( m o d 9 2 ) .
Then: 1 9 9 2 ≡ 1 9 4 4 ∗ 1 9 4 4 ∗ 1 9 4 ≡ 1 ∗ 1 ∗ 1 9 4 ≡ 1 9 4 ( m o d 9 2 )
1 9 4 = 1 3 0 3 2 1 , and thus 1 9 9 2 ≡ 1 3 0 3 2 1 ( m o d 9 2 ) → 1 9 9 2 ≡ 4 9 ( m o d 9 2 ) .