Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added extended euclidean algorithm #720

Merged
merged 2 commits into from
Feb 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions Maths/extended_euclidean_algorithm.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# @Author: S. Sharma <silentcat>
# @Date: 2019-02-25T12:08:53-06:00
# @Email: silentcat@protonmail.com
# @Last modified by: silentcat
# @Last modified time: 2019-02-26T07:07:38-06:00

import sys

# Finds 2 numbers a and b such that it satisfies
# the equation am + bn = gcd(m, n) (a.k.a Bezout's Identity)
def extended_euclidean_algorithm(m, n):
a = 0; aprime = 1; b = 1; bprime = 0
q = 0; r = 0
if m > n:
c = m; d = n
else:
c = n; d = m

while True:
q = int(c / d)
r = c % d
if r == 0:
break
c = d
d = r

t = aprime
aprime = a
a = t - q*a

t = bprime
bprime = b
b = t - q*b

pair = None
if m > n:
pair = (a,b)
else:
pair = (b,a)
return pair

def main():
if len(sys.argv) < 3:
print('2 integer arguments required')
exit(1)
m = int(sys.argv[1])
n = int(sys.argv[2])
print(extended_euclidean_algorithm(m, n))

if __name__ == '__main__':
main()