Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

Python Program to find GCD

Posted in Python Tutorial
Updated on Jan 11, 2024
By Mari Selvan
πŸ‘οΈ 43 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
Python Program to find GCD

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the realm of programming, solving mathematical problems is a common and essential task. One frequently encountered mathematical concept is the Greatest Common Divisor (GCD) of two numbers.

The GCD is the largest positive integer that divides both numbers without leaving a remainder.

In this tutorial, we'll explore a Python program that efficiently calculates the GCD of two given numbers.

πŸ“„ Example

Let's take a look at the Python code that achieves this functionality.

find_gcd.py
Copied
Copy To Clipboard
# Function to find GCD using Euclidean algorithm
def find_gcd(num1, num2):
    while num2 != 0:
        temp = num2
        num2 = num1 % num2
        num1 = temp
    return num1

# Driver program
if __name__ == "__main__":
    # Replace these values with your desired numbers
    number1 = 48
    number2 = 18

    # Call the function to find GCD
    gcd = find_gcd(number1, number2)

    print(f"GCD of {number1} and {number2} is: {gcd}")

πŸ’» Testing the Program

To test the program with different numbers, simply replace the values of number1 and number2 in the if __name__ == "__main__": block.

Output
GCD of 48 and 18 is: 6

Run the script to see the GCD in action.

🧠 How the Program Works

  1. The program defines a function find_gcd that takes two numbers as input and uses the Euclidean algorithm to calculate their GCD.
  2. Inside the if __name__ == "__main__": block, replace the values of number1 and number2 with the desired numbers.
  3. The program calls the find_gcd function and prints the result.

🧐 Understanding the Euclidean Algorithm

The Euclidean algorithm is a widely used method for finding the GCD of two numbers. It iteratively replaces the larger number with the remainder of the division of the larger number by the smaller number until the remainder becomes zero. The GCD is then the non-zero remainder.

🌐 Real-World Applications

Understanding and calculating the GCD is essential in various fields, including cryptography, computer science, and number theory.

For instance, it plays a crucial role in algorithms for reducing fractions to their simplest form.

🎒 Optimizing the Program

While the provided program is effective, there are other algorithms, such as the Stein algorithm, that can be more efficient for large numbers. Consider exploring and implementing different algorithms based on your specific requirements.

Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
6 months ago

If you have any doubts regarding this article (Python Program to find GCD), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy