Topic Details (Notes format)

How to Find the Greatest Common Divisor (GCD)

Subject: Mathematics

Book: Maths Mastery

Also known as the Greatest Common Factor (GCF), the GCD of two numbers is the largest positive integer that divides them both without leaving a remainder. The standard method is the Euclidean Algorithm: if you want the GCD of 48 and 18, for instance, repeatedly apply gcd(a, b) = gcd(b, a mod b). With 48 and 18, 48 mod 18 = 12, so gcd(48, 18) = gcd(18, 12). Next, gcd(18, 12) = gcd(12, 6), and finally gcd(12, 6) = 6. So the GCD is 6. GCD calculations apply to simplifying fractions, finding common denominators, cryptography, and more. Mastering the Euclidean Algorithm also fosters efficiency in many integer-based math problems.

Practice Questions

A rectangle has a length of 10 cm and a width of 5 cm. What is the diagonal of the rectangle?

View Question

If the angles of a triangle are in the ratio 2:3:4, what is the measure of the largest angle?

View Question

A cone has a base radius of 7 cm and height of 24 cm. What is its volume?

View Question

If 2x - 3 = 7, what is the value of x?

View Question

If the probability of an event is 1/4, what is the probability of its complement?

View Question

If the sum of the angles of a polygon is 1080°, how many sides does the polygon have?

View Question

If a:b = 7:9 and b:c = 5:6, what is a:c?

View Question

If x^2 - 6x + 9 = 0, what is the value of x?

View Question

If the ratio of two numbers is 3:5 and their HCF is 4, what are the numbers?

View Question

What is the sum of all even numbers between 1 and 100?

View Question