About 34,200 results
Open links in new tab
  1. Primality test - Wikipedia

    A primality test is an algorithm for determining whether an input number is prime. Among other fields of mathematics, it is used for cryptography. Unlike integer factorization, primality tests do …

  2. Introduction to Primality Test and School Method

    Feb 13, 2025 · It is based on the fact that all primes greater than 3 are of the form 6k ± 1, where k is any integer greater than 0. This is because all integers can be expressed as (6k + i), where i …

  3. Primality Test -- from Wolfram MathWorld

    A primality test is a test to determine whether or not a given number is prime, as opposed to actually decomposing the number into its constituent prime factors (which is known as prime …

  4. Primality Testing | Brilliant Math & Science Wiki

    Prime numbers are of immense importance in cryptography, computational number theory, information science and computer science. There are several algorithms to test if a number is …

  5. Primality Testing: A Comprehensive Guide

    Jun 13, 2025 · Explore the world of primality testing, its significance, and various algorithms used to determine whether a number is prime or composite.

  6. Primality tests - Algorithms for Competitive Programming

    Apr 16, 2024 · So if the equation holds, we don't have a proof for primality. We only can say that p is probably prime. If it turns out that the number is actually composite, we call the base a a …

  7. One of the most important problems in the field of computer science is a math problem as well: How can we determine if an integer is prime? This chapter is devoted to primality testing.

  8. Number Theory - Primality Tests - Stanford University

    Given a natural n, how can we tell if n is prime? Assume n is odd, since the even case is trivial. The most obvious idea is to look for factors of n, but no efficient factoring algorithm is known. …

  9. Primality Tests: A Step-by-Step Explanation - Andrea Minini

    Primality tests are methods used to determine whether an integer is a prime number or not. There are two main types of tests used to determine whether a number is prime.

  10. Factorisation is concerned with the problem of developing efficient algorithms to express a given positive integer n > 1 as a product of powers of distinct primes. With primality testing, however, …