Euler's theorem as primality test?

  • Thread starter Thread starter huba
  • Start date Start date
  • Tags Tags
    Test Theorem
Click For Summary
Euler's theorem is discussed as a potential method for primality testing, specifically questioning if 2^(m-1) ≡ 1 (mod m) holds true for primes greater than 2. While it is suggested that Euler's theorem could be more efficient than Wilson's theorem, it is still less efficient than the square root method for primality testing. The discussion reveals that calculating 2^(m-1) requires log(m) multiplications, and while Fast Fourier Transforms can optimize this, the method is ultimately flawed. A counterexample, 561, which is a Carmichael number, demonstrates that this approach does not reliably identify primes. The conclusion emphasizes that Euler's theorem does not serve as a valid primality test.
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
611
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 17 ·
Replies
17
Views
2K
  • · Replies 17 ·
Replies
17
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 16 ·
Replies
16
Views
5K