Mental Model
A prime number is only divisible by 1 and itself. To check if a number is prime, we try dividing it by smaller numbers to see if any divide evenly.
Analogy: Imagine you have a box of candies and you want to split them evenly among friends. If you can only split them evenly with 1 friend or all friends together, the number of candies is prime.
Number: 7 Try dividing by: 2, 3, 4, 5, 6 If none divide evenly -> prime 7 ↑ Check divisors -> 2, 3, 4, 5, 6
