Java Program to Implement Fermat Primality Test Algorithm

This is a Java Program to Implement Fermat Primality Test Algorithm. Fermat 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 Fermat 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 Fermat Primality Test Algorithm
 **/
 
import java.util.Scanner;
import java.util.Random;
 
/** Class FermatPrimality **/
public class FermatPrimality
{
    /** 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;
 
        Random rand = new Random();
        for (int i = 0; i < iteration; i++)
        {
            long r = Math.abs(rand.nextLong());            
            long a = r % (n - 1) + 1;
            if (modPow(a, n - 1, n) != 1)
                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;
    }    
    /** Main function **/
    public static void main (String[] args) 
    {
        Scanner scan = new Scanner(System.in);
        System.out.println("Fermat Primality Algorithm Test\n");
        /** Make an object of FermatPrimality class **/
        FermatPrimality fp = new FermatPrimality();
        /** 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 = fp.isPrime(num, k);
        if (prime)
            System.out.println("\n"+ num +" is prime");
        else
            System.out.println("\n"+ num +" is composite");        
    }
}

Output:

Fermat Primality Algorithm Test
 
Enter number
 
999983
 
Enter number of iterations
2
 
999983 is prime

Related posts:

Guava CharMatcher
Java – Delete a File
Java Program to Perform Addition Operation Using Bitwise Operators
Java Program to Implement Binary Tree
Java Program to Solve the 0-1 Knapsack Problem
MyBatis with Spring
Java Program to Show the Duality Transformation of Line and Point
Java Program to Perform String Matching Using String Library
Các chương trình minh họa sử dụng Cấu trúc điều khiển trong Java
Converting Between Byte Arrays and Hexadecimal Strings in Java
Java Program to Implement K Way Merge Algorithm
Java Program to Implement Sorted Circularly Singly Linked List
Convert Hex to ASCII in Java
Java Program to Implement Shunting Yard Algorithm
Java Program to Compute Determinant of a Matrix
Java Program to Implement Fisher-Yates Algorithm for Array Shuffling
Object cloning trong java
Number Formatting in Java
HashSet trong Java hoạt động như thế nào?
@Before vs @BeforeClass vs @BeforeEach vs @BeforeAll
Java Program to Implement VList
Java Program to Find Number of Spanning Trees in a Complete Bipartite Graph
Weak References in Java
Tạo ứng dụng Java RESTful Client với thư viện OkHttp
Java Program to Perform Arithmetic Operations on Numbers of Size
Java Program to Implement Efficient O(log n) Fibonacci generator
Java Program to Implement Lloyd’s Algorithm
Converting a List to String in Java
Java Program to Implement Fermat Factorization Algorithm
Map to String Conversion in Java
Remove HTML tags from a file to extract only the TEXT
Chuyển đổi từ HashMap sang ArrayList