Number Theory: Calculating mod large number

mattmns
Messages
1,121
Reaction score
5
Here is the original problem:
--------------
Use Euler's Theorem to compute the following:

3^{340} \ \text{mod} \ 341
---------------

So Euler's Theorem tells us that if (a,m) = 1, then a^{\phi(m)} \equiv 1 \ \text{mod} \ m


\phi(341) = \phi(11\cdot 31) = 300

OK so now we need to compute 3^{40} \ \text{mod} \ 341. And this is where I have a problem.

Basically my problem is that I am trying to do it by hand, and I don't see how to do this easily. Sure I could pull out a calculator, but I don't think that should be necessary. So are there any tips for doing such a calculation? Our instructor suggested that we use powers of 2. Meaning that 40 = 32 + 8 = 2^5 + 2^3. However, this seems kind of ugly given the large moduli for this particular problem. Any ideas? Thanks!
 
Physics news on Phys.org
I'm interested in knowing how to tackle this by hand as well!
 
Well, Euler's theorem got you to 300. But I think you have to walk the rest of the way. Use the power of two idea and just start filling in by squaring the previous entry at each step and reducing mod 341.

3^2 -> 9
3^4 -> 81
3^8 -> ??
3^16 -> ??
3^32 -> ??

Once you have 8 and 32 multiply and reduce and you are done. I don't think that's too bad to do with a calculator.
 
I was hoping to not have to use a calculator :smile:

I also ask because we had an exam a week ago, and we had to do basically the same computation (and it worked out to be 81^2, 81^4, etc, but it was mod 1000, which I thought was a little crazy considering we were not allowed calculators on the exam.) So basically I was just wondering if there was a nice, clever, way to do this.
 
That does sound sadistic. What exactly was the question?
 
I was probably missing some clever trick, but even when I asked the professor, he said to use powers of 2, so I don't know.

Here is the original question:
-------------
Find the remainder when 3^{56} is divided by 1000.
-------------

At the time we did not have Euler's Theorem (It probably would not help anyway). We did have fermat's theorem, but that does not apply here (I don't think at least). We basically had just general mod arithmetic.
 
Last edited:
I can't think of anything else either. I'll stick with sadistic.
 
actually, there is a generalized totient function call the Carmichael Function: http://mathworld.wolfram.com/CarmichaelFunction.html

basically \lambda (340)=LCM(\lambda (11), \lambda (31))=30

so that,
3^{30}\equiv 1 \mod{341}

which easily gives,
a \equiv 56 \mod{341}
the Carmichael Function theorem is in general much stronger than totient function theorem.if you don't like carmichael function, you can always break the modulo into pieces.

basically, let
3^{340}\equiv a \mod{341}

so
3^{340}\equiv a \mod{11}

and
3^{340}\equiv a \mod{31}

so

a \equiv 1 \mod{11}
a \equiv 25 \mod{31}

a=11k+1

11k \equiv 24 \mod{31}
k \equiv 5 \mod{31}

so
a=11((31*m)+5)+1
or

a \equiv 56 \mod{341}
 
done by binomial theorem don't know mod theorem

3^56
(3^4)x(3^52)
81x(9^50)
81x[(10-1)]^50
or
81x[(1-10)]^50
81x[1+50x10+(50x49x100)/2 +(50x49x48x1000)/6 . . . . . 10^50]
from the 3rd term onwards al the trems are divisible by 1000 hence by dividing the first 2 terms by 1000 i wil get the remainder

taking 500 common in d first 2 terms
[81x(500)x246]/1000

81x246/2
81x123


answer
9963
is it right?
i dnt know modular theory
can someone help me wit it??
 
  • #10
TROGLIO said:
done by binomial theorem don't know mod theorem

3^56
(3^4)x(3^52)
81x(9^50)
81x[(10-1)]^50
or
81x[(1-10)]^50
81x[1+50x10+(50x49x100)/2 +(50x49x48x1000)/6 . . . . . 10^50]
from the 3rd term onwards al the trems are divisible by 1000 hence by dividing the first 2 terms by 1000 i wil get the remainder

taking 500 common in d first 2 terms
[81x(500)x246]/1000

81x246/2
81x123answer
9963
is it right?
i dnt know modular theory
can someone help me wit it??

That's actually a clever approach. But you don't need to factor the 81 out. And you are making some mistakes with your powers. Just work with 3^56=9^28=(1-10)^28. Now do the binomial expansion. Do it carefully this time. It's (1+x)^28 with x=(-10). You have some signs in the expansion.
 
Last edited:
Back
Top