Method 1. The prime factorization:
The prime factorization of a number: finding the prime numbers that multiply together to make that number.
1,600 = 26 × 52
1,600 is not a prime number but a composite one.
4,293 = 34 × 53
4,293 is not a prime number but a composite one.
* The natural numbers that are only divisible by 1 and themselves are called prime numbers. A prime number has exactly two factors: 1 and itself.
* A composite number is a natural number that has at least one other factor than 1 and itself.
Calculate the greatest (highest) common factor (divisor):
Multiply all the common prime factors, taken by their smallest powers (exponents).
But the two numbers have no common prime factors.
gcf, hcf, gcd (1,600; 4,293) = 1
gcf, hcf, gcd (1,600; 4,293) = 1
Coprime numbers (prime to each other, relatively prime).
Method 2. The Euclidean Algorithm:
This algorithm involves the process of dividing numbers and calculating the remainders.
'a' and 'b' are the two natural numbers, 'a' >= 'b'.
Divide 'a' by 'b' and get the remainder of the operation, 'r'.
If 'r' = 0, STOP. 'b' = the gcf (hcf, gcd) of 'a' and 'b'.
Else: Replace ('a' by 'b') and ('b' by 'r'). Return to the step above.
Step 1. Divide the larger number by the smaller one:
4,293 ÷ 1,600 = 2 + 1,093
Step 2. Divide the smaller number by the above operation's remainder:
1,600 ÷ 1,093 = 1 + 507
Step 3. Divide the remainder of the step 1 by the remainder of the step 2:
1,093 ÷ 507 = 2 + 79
Step 4. Divide the remainder of the step 2 by the remainder of the step 3:
507 ÷ 79 = 6 + 33
Step 5. Divide the remainder of the step 3 by the remainder of the step 4:
79 ÷ 33 = 2 + 13
Step 6. Divide the remainder of the step 4 by the remainder of the step 5:
33 ÷ 13 = 2 + 7
Step 7. Divide the remainder of the step 5 by the remainder of the step 6:
13 ÷ 7 = 1 + 6
Step 8. Divide the remainder of the step 6 by the remainder of the step 7:
7 ÷ 6 = 1 + 1
Step 9. Divide the remainder of the step 7 by the remainder of the step 8:
6 ÷ 1 = 6 + 0
At this step, the remainder is zero, so we stop:
1 is the number we were looking for - the last non-zero remainder.
This is the greatest (highest) common factor (divisor).
The greatest (highest) common factor (divisor):
gcf, hcf, gcd (1,600; 4,293) = 1
gcf, hcf, gcd (1,600; 4,293) = 1
Coprime numbers (prime to each other, relatively prime).