Euler's theorem as primality test?

  • Thread starter Thread starter huba
  • Start date Start date
  • Tags Tags
    Test Theorem
Click For Summary
SUMMARY

The discussion centers on the use of Euler's theorem as a potential primality test, specifically examining the condition \(2^{m-1} \equiv 1 \mod m\) for odd primes greater than 2. Participants conclude that while Euler's theorem may offer a method for primality testing, it is less efficient than the square root method and ultimately fails for certain composite numbers, such as 561, which is identified as a Carmichael number. The conversation highlights the computational complexity involved in calculating \(2^{m-1} \mod m\) and the limitations of Euler's theorem compared to other methods.

PREREQUISITES
  • Understanding of Euler's theorem and its implications in number theory.
  • Familiarity with modular arithmetic and congruences.
  • Knowledge of Carmichael numbers and their properties.
  • Basic computational complexity concepts, particularly regarding logarithmic operations.
NEXT STEPS
  • Research the properties and applications of Carmichael numbers in primality testing.
  • Learn about the square root method for primality testing and its efficiency.
  • Explore Fast Fourier Transforms and their impact on computational efficiency in number theory.
  • Study Wilson's theorem and its limitations compared to other primality tests.
USEFUL FOR

Mathematicians, computer scientists, and cryptographers interested in number theory, particularly those focused on primality testing and computational efficiency.

huba
Messages
32
Reaction score
0
Using "[URL theorem[/URL], and the fact that \varphi(p) = p - 1 when p is prime, and the fact that 2 is coprime to all odd numbers, is it right to say that

2^{m-1} \equiv 1 \ (mod \ m) iff m is prime > 2?
 
Last edited by a moderator:
Physics news on Phys.org
huba said:
Using "[URL theorem[/URL], and the fact that \varphi(p) = p - 1 when p is prime, and the fact that 2 is coprime to all odd numbers, is it right to say that

2^{m-1} \equiv 1 \ (mod \ m) iff m is prime > 2?

Yes, I think so.
 
Last edited by a moderator:
Thanks. My question was related to another thread about prime numbers which resulted in the observation that Wilson's theorem can be used to test if an odd number is prime, but it is a far less efficient way of testing primality than trying factors <= the square root of a number.
I assume that Euler's theorem offers a primality testing method which is better than Wilson's theorem but still worse than the "square root method", in terms of the efficiency of the necessary computation. Does 2^{m-1} have to be calculated to check if 2^{m-1}\equiv \ 1 (mod \ m), or is there a shortcut?
 
Note that to calculate e.g., 232 you don't need to do 31 multiplications. 5 is enough.
<br /> \begin{align*}<br /> &amp;2^2=4,\\<br /> &amp;2^4=4^2=16,\\<br /> &amp;2^8=16^2=256,\\<br /> &amp;2^{16}=256^2=65536,\\<br /> &amp;2^{32}=65536^2=4294967296.<br /> \end{align*}<br />
To calculate 2(m-1) will require on the order of log(m) multiplications and additions. As you only need to do it modulo n, the multiplications are done on numbers no bigger than n.

Multiplying two numbers of size about n requires log(n)2 operations using the normal method of multiplication that you learn as a kid, because they will have log(n) digits.
However, Fast Fourier Transforms can improve this to log(n)log(log(n)).

Altogether, this gives a time on the order of log(n)2log(log(n)) to calculate 2n-1 modulo n.

However, does this really work as a primality test?

edit: it doesn't. Just tried some examples and got 561 = 3 * 11 * 17 is not prime, but 2560=1 (mod 561).
 
Last edited:
ehrenfest said:
Yes, I think so.

No, it's not. Primes may be in P, but not by doing this. What you're describing isn't even as strong as being a Carmichael number.
 
matt grime said:
No, it's not. Primes may be in P, but not by doing this. What you're describing isn't even as strong as being a Carmichael number.

Ah, looking at http://en.wikipedia.org/wiki/Carmichael_number" I see that my counterexample of 561 is actually the smallest Carmichael number.
 
Last edited by a moderator:
actually, 341=11*13 is the smallest counterexample. 2340=(210)34= 134=1 (mod 341).
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 21 ·
Replies
21
Views
1K
  • · Replies 31 ·
2
Replies
31
Views
2K
  • · Replies 12 ·
Replies
12
Views
658
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 17 ·
Replies
17
Views
2K
  • · Replies 17 ·
Replies
17
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 16 ·
Replies
16
Views
5K