Find greatest common divisor using Euclidean Algorithm. Find $gcd(56,72) $ using Euclidean Algorithm.

Example: Find $gcd(56,72) $ using Euclidean Algorithm.

Solution: To find  $gcd(56,72) $ using Euclidean Algorithm. We have to apply Division Algorithm to integers $56$ and $72$. Firstly we divide $72$ by $56$. When we divide $72$ by $56$, we get $q = 1$ (i.e. $1$ is a quotient) and $r = 16$ (i.e. $16$ is a remainder). So we get following system of equations in  Euclidean Algorithm.

$72 = 56~ \cdot ~1 + 16$ 

$56 = 16 ~\cdot~ 3 + 8$

$16 = 8 ~\cdot ~2 + 0$

$8$ is the last nonzero remainder obtained in this Algorithm, so  $gcd(72, 56)  = 8$.




Popular posts from this blog

Definition of divisibility and Theorem on divisibility

The Division Algorithm / Prove that given integers $a$ and $b$, with $b > ~ 0$, there exist unique integers $q$ and $r$ such that $a = b \cdot q +r$, where $0 \leq r < b$. The integer $q$ is called the $\textbf{quotient}$ and the integer $r$ is called $\textbf{remainder}$.

Define Greatest Common Divisor and Prove that if $a$ and $b$ are any integers, not both of them are zero. Then there exist integers $x$ and $y$ such that $gcd(a, b) =a \cdot x + b \cdot y$.