Short division
Best for several medium-sized numbers. Repeatedly divide a whole row or a useful subset by a shared prime.
用短除法和辗转相除法求最大公约数与最小公倍数
Remove shared prime factors in a short-division ladder, learn the different stopping rules for GCD and LCM, and use repeated remainders to find a two-number GCD efficiently.
The chapter names several ways to find common factors and common multiples. The best method depends on what information is already visible.
Best for several medium-sized numbers. Repeatedly divide a whole row or a useful subset by a shared prime.
Best for two numbers when factorization would be slow. Replace the larger number by the remainder.
Best when the standard prime factorizations are already known or easy to build.
Other methods can also work. This checkpoint asks which method uses the supplied information most directly.
Choose a method based on the information already visible.
Euclid avoids factoring a pair; short division organizes several numbers; aligned exponents can be read directly. Euclidean algorithm; short division; prime exponents. These recommendations do not mean the other methods are mathematically invalid.
For a GCD ladder, every selected divider must divide all current entries. The worked example divides 36, 108, and 126 by 2, then by 3, then by 3 again.
After the three divisions, the bottom row is:
The numbers 2 and 6 still share a factor, but no factor greater than 1 divides all three.
Reveal all three divisions before checking this mission.
A GCD divider must divide every current entry. Multiply only the chosen dividers.
2×3×3=18; the final row 2,6,7 has overall GCD 1. Divider product 18; bottom-row GCD 1; original GCD 18.
For this LCM ladder, continue after the common-to-all steps. Choose a prime that divides at least two current entries. Divide every entry divisible by that prime, and copy every other entry unchanged.
The extra divider is 2:
The 7 is not divisible by 2, so it is copied down. The final entries 1, 3, and 7 are pairwise coprime.
Reveal all four divisions and answer the copied-entry prediction before checking.
For the LCM, copy unchanged entries and multiply the final row as well.
Prediction: copy 15 in row 6,10,15. In the worked example extra step, divide 2 and 6 by 2 and copy 7. Extra divider 2; copied entry 7; LCM (2×3×3×2)×1×3×7=756.
“Overall GCD 1” means no number greater than 1 divides every entry. “Pairwise coprime” means each pair of entries has GCD 1. These are different conditions. A GCD ladder uses the first; an LCM ladder uses the second.
Overall GCD 1 does not mean that every pair has GCD 1.
Row 2,6,7 has overall GCD 1, but 2 and 6 share 2. GCD ladder may stop: yes; this LCM ladder may stop: no. Pairwise GCDs for 6,10,15 are 2,3,5.
The worked example asks for the GCD and LCM of 403, 527, and 713. One common division gives three pairwise-coprime quotients (the numbers left in the next row). These are not division remainders.
The worked example’s short-division step is:
The final entries 13, 17, and 23 are pairwise coprime.
Multiply 31 by the final entries for the LCM:
Run the guided-practice multiplication before checking.
Look for the same factor in all three numbers before multiplying the final row.
31 divides all three original numbers, giving quotients 13,17,23. GCD 31; LCM 31×13×17×23=157573.
The Euclidean algorithm repeats one step: divide, keep the remainder, then use the previous divisor and that remainder as the next pair. Follow the worked chain below.
A number divides both 527 and 403 exactly when it divides both 403 and 124. Replacing the larger number by the remainder does not change the GCD.
Reveal all three divisions before checking.
Subtract a multiple of the smaller number. Common divisors are preserved.
527=1×403+124; 403=3×124+31; 124=4×31+0. Quotients 1,3,4; final divisor and GCD 31.
The laboratory generates a canonical ladder. For GCD, it repeatedly uses the smallest prime dividing every current entry. For LCM, it uses the smallest prime dividing at least two entries and copies the rest.
Answer for the fixed numbers 72, 90, 120, even if you explore another preset.
Check whether a divider acts on all entries or only on a subset.
GCD dividers multiply to 6. The LCM ladder must remove every remaining shared prime before multiplying the final row. GCD 6; LCM 360.
For two positive whole numbers, repeated remainder divisions usually reach the GCD faster than listing all factors.
Fold the numbers into the calculation one at a time.
Answer for the fixed pair 713 and 527. Count every division equation, including the final one with remainder zero. The generator puts the larger input first.
The next pair is the previous divisor and the remainder. Stop at remainder zero.
713=1×527+186; 527=2×186+155; 186=1×155+31; 155=5×31+0. Four division rows; final divisor and GCD 31.
Correct all eight questions to complete the workshop.
1. In a GCD short-division step, the divider must divide …
2. In an LCM step, an entry not divisible by the selected prime is …
3. gcd(36,108,126)
4. lcm(36,108,126)
5. gcd(403,527,713)
6. lcm(403,527,713)
7. gcd(72,90,120)
8. lcm(72,90,120)
Choose the method before calculating. Revisit the local hint for that method, then verify every condition in the question.
The LCM includes both the selected-divider product and final-row product. All current entries; copied unchanged; 18; 756; 31; 157573; 6; 360.
Complete all ten missions, including 5 out of 5 on this ticket, to earn the certificate.
1. Product of the dividers in a complete GCD ladder for 36,108,126
2. lcm(36,108,126)
3. gcd(2,6,7)
4. GCD of the fresh pair 1071 and 462
5. lcm(403,527,713)
This certifies that the student can build GCD and LCM short-division ladders, apply the correct stopping rule, copy unchanged entries, and find a two-number GCD through repeated remainders.
Lesson 19.2 • Chapter 19
Choose the method before calculating. Revisit the local hint for that method, then verify every condition in the question.
1071=2×462+147; 462=3×147+21; 147=7×21+0. Answers: 18; 756; 1; 21; 157573.
The chapter introduction names the Euclidean algorithm, but these pages do not provide a worked Euclidean example; the remainder chains and general Euclidean laboratory on this page are added instructional scaffolding.The page also preserves the original’s distinction between the GCD stopping rule (overall GCD 1) and the LCM stopping rule (pairwise coprime final entries).