Use GCD Calculator

Enter your data below to use the GCD Calculator

📌 Try these examples:
RESULT

Last updated

Common GCD Values Quick Reference

When to Use GCD

Examples

Example 1: Basic GCD of Two Numbers

Find the GCD of 48 and 18:

Input: 48, 18

Euclidean Algorithm Steps:
  48 = 2 × 18 + 12   → remainder 12
  18 = 1 × 12 + 6    → remainder 6
  12 = 2 × 6  + 0    → remainder 0 (stop)

GCD(48, 18) = 6

The last non-zero remainder is the GCD. So 6 is the largest number that divides both 48 and 18 evenly.

Example 2: Simplifying Fractions

The most common everyday use of GCD is reducing fractions to their simplest form:

Fraction: 48/18

Step 1: Find GCD(48, 18) = 6
Step 2: Divide numerator and denominator by GCD
  48 ÷ 6 = 8
  18 ÷ 6 = 3

Simplified fraction: 8/3
More examples:
  36/48  → GCD = 12 → 3/4
  100/75 → GCD = 25 → 4/3
  56/98  → GCD = 14 → 4/7
  120/90 → GCD = 30 → 4/3

Example 3: GCD of Three or More Numbers

Find the GCD of 60, 90, and 120:

Step 1: GCD(60, 90)
  90 = 1 × 60 + 30
  60 = 2 × 30 + 0
  GCD(60, 90) = 30

Step 2: GCD(30, 120)
  120 = 4 × 30 + 0
  GCD(30, 120) = 30

GCD(60, 90, 120) = 30

The GCD of multiple numbers is found by chaining pairwise GCD calculations.

Frequently Asked Questions

Simply enter your data, click the process button, and get instant results. All processing happens in your browser for maximum privacy and security.

Yes! GCD Calculator is completely free to use with no registration required. All processing is done client-side in your browser.

Absolutely! All processing happens locally in your browser. Your data never leaves your device, ensuring complete privacy and security.