Loading...
Login

Prime Numbers – The Building Blocks of All Numbers

A prime number is a whole number greater than 1 that has exactly two factors: 1 and itself. Primes are the atoms of arithmetic — every other whole number can be broken down into them.

The hunt for primes never really stopped. The largest known prime numbers today are colossal Mersenne primes — numbers of the form 2n − 1 — found by the Great Internet Mersenne Prime Search (GIMPS), a volunteer computing project that has been running continuously since 1996. The current record holder, discovered in 2018, has more than 24 million digits; printed in an ordinary font it would stretch for tens of kilometres. And yet, thanks to Euclid’s 2,300-year-old proof mentioned below, we know for certain that no matter how large a prime anyone ever finds, there will always be a bigger one waiting.

Definition and Examples

NumberFactorsPrime?
21, 2Yes — and the only even prime
71, 7Yes
91, 3, 9No — has a factor of 3
111, 11Yes
11 onlyNo — by definition, 1 is neither prime nor composite

First 25 Prime Numbers

2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97

The Sieve of Eratosthenes

A 2,200-year-old method for finding all primes up to any number:

  1. List all numbers from 2 to your target.
  2. Circle 2. Cross out all multiples of 2 (4, 6, 8...).
  3. Circle the next uncrossed number (3). Cross out all its multiples.
  4. Circle 5, cross out its multiples. Continue until done.
  5. All circled numbers are prime.

How to Test if a Number Is Prime

Divide the number by all primes up to its square root. If none divide it exactly, it is prime.

Is 97 prime?

√97 ≈ 9.8. Test primes up to 9: 2, 3, 5, 7.

97 ÷ 2 = 48.5 ✗  97 ÷ 3 = 32.3 ✗  97 ÷ 5 = 19.4 ✗  97 ÷ 7 = 13.9 ✗

No prime factor found. 97 is prime.

Interesting Facts

  • 2 is the only even prime number.
  • There are infinitely many prime numbers (proved by Euclid ~300 BC).
  • Primes underpin internet security — RSA encryption uses huge prime numbers.
  • Twin primes differ by 2 (e.g. 11 and 13, 17 and 19).

Key Takeaways

  • A prime has exactly two factors: 1 and itself.
  • 1 is not prime; 2 is the smallest and only even prime.
  • Use the square root test to check any number efficiently.
  • Primes are the foundation of prime factorization, GCF, and LCM.

Practice: Prime or Not?

Prime Numbers Question

Related Topics

HomeAboutResourcesDashboard