Java.math.BigInteger.probablePrime() method in Java (original) (raw)

Last Updated : 04 Dec, 2018

Prerequisite : BigInteger Basics

The probablePrime() method will return a Biginteger of bitLength bits which is prime. bitLength is provided as parameter to method probablePrime() and method will return a prime BigInteger of bitLength bits. The probability that a BigInteger returned by this method is composite and does not exceed 2^-100.

Syntax:

public static BigInteger probablePrime(int bitLength, Random rnd)

Parameters: This method accepts two parameters as shown in the above syntax and described below.

Return Value: This method returns a BigInteger of bitLength bits that is probably prime.

Exception:

Below program illustrate the probablePrime() method:

import java.math.*;

import java.util.Random;

import java.util.Scanner;

public class GFG {

`` public static void main(String[] args)

`` {

`` Scanner sc = new Scanner(System.in);

`` BigInteger biginteger;

`` int length = 4 ;

`` Random random = new Random();

`` biginteger = BigInteger.probablePrime(length, random);

`` String result = "ProbablePrime whose bit length is "

`` + length + " = " + biginteger;

`` System.out.println(result);

`` }

}

Output:

ProbablePrime whose bit length is 4 = 13

Reference:https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#probablePrime(int, %20java.util.Random)

Similar Reads