Prime Numbers • Topic 1 of 3

Primality

A prime number has exactly two distinct positive divisors: 1 and itself. By that definition 1 is not prime (only one divisor) and 2 is the smallest prime — and the only even prime, because every other even number is divisible by 2 and so has at least three divisors. To test whether N is prime you do NOT need to try every smaller number. If N had two factors both greater than √N their product would exceed N, so at least one factor of any composite N is ≤ √N. The √N test: check divisibility only by primes up to √N. For 113, √113 ≈ 10.6, so test 2, 3, 5, 7 — none divide it, so 113 is prime. Knowing all 25 primes below 100 by heart saves precious seconds in CAT, and the √N idea generalises to counting primes in a range.

✅ Solved examples

1. Is 221 prime?
√221 ≈ 14.9, so test primes up to 14: 2, 3, 5, 7, 11, 13. 221 = 13 × 17, so 13 divides it. Not prime.
2. Why is 2 the only even prime?
Any even number > 2 is divisible by 2 as well as 1 and itself, giving 3+ divisors. So only 2 has exactly two divisors among the evens. Hence 2 is the sole even prime.
3. How many primes lie between 1 and 20?
2, 3, 5, 7, 11, 13, 17, 19 — that is 8 primes. (1 is excluded; it is neither prime nor composite.)
4. Verify whether 187 is prime.
√187 ≈ 13.7, test 2, 3, 5, 7, 11, 13. 187 = 11 × 17, so 11 divides it ⇒ composite, not prime.

✏️ Practice — try these, take hints as needed

1. Is 143 prime?
√143 ≈ 11.9.
Test 2, 3, 5, 7, 11.
143 = 11 × 13.
No (143 = 11 × 13)
2. How many primes are there below 30?
List from 2 upward.
2,3,5,7,11,13,17,19,23,29.
Count them.
10
3. To test if 359 is prime, up to which number must you check divisors?
Use √N.
√359 ≈ 18.9.
Check primes ≤ 18.
Primes up to 18 (i.e. 2,3,5,7,11,13,17)
4. Is 1 a prime number?
Count its divisors.
A prime needs exactly two divisors.
1 has only one divisor.
No — 1 is neither prime nor composite
5. Is 323 prime?
√323 ≈ 17.9.
Try 17 and 19.
323 = 17 × 19.
No (323 = 17 × 19)

📝 Topic test — 8 questions

Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.

Loading questions…