highest common factor of 150 and 400

asked by guest
on Apr 01, 2025 at 11:33 am



You asked:

Find the greatest common factor of the following numbers: 150,400150, 400.

MathBot Answer:

Method 1:

5050 is the greatest common divisor of 150150 and 400400.


The greatest common divisor of two integers is the largest positive integer that divides both integers.

The greatest common divisor of integers bb and aa is written as gcd(b,a)\operatorname{gcd}(b,a).


The greatest common divisor can be computed by Euclid's algorithm, which is based on repeated application of the following fact:gcd(b,a)=gcd(a,r)\operatorname{gcd}(b, a) = \operatorname{gcd}(a, r) where rr is the remainder of bb divided by aa, and 0<ab0 < a \le b.


Euclid's algorithm for computing the greatest common divisor of 150150 and 400400:

gcd(400,150)=gcd(150,100)\operatorname{gcd}(400, 150) = \operatorname{gcd}(150, 100), since 100100 is the remainder when 400400 is divided by 150150.

gcd(150,100)=gcd(100,50)\operatorname{gcd}(150, 100) = \operatorname{gcd}(100, 50), since 5050 is the remainder when 150150 is divided by 100100.

gcd(100,50)=50\operatorname{gcd}(100, 50) = 50, since 5050 divides 100100.


Method 2:

The greatest common divisor of two integers is the largest positive integer that divides both integers.

The prime factorization of 150150 is 2×3×522 \times 3 \times 5^{2}.

The prime factorization of 400400 is 24×522^{4} \times 5^{2}.

The GCD is the minimum of the prime powers of the two numbers. Find the greatest common divisor by multiplying the prime number powers together, including only the lowest prime number power of those prime factors which are common to both numbers.

gcd(150,400)=2×52=50.\text{gcd}(150, 400) = 2 \times 5^{2} = 50.