Greatest Common Divisor (GCD, GCF, HCF) Calculator

Enter values
Last update: 2024-06-18
0/0
Result:
1
Solution steps
1.
Sort numbers from largest to smallest
= 14, 3
2.
Find GCD of 14 and 3 using Euclid's Algorithm
1.
Calculate the modulo using the Modulo Calculator
1.
Calculate the modulo
mod(14,3)
mod(14,3)
= 2
2.
14 = 4 * 3 + 2
= Remainder 2
3.
2 > 0. Repeat calculation
1.
Calculate the modulo
mod(3,2)
mod(3,2)
= 1
4.
3 = 1 * 2 + 1
= Remainder 1
5.
1 > 0. Repeat calculation
1.
Calculate the modulo
mod(2,1)
mod(2,1)
= 0
6.
2 = 2 * 1 + 0
= Remainder 0
7.
Mod = 0
= 1
Rating: 0
Votes: 0