What is the largest 3-digit prime number?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let's check from the top. Since 9 9 9 = 3 × 3 3 3 and 9 9 8 = 2 × 4 4 9 , neither of them will be prime. We will show that 9 9 7 is prime.
To check that a number N is prime, we just have to check that none of the integers from 2 to N are a divisor of N . This is because if N = a × b , then one of the numbers a or b must be at most N .
Moreover, it suffices to only check prime numbers. Since 9 9 7 < 3 2 , let's do the division.
9 9 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 7 = 2 × 4 9 8 + 1 = 3 × 3 3 2 + 1 = 5 × 1 9 9 + 2 = 7 × 1 4 2 + 3 = 1 1 × 9 0 + 7 = 1 3 × 7 6 + 9 = 1 7 × 5 8 + 1 1 = 2 3 × 4 3 + 8 = 2 9 × 3 4 + 1 1 = 3 1 × 3 2 + 5
Hence, the above shows that 997 is indeed prime. Thus, it is the largest 3-digit prime number.