In the vast world of numbers, some numbers play a special role because of their unique properties. Among these, prime numbers stand out as the fundamental building blocks of all natural numbers. Understanding prime numbers is essential not only in mathematics but also in competitive exams, where questions often test your ability to identify and work with primes quickly and accurately.
Prime numbers are natural numbers greater than 1 that cannot be formed by multiplying two smaller natural numbers. They are like the "atoms" of the number system because every natural number can be broken down into a product of primes in a unique way. This concept is crucial for solving many arithmetic problems efficiently.
Before diving into prime numbers, let's briefly recall where they fit in the number system hierarchy:
Prime numbers belong to the set of natural numbers and have unique properties that distinguish them from other numbers.
A prime number is a natural number greater than 1 that has exactly two distinct positive divisors: 1 and the number itself. This means it cannot be divided evenly by any other number.
For example, consider the number 5:
Therefore, 5 is a prime number.
On the other hand, a composite number is a natural number greater than 1 that has more than two divisors. For example, 6 is composite because it has divisors 1, 2, 3, and 6.
Important properties of prime numbers include:
Checking whether a number is prime can sometimes be time-consuming if done by trial division alone. However, there are several methods and rules that help us identify primes efficiently.
These rules help quickly determine if a number is divisible by smaller numbers, which is the first step in checking primality.
Applying these rules helps eliminate many composite numbers quickly.
This ancient and efficient method finds all prime numbers up to a given limit by systematically "sieving out" multiples of primes.
How it works:
graph TD A[Start with list 2 to N] --> B[Pick first uncrossed number p] B --> C[Cross out multiples of p] C --> D{Are there more numbers > p?} D -- Yes --> B D -- No --> E[Remaining numbers are primes]Step 1: Check divisibility by 2. The last digit is 9 (odd), so 29 is not divisible by 2.
Step 2: Check divisibility by 3. Sum of digits = 2 + 9 = 11, which is not divisible by 3.
Step 3: Check divisibility by 5. Last digit is not 0 or 5.
Step 4: Check divisibility by 7. Double last digit: 9 x 2 = 18. Subtract 18 from remaining digit: 2 - 18 = -16, which is not divisible by 7.
Step 5: Since 29 is less than \(7^2 = 49\), no need to check higher primes.
Answer: 29 has no divisors other than 1 and itself, so it is a prime number.
Step 1: Start by dividing 84 by the smallest prime number 2:
84 / 2 = 42
Step 2: Divide 42 by 2 again:
42 / 2 = 21
Step 3: 21 is not divisible by 2, try next prime 3:
21 / 3 = 7
Step 4: 7 is a prime number.
Answer: Prime factorization of 84 is \(2 \times 2 \times 3 \times 7\).
Check each number from 51 to 69:
Answer: Prime numbers between 50 and 70 are 53, 59, 61, and 67.
Step 1: Write numbers 2 to 30.
Step 2: Start with 2, cross out multiples: 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30.
Step 3: Next uncrossed number is 3, cross out multiples: 6, 9, 12, 15, 18, 21, 24, 27, 30.
Step 4: Next uncrossed number is 5, cross out multiples: 10, 15, 20, 25, 30.
Step 5: Next uncrossed number is 7, cross out multiples: 14, 21, 28.
Step 6: Remaining numbers are primes: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29.
Answer: Primes up to 30 are 2, 3, 5, 7, 11, 13, 17, 19, 23, and 29.
graph TD A[Start with numbers 2 to 30] --> B[Cross out multiples of 2] B --> C[Cross out multiples of 3] C --> D[Cross out multiples of 5] D --> E[Cross out multiples of 7] E --> F[List remaining numbers as primes]
Step 1: Check divisibility by 2: 91 is odd, so no.
Step 2: Check divisibility by 3: Sum digits 9+1=10, not divisible by 3.
Step 3: Check divisibility by 5: Last digit not 0 or 5.
Step 4: Check divisibility by 7: 91 / 7 = 13 (exact).
Answer: 91 is composite because it equals \(7 \times 13\).
When to use: When testing if a number is prime to save time.
When to use: When needing to list multiple primes quickly.
When to use: To speed up problem-solving in competitive exams.
When to use: To quickly eliminate even numbers greater than 2.
When to use: When checking smaller numbers for prime status.
Progress tracking is paywalled — subscribe to mark subtopics as understood and save your streak.
Go to practice →