Category:Prime Numbers: Difference between revisions

From Rosetta Code
Content added Content deleted
m (added cat "classic cs problems" (i believe the find for "prime numbers" is classic cs problem))
(Blurb about the instructional nature of prime algorithms)
Line 2: Line 2:
[[Category:Classic CS problems and programs]]
[[Category:Classic CS problems and programs]]
A '''prime number''' is defined as a positive integer which has exactly two factors: one and itself. A factor of a number is an integer which divides evenly into it--that is, divides with a remainder of zero. By this definition one and zero are not prime. One only has one factor (which is itself), and zero divided by any number always has a remainder of zero, so it effectively has an infinite number of factors.
A '''prime number''' is defined as a positive integer which has exactly two factors: one and itself. A factor of a number is an integer which divides evenly into it--that is, divides with a remainder of zero. By this definition one and zero are not prime. One only has one factor (which is itself), and zero divided by any number always has a remainder of zero, so it effectively has an infinite number of factors.

Primality is frequently used for instructional purposes in computer science. Naive algorithms for calculating it are usually complex enough to be a test for a new programmer (barring algorithms built into languages), but simple enough that they can be used as parts of problems to follow.


Below is a list of tasks which involve the calculation or use of prime numbers.
Below is a list of tasks which involve the calculation or use of prime numbers.

Revision as of 12:54, 8 October 2009

A prime number is defined as a positive integer which has exactly two factors: one and itself. A factor of a number is an integer which divides evenly into it--that is, divides with a remainder of zero. By this definition one and zero are not prime. One only has one factor (which is itself), and zero divided by any number always has a remainder of zero, so it effectively has an infinite number of factors.

Primality is frequently used for instructional purposes in computer science. Naive algorithms for calculating it are usually complex enough to be a test for a new programmer (barring algorithms built into languages), but simple enough that they can be used as parts of problems to follow.

Below is a list of tasks which involve the calculation or use of prime numbers.

Pages in category "Prime Numbers"

The following 114 pages are in this category, out of 114 total.