Solovay-Strassen method of Primality Test
Last Updated :
23 Jul, 2025
We have already been introduced to primality testing in the previous articles in this series.
The Solovay–Strassen test is a probabilistic algorithm used to check if a number is prime or composite (not prime). It is not 100% accurate but gives a high probability of correctness when run multiple times. Before jumping into the test, let's break down some key concepts:
To perform the test, we need to understand two important mathematical symbols:
- Legendre Symbol (a/p)
- Jacobian Symbol (a/n)
These symbols help us determine properties of numbers in a structured way.
Legendre Symbol (a/p)
This is a special way to compare two numbers:
a
: Any integerp
: A prime number
It is written as (a/p) and tells us one of the following three things:
- (a/p) = 0 → If
a
is divisible by p
, meaning a % p == 0
- (a/p) = 1 → if there exists an integer k such that k2 = a(mod p)
- (a/p) = -1 → Otherwise (if the above two cases are false)
Example
- If
p = 7
, and a = 9
, then:
(9/7) = 1 because 9
has a square root 3
(since 3² ≡ 9
). - If
a = 2
, then (2/7) = -1 because 2
is not a square modulo 7
.
Mathematician Euler discovered a useful shortcut to compute (a/p):
(a/p) = a(p-1)/2 mod p
This formula helps in quickly checking the Legendre symbol.
Jacobian Symbol (a/n)
The Jacobian symbol is a generalization of the Legendre symbol, but it works when n is not necessarily a prime. It is calculated by breaking down n into prime factors and applying the Legendre symbol to each factor.
If n is a prime number, then:
(a/n) = (a/p)
So, Jacobian symbol = Legendre symbol when n is prime.
The Solovay–Strassen Primality Test
Now that we understand these symbols, let's go step by step through the primality test.
Step 1: Choose a Random Number
- Pick a random number a, such that 2 ≤ a ≤ n - 1.
- This number a acts as a "witness" to help determine whether n is prime.
Step 2: Check the GCD (Greatest Common Divisor)
- Compute gcd(a, n) (the largest number that divides both a and n).
- If gcd(a, n) > 1, then n is definitely composite (not prime).
- This step ensures n has no common factors with a.
Step 3: Compute Two Values
We compute two important values:
- a^((n-1)/2) mod n (using fast exponentiation)
- (a/n) (using the Jacobian symbol)
Step 4: Compare the Two Values
- If these two values do not match, then n is composite.
- If they are equal, then n is probably prime.
Why Do We Repeat This Test Multiple Times?
Since this is a probabilistic test, we cannot be 100% sure that n is prime after one test. So, we repeat the test with different random values of a multiple times.
- If the test fails even once, n is definitely composite.
- If the test passes many times, then n is probably prime.
C++
// C++ program to implement Solovay-Strassen Primality Test
#include <bits/stdc++.h>
using namespace std;
// Function to perform modular exponentiation
long long modulo(long long base, long long exponent, long long mod) {
long long x = 1, y = base;
while (exponent > 0) {
if (exponent % 2 == 1) {
x = (x * y) % mod;
}
y = (y * y) % mod;
exponent /= 2;
}
return x % mod;
}
// Function to calculate the Jacobian symbol (a/n)
int calculateJacobian(long long a, long long n) {
if (a == 0) {
return 0; // (0/n) = 0
}
int ans = 1;
if (a < 0) {
a = -a; // (a/n) = (-a/n) * (-1/n)
if (n % 4 == 3) {
ans = -ans; // (-1/n) = -1 if n ≡ 3 (mod 4)
}
}
if (a == 1) {
return ans; // (1/n) = 1
}
while (a) {
if (a < 0) {
a = -a; // (a/n) = (-a/n) * (-1/n)
if (n % 4 == 3) {
ans = -ans; // (-1/n) = -1 if n ≡ 3 (mod 4)
}
}
while (a % 2 == 0) {
a /= 2;
if (n % 8 == 3 || n % 8 == 5) {
ans = -ans;
}
}
swap(a, n);
if (a % 4 == 3 && n % 4 == 3) {
ans = -ans;
}
a %= n;
if (a > n / 2) {
a -= n;
}
}
return (n == 1) ? ans : 0;
}
// Function to perform the Solovay-Strassen Primality Test
bool solovoyStrassen(long long p, int iterations) {
if (p < 2 || (p % 2 == 0 && p != 2)) {
return false;
}
for (int i = 0; i < iterations; i++) {
long long a = rand() % (p - 1) + 1;
long long jacobian = (p + calculateJacobian(a, p)) % p;
long long mod = modulo(a, (p - 1) / 2, p);
if (!jacobian || mod != jacobian) {
return false;
}
}
return true;
}
int main() {
int iterations = 50;
long long num1 = 15, num2 = 13;
if (solovoyStrassen(num1, iterations)) {
printf("%lld is prime\n", num1);
} else {
printf("%lld is composite\n", num1);
}
if (solovoyStrassen(num2, iterations)) {
printf("%lld is prime\n", num2);
} else {
printf("%lld is composite\n", num2);
}
return 0;
}
Java
// Java program to implement Solovay-Strassen Primality Test
import java.util.Random;
class GFG {
// Modulo function to perform binary exponentiation
static long modulo(long base, long exponent, long mod) {
long x = 1;
long y = base;
while (exponent > 0) {
if (exponent % 2 == 1) {
x = (x * y) % mod;
}
y = (y * y) % mod;
exponent /= 2;
}
return x % mod;
}
// Function to calculate the Jacobian symbol of a given number
static long calculateJacobian(long a, long n) {
if (n <= 0 || n % 2 == 0) {
return 0;
}
long ans = 1;
if (a < 0) {
a = -a; // (a/n) = (-a/n) * (-1/n)
if (n % 4 == 3) {
ans = -ans; // (-1/n) = -1 if n ≡ 3 (mod 4)
}
}
if (a == 1) {
return ans; // (1/n) = 1
}
while (a != 0) {
if (a < 0) {
a = -a; // (a/n) = (-a/n) * (-1/n)
if (n % 4 == 3) {
ans = -ans; // (-1/n) = -1 if n ≡ 3 (mod 4)
}
}
while (a % 2 == 0) {
a /= 2;
if (n % 8 == 3 || n % 8 == 5) {
ans = -ans;
}
}
long temp = a;
a = n;
n = temp;
if (a % 4 == 3 && n % 4 == 3) {
ans = -ans;
}
a %= n;
if (a > n / 2) {
a -= n;
}
}
return (n == 1) ? ans : 0;
}
// Function to perform the Solovay-Strassen Primality Test
static boolean solovayStrassen(long p, int iteration) {
if (p < 2) {
return false;
}
if (p != 2 && p % 2 == 0) {
return false;
}
Random rand = new Random();
for (int i = 0; i < iteration; i++) {
long r = Math.abs(rand.nextLong());
long a = r % (p - 1) + 1;
long jacobian = (p + calculateJacobian(a, p)) % p;
long mod = modulo(a, (p - 1) / 2, p);
if (jacobian == 0 || mod != jacobian) {
return false;
}
}
return true;
}
// Driver code
public static void main(String[] args) {
int iter = 50;
long num1 = 15;
long num2 = 13;
if (solovayStrassen(num1, iter)) {
System.out.println(num1 + " is prime");
} else {
System.out.println(num1 + " is composite");
}
if (solovayStrassen(num2, iter)) {
System.out.println(num2 + " is prime");
} else {
System.out.println(num2 + " is composite");
}
}
}
Python
# Python3 program to implement Solovay-Strassen
# Primality Test
import random
# modulo function to perform binary exponentiation
def modulo(base, exponent, mod):
x = 1
y = base
while exponent > 0:
if exponent % 2 == 1:
x = (x * y) % mod
y = (y * y) % mod
exponent //= 2
return x % mod
# To calculate Jacobian symbol of a given number
def calculateJacobian(a, n):
if a == 0:
return 0 # (0/n) = 0
ans = 1
if a < 0:
# (a/n) = (-a/n)*(-1/n)
a = -a
if n % 4 == 3:
# (-1/n) = -1 if n = 3 (mod 4)
ans = -ans
if a == 1:
return ans # (1/n) = 1
while a:
if a < 0:
# (a/n) = (-a/n)*(-1/n)
a = -a
if n % 4 == 3:
# (-1/n) = -1 if n = 3 (mod 4)
ans = -ans
while a % 2 == 0:
a //= 2
if n % 8 == 3 or n % 8 == 5:
ans = -ans
# Swap
a, n = n, a
if a % 4 == 3 and n % 4 == 3:
ans = -ans
a %= n
if a > n // 2:
a -= n
if n == 1:
return ans
return 0
# To perform the Solovay-Strassen Primality Test
def solovoyStrassen(p, iterations):
if p < 2:
return False
if p != 2 and p % 2 == 0:
return False
for _ in range(iterations):
# Generate a random number a
a = random.randrange(1, p)
jacobian = (p + calculateJacobian(a, p)) % p
mod = modulo(a, (p - 1) // 2, p)
if jacobian == 0 or mod != jacobian:
return False
return True
if __name__ == "__main__":
iterations = 50
num1 = 15
num2 = 13
if solovoyStrassen(num1, iterations):
print(num1, "is prime")
else:
print(num1, "is composite")
if solovoyStrassen(num2, iterations):
print(num2, "is prime")
else:
print(num2, "is composite")
C#
// C# program to implement the Solovay-Strassen Primality Test
using System;
class GfG {
// Function to perform modular exponentiation
static long Modulo(long Base, long exponent, long mod) {
long x = 1;
long y = Base;
while (exponent > 0) {
if (exponent % 2 == 1) {
x = (x * y) % mod;
}
y = (y * y) % mod;
exponent /= 2;
}
return x % mod;
}
// Function to calculate the Jacobian symbol of a given number
static long CalculateJacobian(long a, long n) {
if (n <= 0 || n % 2 == 0) {
return 0;
}
long ans = 1;
if (a < 0) {
a = -a; // (a/n) = (-a/n) * (-1/n)
if (n % 4 == 3) {
ans = -ans; // (-1/n) = -1 if n ≡ 3 (mod 4)
}
}
if (a == 1) {
return ans; // (1/n) = 1
}
while (a != 0) {
if (a < 0) {
a = -a; // (a/n) = (-a/n) * (-1/n)
if (n % 4 == 3) {
ans = -ans; // (-1/n) = -1 if n ≡ 3 (mod 4)
}
}
while (a % 2 == 0) {
a /= 2;
if (n % 8 == 3 || n % 8 == 5) {
ans = -ans;
}
}
long temp = a;
a = n;
n = temp;
if (a % 4 == 3 && n % 4 == 3) {
ans = -ans;
}
a %= n;
if (a > n / 2) {
a -= n;
}
}
return (n == 1) ? ans : 0;
}
// Function to perform the Solovay-Strassen Primality Test
static bool SolovayStrassen(long p, int iteration) {
if (p < 2) {
return false;
}
if (p != 2 && p % 2 == 0) {
return false;
}
Random rand = new Random();
for (int i = 0; i < iteration; i++) {
long r = Math.Abs(rand.Next());
long a = r % (p - 1) + 1;
long jacobian = (p + CalculateJacobian(a, p)) % p;
long mod = Modulo(a, (p - 1) / 2, p);
if (jacobian == 0 || mod != jacobian) {
return false;
}
}
return true;
}
// Driver Code
static void Main() {
int iter = 50;
long num1 = 15;
long num2 = 13;
if (SolovayStrassen(num1, iter)) {
Console.WriteLine(num1 + " is prime");
} else {
Console.WriteLine(num1 + " is composite");
}
if (SolovayStrassen(num2, iter)) {
Console.WriteLine(num2 + " is prime");
} else {
Console.WriteLine(num2 + " is composite");
}
}
}
JavaScript
// JavaScript program to implement Solovay-Strassen Primality Test
// Modulo function to perform binary exponentiation
function modulo(base, exponent, mod) {
let x = 1;
let y = base;
while (exponent > 0) {
if (exponent % 2 == 1) {
x = (x * y) % mod;
}
y = (y * y) % mod;
exponent = Math.floor(exponent / 2);
}
return x % mod;
}
// To calculate Jacobian symbol of a given number
function calculateJacobian(a, n) {
if (n <= 0 || n % 2 == 0) {
return 0;
}
let ans = 1;
if (a < 0) {
a = -a;
if (n % 4 == 3) {
ans = -ans;
}
}
if (a == 1) {
return ans;
}
while (a !== 0) {
if (a < 0) {
a = -a;
if (n % 4 == 3) {
ans = -ans;
}
}
while (a % 2 == 0) {
a = Math.floor(a / 2);
if (n % 8 == 3 || n % 8 == 5) {
ans = -ans;
}
}
let temp = a;
a = n;
n = temp;
if (a % 4 == 3 && n % 4 == 3) {
ans = -ans;
}
a %= n;
if (a > Math.floor(n / 2)) {
a -= n;
}
}
return n === 1 ? ans : 0;
}
// To perform the Solovay-Strassen Primality Test
function solovoyStrassen(p, iteration) {
if (p < 2 || (p % 2 === 0 && p !== 2)) {
return false;
}
for (let i = 0; i < iteration; i++) {
let a = Math.floor(Math.random() * (p - 2)) + 1;
let jacobian = (p + calculateJacobian(a, p)) % p;
let mod = modulo(a, Math.floor((p - 1) / 2), p);
if (jacobian === 0 || mod !== jacobian) {
return false;
}
}
return true;
}
// Driver Code
let iter = 50;
let num1 = 15;
let num2 = 13;
console.log(num1 + (solovoyStrassen(num1, iter) ? " is prime" : " is composite"));
console.log(num2 + (solovoyStrassen(num2, iter) ? " is prime" : " is composite"));
Output :
15 is composite
13 is prime
Time Complexity: Using fast algorithms for modular exponentiation, the running time of this algorithm is O(k*(log n)3), where k is the number of different values we test.
Auxiliary Space: O(1) as it is using constant space for variables
Accuracy: It is possible for the algorithm to return an incorrect answer. If the input n is indeed prime, then the output will always probably be correctly prime. However, if the input n is composite, then it is possible for the output to probably be incorrect prime. The number n is then called an Euler-Jacobi pseudoprime.
Similar Reads
Basics & Prerequisites
Data Structures
Getting Started with Array Data StructureArray is a collection of items of the same variable type that are stored at contiguous memory locations. It is one of the most popular and simple data structures used in programming. Basic terminologies of ArrayArray Index: In an array, elements are identified by their indexes. Array index starts fr
14 min read
String in Data StructureA string is a sequence of characters. The following facts make string an interesting data structure.Small set of elements. Unlike normal array, strings typically have smaller set of items. For example, lowercase English alphabet has only 26 characters. ASCII has only 256 characters.Strings are immut
2 min read
Hashing in Data StructureHashing is a technique used in data structures that efficiently stores and retrieves data in a way that allows for quick access. Hashing involves mapping data to a specific index in a hash table (an array of items) using a hash function. It enables fast retrieval of information based on its key. The
2 min read
Linked List Data StructureA linked list is a fundamental data structure in computer science. It mainly allows efficient insertion and deletion operations compared to arrays. Like arrays, it is also used to implement other data structures like stack, queue and deque. Hereâs the comparison of Linked List vs Arrays Linked List:
2 min read
Stack Data StructureA Stack is a linear data structure that follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out). LIFO implies that the element that is inserted last, comes out first and FILO implies that the element that is inserted first
2 min read
Queue Data StructureA Queue Data Structure is a fundamental concept in computer science used for storing and managing data in a specific order. It follows the principle of "First in, First out" (FIFO), where the first element added to the queue is the first one to be removed. It is used as a buffer in computer systems
2 min read
Tree Data StructureTree Data Structure is a non-linear data structure in which a collection of elements known as nodes are connected to each other via edges such that there exists exactly one path between any two nodes. Types of TreeBinary Tree : Every node has at most two childrenTernary Tree : Every node has at most
4 min read
Graph Data StructureGraph Data Structure is a collection of nodes connected by edges. It's used to represent relationships between different entities. If you are looking for topic-wise list of problems on different topics like DFS, BFS, Topological Sort, Shortest Path, etc., please refer to Graph Algorithms. Basics of
3 min read
Trie Data StructureThe Trie data structure is a tree-like structure used for storing a dynamic set of strings. It allows for efficient retrieval and storage of keys, making it highly effective in handling large datasets. Trie supports operations such as insertion, search, deletion of keys, and prefix searches. In this
15+ min read
Algorithms
Searching AlgorithmsSearching algorithms are essential tools in computer science used to locate specific items within a collection of data. In this tutorial, we are mainly going to focus upon searching in an array. When we search an item in an array, there are two most common algorithms used based on the type of input
2 min read
Sorting AlgorithmsA Sorting Algorithm is used to rearrange a given array or list of elements in an order. For example, a given array [10, 20, 5, 2] becomes [2, 5, 10, 20] after sorting in increasing order and becomes [20, 10, 5, 2] after sorting in decreasing order. There exist different sorting algorithms for differ
3 min read
Introduction to RecursionThe process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. A recursive algorithm takes one step toward solution and then recursively call itself to further move. The algorithm stops once we reach the solution
14 min read
Greedy AlgorithmsGreedy algorithms are a class of algorithms that make locally optimal choices at each step with the hope of finding a global optimum solution. At every step of the algorithm, we make a choice that looks the best at the moment. To make the choice, we sometimes sort the array so that we can always get
3 min read
Graph AlgorithmsGraph is a non-linear data structure like tree data structure. The limitation of tree is, it can only represent hierarchical data. For situations where nodes or vertices are randomly connected with each other other, we use Graph. Example situations where we use graph data structure are, a social net
3 min read
Dynamic Programming or DPDynamic Programming is an algorithmic technique with the following properties.It is mainly an optimization over plain recursion. Wherever we see a recursive solution that has repeated calls for the same inputs, we can optimize it using Dynamic Programming. The idea is to simply store the results of
3 min read
Bitwise AlgorithmsBitwise algorithms in Data Structures and Algorithms (DSA) involve manipulating individual bits of binary representations of numbers to perform operations efficiently. These algorithms utilize bitwise operators like AND, OR, XOR, NOT, Left Shift, and Right Shift.BasicsIntroduction to Bitwise Algorit
4 min read
Advanced
Segment TreeSegment Tree is a data structure that allows efficient querying and updating of intervals or segments of an array. It is particularly useful for problems involving range queries, such as finding the sum, minimum, maximum, or any other operation over a specific range of elements in an array. The tree
3 min read
Pattern SearchingPattern searching algorithms are essential tools in computer science and data processing. These algorithms are designed to efficiently find a particular pattern within a larger set of data. Patten SearchingImportant Pattern Searching Algorithms:Naive String Matching : A Simple Algorithm that works i
2 min read
GeometryGeometry is a branch of mathematics that studies the properties, measurements, and relationships of points, lines, angles, surfaces, and solids. From basic lines and angles to complex structures, it helps us understand the world around us.Geometry for Students and BeginnersThis section covers key br
2 min read
Interview Preparation
Practice Problem