Recall & Review
beginner
What does GCD stand for and what does it represent?
GCD stands for Greatest Common Divisor. It is the largest number that divides two or more numbers without leaving a remainder.
Click to reveal answer
beginner
Explain the Euclidean Algorithm for finding GCD.
The Euclidean Algorithm finds the GCD by repeatedly replacing the larger number with the remainder of dividing the larger by the smaller until the remainder is zero. The last non-zero remainder is the GCD.
Click to reveal answer
intermediate
How is LCM related to GCD for two numbers a and b?
LCM (Least Common Multiple) and GCD are related by the formula: LCM(a, b) = (a × b) / GCD(a, b). This means the product of two numbers equals the product of their GCD and LCM.
Click to reveal answer
beginner
What is the base case in the Euclidean Algorithm for GCD?
The base case occurs when the remainder becomes zero. At this point, the other number is the GCD.
Click to reveal answer
intermediate
Why is the Euclidean Algorithm efficient for finding GCD?
It reduces the problem size quickly by replacing the larger number with a smaller remainder, avoiding checking all divisors. This makes it much faster than checking all possible divisors.
Click to reveal answer
What is the GCD of 48 and 18 using the Euclidean Algorithm?
✗ Incorrect
48 % 18 = 12, 18 % 12 = 6, 12 % 6 = 0, so GCD is 6.
Which formula correctly relates LCM and GCD of two numbers a and b?
✗ Incorrect
LCM(a, b) = (a × b) / GCD(a, b) is the correct formula.
In the Euclidean Algorithm, what do you do when the remainder is not zero?
✗ Incorrect
You replace the larger number with the remainder and continue until remainder is zero.
What is the GCD of two prime numbers?
✗ Incorrect
Two different prime numbers have no common divisors except 1, so GCD is 1.
Why is the Euclidean Algorithm preferred over checking all divisors?
✗ Incorrect
The algorithm reduces the problem size quickly by using remainders, making it efficient.
Describe step-by-step how to find the GCD of two numbers using the Euclidean Algorithm.
Think about repeatedly using division and remainder.
You got /5 concepts.
Explain how to calculate the LCM of two numbers using their GCD.
LCM and GCD are connected by a simple formula.
You got /5 concepts.