Jump to content
Urch Forums

easy way of finding GCD !


Edstroyer

Recommended Posts

this method is called " method of successive division"

 

example : find the Greatest Common Divisor (GCD) of the two numbers:

 

31 and 27 ... ofcourse, you can pick any other two numbers, its that easy!

 

notice the pattern because its the only way i can explain it:

 

START :

 

31 = (27)*1 + [4]

(27) = [4]*6 + {3}

[4] = {3}*1 + (1)

{3} = (1)*3 + 0 ----> STOP when you see the Zero , your GCD is the previous step

 

ofcourse the GCD is a 1 because 31 is a prime , but try two other numbers and see how quick and easy this method is.

 

might just save you on the actual exam :whistle:

Link to comment
Share on other sites

  • 11 months later...
  • 10 months later...
  • 1 month later...

let me do it another way a bit graphical

 

---> 1

-->----

28 |44

---> 28 1

--->----------

--->16 | 28

-------->16 1

-------->----------

-------->12 | 16

------------->12 3

------------->-------------

------------->4 | 12

----------------->12

----------------->--------

------------------>X

----------------->---------

 

So 4 is the GCF.

 

 

regards

jinics

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...