answersLogoWhite

0

There are several methods; the most efficient ones are quite complicated. Here are the simplest methods:1) Try dividing the candidate for Prime number, which I shall call "n", by all numbers from 2 to n-1. For instance, to check whether 7 is a prime number, check divisibility by 2, 3, 4, 5, 6. Since it isn't divisible by any of those, it is a prime number.

2) Same as above, but use some optimizations. First, only divide by 2, and then by odd numbers. Second, only do the division by numbers up the the square root of your number "n". To check whether 101 is a prime number, try dividing by 2, 3, 5, 7, and 9. Dividing by 11, and larger numbers, is no longer necessary, since 11 is larger than the square root of 101.

(Why the square root? - If your number "n" is divisible by some number that is LARGER than its square root, it will be the product of this number and another factor that is SMALLER than the square root - and you would already have found this factor previously.)

The second method can be used conveniently for numbers up to a few thousand or so. If you write a computer program, you can easily use it to check primality of millions or even billions.

There are other methods, which are both more efficient (and therefore appropriate for much larger numbers), and more complicated. Some will determine that a number is "probably a prime" - which is good enough for many purposes, such as cryptography (the probability of a false positive can be made very, very small). There are other methods with which you can know for sure whether a number is prime.

If you are interested in the gory details, you might check the Wikipedia article on "Primality test" - or search for other sources.

User Avatar

Wiki User

7y ago

Still curious? Ask our experts.

Chat with our AI personalities

DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin
MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
BeauBeau
You're doing better than you think!
Chat with Beau
More answers

No, it is a slog. You have to check if any prime number up to and including its square root if that is a prime, is a factor. Clearly, some divisibility rules are simpler than others.

User Avatar

Wiki User

7y ago
User Avatar

Add your answer:

Earn +20 pts
Q: Are there tricks to determining if a number is prime?
Write your answer...
Submit
Still have questions?
magnify glass
imp