The GCD of given numbers is 1.
Step 1 :
Divide by and get the remainder
The remainder is positive (), so we will continue with division.
Step 2 :
Divide by and get the remainder
The remainder is still positive (), so we will continue with division.
Step 3 :
Divide by and get the remainder
The remainder is still positive (), so we will continue with division.
Step 4 :
Divide by and get the remainder
The remainder is zero => GCD is the last divisor .
We can summarize an algorithm into a following table.
83 | : | 71 | = | 1 | remainder ( 12 ) | ||||||
71 | : | 12 | = | 5 | remainder ( 11 ) | ||||||
12 | : | 11 | = | 1 | remainder ( 1 ) | ||||||
11 | : | 1 | = | 11 | remainder ( 0 ) | ||||||
GCD = 1 |
This solution can be visualized using a Venn diagram.
The GCD equals the product of the numbers at the intersection.