Difference between revisions of "Prime number"
Karl Jones (Talk | contribs) |
Karl Jones (Talk | contribs) (→See also) |
||
(One intermediate revision by the same user not shown) | |||
Line 45: | Line 45: | ||
== See also == | == See also == | ||
+ | * [[Adleman–Pomerance–Rumely primality test]] | ||
* [[Algebra]] | * [[Algebra]] | ||
* [[Algorithm]] | * [[Algorithm]] | ||
+ | * [[Bonse's inequality]] | ||
+ | * [[Brun sieve]] | ||
+ | * [[Burnside theorem]] | ||
+ | * [[Chebotarev's density theorem]] | ||
+ | * [[Chinese remainder theorem]] | ||
+ | * [[Cullen number]] | ||
* [[Goldbach's conjecture]] | * [[Goldbach's conjecture]] | ||
+ | * [[Illegal prime]] | ||
* [[Information technology]] | * [[Information technology]] | ||
* [[Lehmer sieve]] | * [[Lehmer sieve]] | ||
− | * [[ | + | * [[List of prime numbers]] |
+ | * [[Mersenne prime]] | ||
+ | * [[Multiplicative number theory]] | ||
* [[Number]] | * [[Number]] | ||
+ | * [[Number field sieve]] | ||
* [[Number theory]] | * [[Number theory]] | ||
+ | * [[Pepin's test]] | ||
+ | * [[Practical number]] | ||
* [[Prime element]] | * [[Prime element]] | ||
+ | * [[Prime gap]] | ||
* [[Prime ideal]] | * [[Prime ideal]] | ||
+ | * [[Prime k-tuple]] | ||
+ | * [[Primon gas]] | ||
* [[Public-key cryptography]] | * [[Public-key cryptography]] | ||
+ | * [[Quadratic residuosity problem]] | ||
+ | * [[RSA number]] | ||
+ | * [[Smooth number]] | ||
+ | * [[Super-prime]] | ||
+ | * [[Woodall number]] | ||
== External links == | == External links == | ||
* [https://en.wikipedia.org/wiki/Prime_number Prime number] @ Wikipedia | * [https://en.wikipedia.org/wiki/Prime_number Prime number] @ Wikipedia | ||
+ | |||
+ | [[Category:Mathematics]] | ||
+ | [[Category:Numbers]] |
Latest revision as of 08:56, 20 September 2016
A prime number (or a prime) is a natural number greater than 1 that has no positive divisors other than 1 and itself.
Contents
Description
A natural number greater than 1 that is not a prime number is called a composite number.
For example, 5 is prime because 1 and 5 are its only positive integer factors, whereas 6 is composite because it has the divisors 2 and 3 in addition to 1 and 6.
Central role of primes
The fundamental theorem of arithmetic establishes the central role of primes in number theory: any integer greater than 1 can be expressed as a product of primes that is unique up to ordering.
The uniqueness in this theorem requires excluding 1 as a prime because one can include arbitrarily many instances of 1 in any factorization, e.g., 3, 1 · 3, 1 · 1 · 3, etc. are all valid factorizations of 3.
Primality
The property of being prime (or not) is called primality.
Methods for determined primes
A simple but slow method (see Algorithm) of verifying the primality of a given number n is known as trial division. It consists of testing whether n is a multiple of any integer between 2 and \sqrt{n}.
Algorithms much more efficient than trial division have been devised to test the primality of large numbers. Particularly fast methods are available for numbers of special forms, such as Mersenne numbers. As of April 2014, the largest known prime number has 17,425,170 decimal digits.
History
There are infinitely many primes, as demonstrated by Euclid around 300 BC.
There is no known useful formula that sets apart all of the prime numbers from composites. However, the distribution of primes, that is to say, the statistical behaviour of primes in the large, can be modelled. The first result in that direction is the prime number theorem, proven at the end of the 19th century, which says that the probability that a given, randomly chosen number n is prime is inversely proportional to its number of digits, or to the logarithm of n.
Many questions regarding prime numbers remain open, such as Goldbach's conjecture (that every even integer greater than 2 can be expressed as the sum of two primes), and the twin prime conjecture (that there are infinitely many pairs of primes whose difference is 2). Such questions spurred the development of various branches of number theory, focusing on analytic or algebraic aspects of numbers.
Primes and information technology
Primes are used in several routines in information technology, such as public-key cryptography, which makes use of properties such as the difficulty of factoring large numbers into their prime factors.
Primes and mathematics
Prime numbers give rise to various generalizations in other areas of mathematics, mainly algebra, such as prime elements and prime ideals.
Lehmer sieve
Lehmer sieve are mechanical devices that implement sieves in number theory.
See also
- Adleman–Pomerance–Rumely primality test
- Algebra
- Algorithm
- Bonse's inequality
- Brun sieve
- Burnside theorem
- Chebotarev's density theorem
- Chinese remainder theorem
- Cullen number
- Goldbach's conjecture
- Illegal prime
- Information technology
- Lehmer sieve
- List of prime numbers
- Mersenne prime
- Multiplicative number theory
- Number
- Number field sieve
- Number theory
- Pepin's test
- Practical number
- Prime element
- Prime gap
- Prime ideal
- Prime k-tuple
- Primon gas
- Public-key cryptography
- Quadratic residuosity problem
- RSA number
- Smooth number
- Super-prime
- Woodall number
External links
- Prime number @ Wikipedia