मुफ्त GCD कैलकुलेटर
दो या अधिक संख्याओं का महत्तम समापवर्तक (GCD) निकालें। HCF तुरंत गणना करें।
Gcd Val
12
सूत्र
Greatest Common Divisor (GCD)
Definition
The GCD of two numbers is the largest positive integer that divides both numbers evenly.
Euclidean Algorithm
1. Divide the larger number by the smaller 2. Replace the larger number with the remainder 3. Repeat until the remainder is 0 4. The last nonzero remainder is the GCD
Relationship with LCM
LCM(a, b) = / GCD(a, b)a × b
हल किया गया उदाहरण
Find GCD(48, 36).
- 0148 = 1 × 36 + 12
- 0236 = 3 × 12 + 0
- 03GCD = 12
- 04LCM = (48 × 36) / 12 = 144
अक्सर पूछे जाने वाले प्रश्न
What is the GCD?
The greatest common divisor (also called highest common factor or HCF) is the largest number that divides two numbers without leaving a remainder.
How is GCD used?
GCD is used to simplify fractions (divide numerator and denominator by their GCD), solve Diophantine equations, and in cryptography (RSA algorithm).
What if one number is zero?
GCD(a, 0) = a for any positive integer a. The GCD of zero and any number is that number itself.
सीखें