Euclidean Algorithm — For GCD

Ayush Addhyayan
2 min readJul 27, 2021

--

(Day -2 of Advanced Competitive Coding Journey)

Suppose we are given two numbers a and b and we have to find their greatest common divisor(GCD), by definition if any one of the given numbers is zero and the second one is non-zero, so their GCD will be the non-zero value. When both of the given numbers are zeros, then their GCD will be undefined.

By using the Euclidean algorithm, we can calculate the gcd of the given numbers in O(log2(min(a,b))) time complexity.

The algorithm is bit simple and states as following :-

gcd(a,b) = { a (if b = 0) or gcd(b, a%b) (otherwise) }

Proof :- We have to prove gcd(a,b) = gcd(b, a%b) for all a≥0, b≥0
We can prove that the value on the left side of the equation divides the value on the right side of the equation and vice versa, which means LHS and RHS are equal.

let d = gcd(a,b), by definition of gcd d will divide a and b.
and we can write a%b = a — b*[a/b], which means d is going to divide a%b as well, d is dividing a, d is dividing b, and d is dividing a%b. Now we use the fact that for any three numbers p,q,r if p divides q and p divides then p will divide gcd(p, r). Thus the equation on the left side divides the equation on the right side, similarly, we can show the vice versa.

Code Snippet:-

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Ayush Addhyayan
Ayush Addhyayan

Written by Ayush Addhyayan

Software Engineer @Wells Fargo, Former Software Engineering Intern @ Wells Fargo, India. Passionate budding engineer, love to make things work :)

No responses yet

Write a response