forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEulerPseudoprime.java
More file actions
108 lines (92 loc) · 3.54 KB
/
EulerPseudoprime.java
File metadata and controls
108 lines (92 loc) · 3.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package com.thealgorithms.maths;
import java.math.BigInteger;
import java.util.Random;
/**
* The {@code EulerPseudoprime} class implements the Euler primality test.
*
* It is based on Euler’s criterion:
* For an odd prime number {@code n} and any integer {@code a} coprime to {@code n}:
* a^((n-1)/2) ≡ (a/n) (mod n)
* where (a/n) is the Jacobi symbol.
*
* This algorithm is a stronger probabilistic test than Fermat’s test.
* It may still incorrectly identify a composite as “probably prime” (Euler pseudoprime),
* but such cases are rare.
*/
public final class EulerPseudoprime {
private EulerPseudoprime() {
// Private constructor to prevent instantiation.
}
private static final Random RANDOM = new Random(1);
/**
* Performs the Euler primality test for a given number.
*
* @param n number to test (must be > 2 and odd)
* @param trials number of random bases to test
* @return {@code true} if {@code n} passes all Euler tests (probably prime),
* {@code false} if composite.
*/
public static boolean isProbablePrime(BigInteger n, int trials) {
if (n.compareTo(BigInteger.TWO) < 0) {
return false;
}
if (n.equals(BigInteger.TWO) || n.equals(BigInteger.valueOf(3))) {
return true;
}
if (n.mod(BigInteger.TWO).equals(BigInteger.ZERO)) {
return false;
}
for (int i = 0; i < trials; i++) {
BigInteger a = uniformRandom(BigInteger.TWO, n.subtract(BigInteger.TWO));
BigInteger jacobi = BigInteger.valueOf(jacobiSymbol(a, n));
if (jacobi.equals(BigInteger.ZERO)) {
return false;
}
BigInteger exp = n.subtract(BigInteger.ONE).divide(BigInteger.TWO);
BigInteger modExp = a.modPow(exp, n);
// Euler's criterion: a^((n-1)/2) ≡ (a/n) (mod n)
if (!modExp.equals(jacobi.mod(n))) {
return false; // definitely composite
}
}
return true; // probably prime
}
/**
* Computes the Jacobi symbol (a/n).
* Assumes n is positive and odd.
*/
public static int jacobiSymbol(BigInteger a, BigInteger n) {
if (n.signum() <= 0 || n.mod(BigInteger.TWO).equals(BigInteger.ZERO)) {
throw new IllegalArgumentException("n must be positive and odd.");
}
int result = 1;
a = a.mod(n);
while (a.compareTo(BigInteger.ZERO) != 0) {
while (a.mod(BigInteger.TWO).equals(BigInteger.ZERO)) {
a = a.divide(BigInteger.TWO);
BigInteger nMod8 = n.mod(BigInteger.valueOf(8));
if (nMod8.equals(BigInteger.valueOf(3)) || nMod8.equals(BigInteger.valueOf(5))) {
result = -result;
}
}
BigInteger temp = a;
a = n;
n = temp;
if (a.mod(BigInteger.valueOf(4)).equals(BigInteger.valueOf(3)) && n.mod(BigInteger.valueOf(4)).equals(BigInteger.valueOf(3))) {
result = -result;
}
a = a.mod(n);
}
return n.equals(BigInteger.ONE) ? result : 0;
}
/**
* Generates a random BigInteger between {@code min} and {@code max}, inclusive.
*/
private static BigInteger uniformRandom(BigInteger min, BigInteger max) {
BigInteger result;
do {
result = new BigInteger(max.bitLength(), RANDOM);
} while (result.compareTo(min) < 0 || result.compareTo(max) > 0);
return result;
}
}