Could Miller-Rabin primality test give false negative, for example when test prime number and gives it as composite?
I know that it could give false positive (giving composite number as prime), but I am not sure about the reverse.
Could Miller-Rabin primality test give false negative, for example when test prime number and gives it as composite?
I know that it could give false positive (giving composite number as prime), but I am not sure about the reverse.
Copyright © 2021 JogjaFile Inc.
No, it will not indicate composite when given a prime.
The Miller-Rabin test, like many primality tests, uses properties that are always true for primes, but are rarely true for composites. Hence, barring implementation defects, it will always return true (PROBABLY PRIME) when given a prime. Most composites will return false (DEFINITELY COMPOSITE). Some composites, which we call pseudoprimes to the particular test, will also return true.