maths.free › Number Theory › Prime numbers
Prime numbers
Testing for primality by trial division up to the square root.
A prime has no divisors except 1 and itself. To test n, try the primes up to √n only — if n had a factor larger than √n, it would also have one smaller. For enormous numbers this is too slow and probabilistic tests take over, but the idea is the same.
Робочий приклад: is 97 prime
Крок за кроком
- \sqrt{97} \approx 9
Only primes up to √97 need testing: any factor above it pairs with one below.
- 97 \bmod 2 = 1
2 does not divide 97.
- 97 \bmod 3 = 1
3 does not divide 97.
- 97 \bmod 5 = 2
5 does not divide 97.
- 97 \bmod 7 = 6
7 does not divide 97.
- \text{97 is prime}
No prime up to the square root divides it, so it has no factors other than 1 and itself.
Показати відповідь
Symbols used here
The non-negative number whose square (n-th power) is x.
Equal to the precision shown, not exactly.
What is left after dividing a by n.
The exponent b must be raised to for x; ln uses base e.
Add a_k for k = 1 up to n.
Multiply a_k for k = 1 up to n.
Naturals, integers, rationals, reals, complex numbers.
n divides a − b; a and b have the same remainder.
b is a multiple of a; the largest number dividing both.
Count of 1..n coprime to n; number of primes up to x.
The remainders 0…n−1 with clock arithmetic.
How to: Prime numbers
- Only primes up to √97 need testing: any factor above it pairs with one below.
- 2 does not divide 97.
- 3 does not divide 97.
- 5 does not divide 97.
- 7 does not divide 97.
- No prime up to the square root divides it, so it has no factors other than 1 and itself.
Questions people ask
Why are primes so important?
Every integer factors into primes in exactly one way, so primes are the atoms of multiplication. Cryptography relies on that factoring being easy to state and hard to do.
How do I tell whether a big number is prime?
Trial division up to the square root works for small numbers. For large ones, probabilistic tests (Miller–Rabin) give an answer that is wrong with negligible probability, and deterministic tests (AKS) exist but are slower.
Спробуйте власну
Більше в Number Theory
Prime factorisationGCD and LCMModular arithmeticDivisorsSequencesNumber basesDiophantine equationsFermat's little theorem and Euler's theoremRSA: cryptography from number theory