What is the remainder when 1992 is divided by 92 using the CRT?

  • MHB
  • Thread starter Suvadip
  • Start date
  • Tags
    Remainder
In summary, to find the remainder when 1992 is divided by 92, one method is to find the remainders of $19^2$, $19^{2^2}$, $19^{2^3}$ and so on, using smart exponentiation. Another method is to use Euler's theorem and compute $19^4 \pmod{92}$. Alternatively, the Chinese Remainder Theorem can be used to map the problem onto two smaller problems and solve for the remainder using modular arithmetic. Ultimately, the remainder is found to be 49.
  • #1
Suvadip
74
0
Find the remainder when 1992 is divided by 92
 
Mathematics news on Phys.org
  • #2
One way is to find remaindes of $19^2$, $19^{2^2}$, $19^{2^3}$ and so on. For example, $19^2=361\equiv-7\pmod{92}$, $19^4\equiv(-7)^2=49\pmod{92}$, etc. Then write 92 in binary: $92=2^6+2^4+2^3+2^2$. So, you need to compute the remainder of $19^{2^6}\cdot19^{2^4}\cdot19^{2^3}\cdot19^{2^2}$. That is, use two tricks: take the remainder after each multiplication and use smart exponentiation by taking consecutive squares instead of multiplying 19 by itself 92 times.

Another way is to use Euler's theorem: $19^{\varphi(92)}\equiv1\pmod{92}$. Here $\varphi(92)=92\left(1-\frac{1}{2}\right)\left(1-\frac{1}{23}\right)=44$. So, $19^{88}\equiv1\pmod{92}$ and you only need to compute $19^4\pmod{92}$.
 
  • #3
Continuing Evgeny's comment, note that:

\(\displaystyle 19^2 \equiv 361 \equiv 85 \equiv -7\ (\text{mod }92)\)

(I have a profound dislike of "big numbers").

It follows that:

\(\displaystyle 19^{92} \equiv 19^4 \equiv (19^2)^2 \equiv 49\ (\text{mod }92)\).

EDIT: I must learn to read someday, this was implicit in the first post. I'll go crawl under a rock now...
 
  • #4
Alternatively, the Chinese Remainder Theorem (CRT) says we can split up $92$ into $2^2 \cdot 23$.

If you're not learning about the CRT you might as well stop reading now, since my explanation is rather concise. Sorry.
Since I rather like CRT, I'll continue.

More specifically, CRT says that $19^{92} \pmod{92}$ can be (isomorphically) mapped to:
$$(19^{92} \text{ mod }4,\ 19^{92} \text{ mod } 23) \equiv ((-1)^{92} \text{ mod } 4,\ (-4)^{92 \text{ mod } 22} \text{ mod } 23) \equiv (1 \text{ mod } 4, 3 \text{ mod } 23)$$

The solutions from the 2nd argument are one of $3, 26, 49, 72$.
Only $49$ fits the first argument.

Therefore $19^{92} \equiv 49 \pmod{92}$.
 
  • #5


The Chinese Remainder Theorem (CRT) is a mathematical tool that is used to find the remainder when a number is divided by multiple divisors. In this case, the CRT can be applied to find the remainder when 1992 is divided by 92.

To use the CRT, we first need to find the prime factors of both 1992 and 92. The prime factorization of 1992 is 2^3 * 3 * 83 and the prime factorization of 92 is 2^2 * 23.

Next, we need to find the least common multiple (LCM) of the two divisors, which is 2^3 * 3 * 23 * 83. Then, we can use the CRT formula to find the remainder:

Remainder = (1992 mod 2^3) * (92 mod 2^2) * (92 mod 23) * (92 mod 83) mod 2^3 * 3 * 23 * 83

= (0) * (0) * (0) * (92) mod 2^3 * 3 * 23 * 83

= 0 mod 2^3 * 3 * 23 * 83

= 0

Therefore, the remainder when 1992 is divided by 92 using the CRT is 0. This means that 1992 is evenly divisible by 92, and there is no remainder.

In conclusion, the Chinese Remainder Theorem is a useful tool for finding the remainder when a number is divided by multiple divisors. In the case of 1992 divided by 92, the remainder is 0.
 

Related to What is the remainder when 1992 is divided by 92 using the CRT?

1. What does "to find the remainder" mean?

"To find the remainder" refers to the mathematical process of dividing one number by another and determining the amount left over after the division is complete.

2. How do I find the remainder of a division?

To find the remainder of a division, you can use the modulo operator (%) in most programming languages. This operator returns the remainder of a division operation.

3. What is the purpose of finding the remainder?

Finding the remainder can be useful in various mathematical applications, such as determining if a number is even or odd, simplifying fractions, and solving equations involving remainders.

4. Can the remainder be negative?

Yes, the remainder can be negative. This happens when the divisor is greater than the dividend, resulting in a negative value for the remainder.

5. Is there a specific formula for finding the remainder?

Yes, the formula for finding the remainder is: remainder = dividend - (divisor * quotient), where the dividend is the number being divided, the divisor is the number doing the dividing, and the quotient is the result of the division.

Similar threads

Replies
10
Views
586
  • General Math
Replies
2
Views
2K
  • General Math
Replies
1
Views
791
  • General Math
Replies
4
Views
2K
  • Precalculus Mathematics Homework Help
Replies
7
Views
795
  • General Math
Replies
6
Views
1K
Replies
5
Views
2K
Replies
2
Views
1K
Back
Top