asked 154k views
3 votes
Apply Euclid’s algorithm to find the GCF (30, 45).

1 Answer

5 votes

First, it might be convenient to remind the definition of GCF. The GCF of two no-negative integers m,n, with
m\\e0 \mbox{\ or\ } n \\e 0, is the largest positive integer that divides each of the integers.

The algorithm of Euclides is a method to find the GCF of two numbers, which performs successive division. It starts by division of the smaller of the numbers into the larger, followed by the resulting remainder divided into the divisor of the each division until the remainder is equal to zero. Here, the algorithm stops and the GCF is the remainder of the previous division.

Now, let's compute the GCF(30,45).


  1. 45 / 30 = 1  \mbox{\ remainder \ } \mathbf{15}

  2. 30 / 15 = 2 \mbox {\ remainder \ } \mathbf{0}

Since the remainder is zero, the algorithm stops and therefore, the GCF(30,45) is 15.

answered
User Tonga
by
7.8k points

Related questions

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.