This is a Java Program to Implement Miller Rabin Primality Test Algorithm. Miller Rabin Primality Test is an algorithm which is used to determine if a given number is prime or not.
Here is the source code of the Java Program to Implement Miller Rabin Primality Test Algorithm. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
/**
** Java Program to Implement Miller Rabin Primality Test Algorithm
**/
import java.util.Scanner;
import java.util.Random;
import java.math.BigInteger;
/** Class MillerRabin **/
public class MillerRabin
{
/** Function to check if prime or not **/
public boolean isPrime(long n, int iteration)
{
/** base case **/
if (n == 0 || n == 1)
return false;
/** base case - 2 is prime **/
if (n == 2)
return true;
/** an even number other than 2 is composite **/
if (n % 2 == 0)
return false;
long s = n - 1;
while (s % 2 == 0)
s /= 2;
Random rand = new Random();
for (int i = 0; i < iteration; i++)
{
long r = Math.abs(rand.nextLong());
long a = r % (n - 1) + 1, temp = s;
long mod = modPow(a, temp, n);
while (temp != n - 1 && mod != 1 && mod != n - 1)
{
mod = mulMod(mod, mod, n);
temp *= 2;
}
if (mod != n - 1 && temp % 2 == 0)
return false;
}
return true;
}
/** Function to calculate (a ^ b) % c **/
public long modPow(long a, long b, long c)
{
long res = 1;
for (int i = 0; i < b; i++)
{
res *= a;
res %= c;
}
return res % c;
}
/** Function to calculate (a * b) % c **/
public long mulMod(long a, long b, long mod)
{
return BigInteger.valueOf(a).multiply(BigInteger.valueOf(b)).mod(BigInteger.valueOf(mod)).longValue();
}
/** Main function **/
public static void main (String[] args)
{
Scanner scan = new Scanner(System.in);
System.out.println("Miller Rabin Primality Algorithm Test\n");
/** Make an object of MillerRabin class **/
MillerRabin mr = new MillerRabin();
/** Accept number **/
System.out.println("Enter number\n");
long num = scan.nextLong();
/** Accept number of iterations **/
System.out.println("\nEnter number of iterations");
int k = scan.nextInt();
/** check if prime **/
boolean prime = mr.isPrime(num, k);
if (prime)
System.out.println("\n"+ num +" is prime");
else
System.out.println("\n"+ num +" is composite");
}
}
Output:
Miller Rabin Primality Algorithm Test Enter number 5510389 Enter number of iterations 2 5510389 is prime
Related posts:
Fixing 401s with CORS Preflights and Spring Security
Simplify the DAO with Spring and Java Generics
Java Program to Solve any Linear Equation in One Variable
Handling URL Encoded Form Data in Spring REST
wait() and notify() Methods in Java
Java Concurrency Interview Questions and Answers
Java Program to Implement Cartesian Tree
Object Type Casting in Java
Introduction to the Java NIO Selector
Converting between an Array and a List in Java
Ép kiểu trong Java (Type casting)
Filtering and Transforming Collections in Guava
A Guide to HashSet in Java
Java Program to Implement RenderingHints API
Java Program to Implement Fermat Factorization Algorithm
Call Methods at Runtime Using Java Reflection
Tránh lỗi NullPointerException trong Java như thế nào?
String Joiner trong Java 8
Guide to Spring @Autowired
HttpClient 4 – Follow Redirects for POST
Java Program to Implement Sorted Doubly Linked List
Sử dụng CyclicBarrier trong Java
Tiêu chuẩn coding trong Java (Coding Standards)
Java Program to Describe the Representation of Graph using Incidence List
Java Program to Implement Shell Sort
Lập trình đa luồng với CompletableFuture trong Java 8
Hướng dẫn Java Design Pattern – Abstract Factory
Java 8 Stream findFirst() vs. findAny()
Stack Memory and Heap Space in Java
Java 8 Streams peek() API
A Quick Guide to Spring MVC Matrix Variables
Java Program to Implement the RSA Algorithm