-
Notifications
You must be signed in to change notification settings - Fork 303
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
Create Bézout’s Identity (Extended Euclidean Algorithm) #1759
Conversation
Bézout’s Identity is a fundamental theorem in number theory that states: for any two integers 𝑎 a and 𝑏 b with a greatest common divisor 𝑑 d, there exist two integers 𝑥 x and 𝑦 y such that: 𝑎 𝑥 + 𝑏 𝑦 = 𝑑 ax+by=d The Extended Euclidean Algorithm is an extension of the Euclidean algorithm that not only finds the GCD of two integers 𝑎 a and 𝑏 b but also finds the coefficients 𝑥 x and 𝑦 y that satisfy Bézout's Identity. This algorithm has practical applications in: Solving linear Diophantine equations. Computing modular inverses (important in cryptography). Finding integer solutions in various number theory problems.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉 Thank you for your contribution! Your pull request has been submitted successfully. A maintainer will review it as soon as possible. We appreciate your support in making this project better
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Readme.md file missing
can u tell me how do i add that ? |
@ananyashinde2434 do you know how to operate git on vs code |
do one thing open this https://github.com/ananyashinde2434/C and press Dot button . this will convert your github into VS code environment and you will be more comfortable to contribute. |
can u tell me where is the dot button u r talking about ? |
Bézout’s Identity is a fundamental theorem in number theory that states: for any two integers 𝑎 and 𝑏 with a greatest common divisor
d, there exist two integers 𝑥 and 𝑦 such that:
𝑎𝑥+𝑏𝑦=𝑑 The Extended Euclidean Algorithm is an extension of the Euclidean algorithm that not only finds the GCD of two integers a and b but also finds the coefficients
𝑥 and y that satisfy Bézout's Identity. This algorithm has practical applications in:
Solving linear Diophantine equations.
Computing modular inverses (important in cryptography). Finding integer solutions in various number theory problems.