A number is a prime number if that number has precisely two distinct divisors, one and itself. First ten prime numbers are
2, 3, 5, 7, 11, 13, 17, 19, 23, 29
So, if we can find that N has two divisors than it’s a prime number else not, this is actually brute force approach and the complexity is O (N). How we do that, starting from 1 to N we have check if N is divisible by 1, 2, 3, ….., N each time it divide we increment our divisor count by one and at the end we will check if the divisor count is 2 or not.
Can we do better, yes we can. Look carefully the only even prime is 2. If we add an if condition that if the number is 2 return true else false if the number is even, because other even numbers can’t not be a prime number. For even numbers the complexity becomes O (1). So what about odd numbers? How can we improve that? We can reduce the complexity for odd number O (N / 2). See we don’t need to divide by even numbers because the Number N is an odd number, so it will never be divide by an even number. So we have to check if N is divisible by 1, 3, 5, 7, 9, 11, 13, 15 …. N.
We never satisfied! We need more yes the ultimate complexity of an odd number to check whether it’s prime or not is O (√N). For finding if the number has any divisors other then 1 and itself it will appear under the square root of N, we don’t need to check up to N.