Monday, May 8, 2017

elementary number theory - Finding gcd using euclid's algorithm


Find gcd(47,6) using euclid's algorithm




I know that if gcd(a,b)=gcd(b,r) where a=qb+r



So in there case 47=76+5 or 47=861 should I prefer finding prime numbers decomposition? will it make the process shorter?

No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...