STAGE NT 1.1 · 8 PRACTICE PROBLEMS · 2 NEW-CONTEXT APPLICATIONS
Euclid’s Algorithm
Goal: Understand and apply euclid’s algorithm.
Before you begin: Integer arithmetic, prime factorization and fractions.
Understand the idea
A common divisor of a and b also divides a−qb. Replacing the larger input by its remainder therefore preserves the complete set of common divisors.
Choose and carry out a method
Repeatedly divide with remainder until the remainder is zero. The last nonzero remainder is the greatest common divisor.
Check the reasoning
It must divide both original numbers. The backward remainder identities explain why no larger common divisor was missed.
Find gcd(36,57) using the Euclidean algorithm.
- Replacing the larger number by its remainder preserves the common divisors.
- 57=36+21; continue dividing until the remainder is zero.
- The last nonzero remainder is 3. Both lengths are multiples of it.
3
Find gcd(48,76) using the Euclidean algorithm.
- Replacing the larger number by its remainder preserves the common divisors.
- 76=48+28; continue dividing until the remainder is zero.
- The last nonzero remainder is 4. Both lengths are multiples of it.
4
Common pitfalls
Possible mix-up: The first remainder is always the gcd.
Continue until a zero remainder appears.
Possible mix-up: A correct numerical answer alone explains the method.
State the governing relationship and check the conditions described above.
Explain it to yourself
Explain why subtracting a multiple preserves common divisors.
Preview the eight practice prompts
- Find gcd(72,114) using the Euclidean algorithm.
- Find gcd(84,133) using the Euclidean algorithm.
- Find gcd(96,152) using the Euclidean algorithm.
- Find gcd(108,171) using the Euclidean algorithm.
- Find gcd(120,190) using the Euclidean algorithm.
- Find gcd(132,209) using the Euclidean algorithm.
- Two cables measure 144 cm and 228 cm. They must be cut into equal pieces with no leftover cable. What is the greatest possible piece length in centimeters? New context
- Two cables measure 156 cm and 247 cm. They must be cut into equal pieces with no leftover cable. What is the greatest possible piece length in centimeters? New context

