Summary
Highlights
Prime numbers are whole numbers that can only be divided by 1 and themselves, meaning they have exactly two divisors. An exact division results in a remainder of zero. For example, 5 is a prime number because it can only be divided by 1 and 5 exactly.
To check if 11 is a prime number, we attempt to divide it by numbers other than 1 and 11. Since dividing 11 by 2, 3, 4, 5, 6, all the way up to 10 does not result in an exact division (there's always a remainder), 11 is confirmed as a prime number with divisors only of 1 and 11.
Unlike prime numbers, composite numbers have more than two divisors. For instance, the number 4 is a composite number because it can be divided exactly by 1, 4, and also by 2, giving it three divisors.
To check if a number is prime, divide it by smaller prime numbers. If none of these divisions result in a zero remainder before the quotient becomes less than the divisor, the number is prime. Knowing divisibility criteria can significantly aid in this process for larger numbers.
The video presents two challenges: Is 17 prime or composite? (It's prime, only divisible by 1 and 17). Is 9 prime or composite? (It's composite, divisible by 1, 3, and 9).
Two key facts: The number 1 is not a prime number because it only has one divisor (itself). The number 2 is the only even prime number. It's crucial to remember that every whole number has 1 and itself as divisors, even if they have more, categorizing them as composite.