NothingComes3asy
How are you supposed to know 211 is prime is 2 min? I have no idea. Yes you can check numbers up to 20, but how do we know?
For primality, all you need to do is to check for divisibility of the number in question by
prime numbers from 2 to \(\sqrt{number}\)
Example, for checking primality of 211 ---> \(\sqrt {211}\) \(\approx\) 15 (but less than 15, you need to remember square of numbers 1 to 20 and cubes of 1 to 10 for GMAT). Thus you need to check divisibility of 211 by prime numbers from 2 to 14 (=2,3,5,7,11,13)
For this, remember the divisibility tests --->
211 is NOT even ---> eliminate 2,4,6,8,10,12,14
211 by 3 ---> sum of the digits \(\neq\) divisible by 3 ---> eliminate 3,6,9,12
211 by 5---> does not end in 5 or 0 ---> eliminate 5 and 10
211 by 7 ---> 210 is clearly divisible by 7 --> 211 can not be divisible by 7 ---> eliminate 7 and 14.
211 by 11 ---> |sum of odd place digits - sum of even place digits| = |2+1-1| = 2 = NOT a multiple of 11 ---> eliminate 11
211 by 13 ---> regular division is the only way ---> 130 is a multiple of 13 and 211 is 81 more than 13 ---> as 81 is NOT a multiple of 13 ---> eliminate 13.
Thus, 211 IS a prime number.
Hope this helps.