Category:Euclidean algorithm

From LiteratePrograms

Jump to: navigation, search

The Euclidean algorithm is an efficient method for computing the greatest common divisor of two natural numbers (or polynomials, or any other object with the necessary structure), and was one of the first known algorithms to be described formally. It is based on the two identities:

a > b implies: gcd(a, b) = gcd(b, a mod b)
gcd(a, 0) = a

Articles in category "Euclidean algorithm"

There are 11 articles in this category.

C

E

F

H

J

O

P

S

Views