Java: Prove that Euclid’s algorithm computes the greatest common divisor of two positive given integers
GCD Using Euclid's Algorithm
Write a Java program to prove that Euclid’s algorithm computes the greatest common divisor of two integers that have positive values.
According to Wikipedia "The Euclidean algorithm is based on the principle that the greatest common divisor of two numbers does not change if the larger number is replaced by its difference with the smaller number. For example, 21 is the GCD of 252 and 105 (as 252 = 21 × 12 and 105 = 21 × 5), and the same number 21 is also the GCD of 105 and 252 − 105 = 147. Since this replacement reduces the larger of the two numbers, repeating this process gives successively smaller pairs of numbers until the two numbers become equal. When that occurs, they are the GCD of the original two numbers. By reversing the steps, the GCD can be expressed as a sum of the two original numbers each multiplied by a positive or negative integer, e.g., 21 = 5 × 105 + (−2) × 252. The fact that the GCD can always be expressed in this way is known as Bézout's identity."
Visual Presentation:
Sample Solution-1:
Java Code:
Sample Output:
result: 24 result: 1
Flowchart:
For more Practice: Solve these Related Problems:
- Write a Java program to compute the GCD of two integers using a recursive implementation of Euclid's algorithm.
- Write a Java program to find the GCD of an array of integers by iteratively applying Euclid's algorithm.
- Write a Java program to calculate both the GCD and LCM of two numbers using Euclid's algorithm.
- Write a Java program to implement the extended Euclidean algorithm and output the Bézout coefficients.
Sample Solution-2:
Java Code:
Sample Output:
Result: 24 Result: 1
Flowchart:
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Java program that returns the largest integer but not larger than the base-2 logarithm of a given integer.
Next: Write a Java program to create a two-dimension array (m x m) A[][] such that A[i][j] is true if I and j are prime and have no common factors, otherwise A[i][j] becomes false.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.