Euclidean Algorithm Calculator

    Find GCD using Euclidean algorithm

    Formula

    GCD(a,b) = GCD(b, a mod b)

    Repeatedly divide and take remainder until remainder is 0.

    Examples

    GCD(48, 18)

    48=2Γ—18+12 β†’ 18=1Γ—12+6 β†’ 12=2Γ—6+0 β†’ GCD=6.

    Frequently Asked Questions

    About Euclidean Algorithm

    Find the GCD of two numbers using the Euclidean algorithm with step-by-step division.