About 8,150 results
Open links in new tab
  1. Euclidean algorithm - Wikipedia

    In mathematics, the Euclidean algorithm, [note 1] or Euclid's algorithm, is an efficient method for computing the greatest common divisor (GCD) of two integers, the largest number that divides …

  2. Euclidean algorithms (Basic and Extended) - GeeksforGeeks

    Feb 17, 2025 · The Euclidean algorithm is a way to find the greatest common divisor of two positive integers. GCD of two numbers is the largest number that divides both of them.

  3. Euclidean Algorithm - Math is Fun

    The Euclidean Algorithm is a special way to find the Greatest Common Factor of two integers. It uses the concept of division with remainders (no...

  4. The Euclidean Algorithm (article) | Khan Academy

    Recall that the Greatest Common Divisor (GCD) of two integers A and B is the largest integer that divides both A and B. The Euclidean Algorithm is a technique for quickly finding the GCD of …

  5. Euclidean algorithm for computing the greatest common divisor ...

    Oct 15, 2024 · Since the function is associative, to find the GCD of more than two numbers, we can do gcd (a, b, c) = gcd (a, gcd (b, c)) and so forth. The algorithm was first described in …

  6. Euclidian Algorithm: GCD (Greatest Common Divisor) Explained with

    Nov 30, 2019 · For this topic you must know about Greatest Common Divisor (GCD) and the MOD operation first. The GCD of two or more integers is the largest integer that divides each …

  7. GCDs and The Euclidean Algorithm - Wichita

    The greatest common divisor is the more useful of the two, so we’ll now give an algorithm that lets us find it without having to factor the number first.

  8. Euclidean Algorithm - ProofWiki

    Nov 2, 2025 · The Euclidean algorithm is a method for finding the greatest common divisor (GCD) of two integers a a and b b. Let a, b ∈Z a, b ∈ Z and a ≠ 0 ∨ b ≠ 0 a ≠ 0 ∨ b ≠ 0.

  9. The Euclidean Algorithm

    The basic Euclidean Algorithm explained with examples. Useful for learning the Extended Euclidean Algorithm.

  10. How to Find the GCD (Greatest Common Divisor)? - GeeksforGeeks

    Jul 23, 2025 · This article provides the methods on how to find the GCD (Greatest Common Divisor) and will discuss 3 different methods for it. Finding the GCD of two numbers a and b