Question

Difficulty: MediumPrime Factorization, GCD, and LCM

A rectangular floor measuring 126 cm126\text{ cm} by 180 cm180\text{ cm} is to be completely covered with identical square tiles of the largest possible side length, without cutting any tiles or leaving gaps. What is the total number of square tiles required to cover the floor?

  1. A
    18
  2. B
    35
  3. 70Answer
  4. D
    140
  5. E
    306

Answer

The total number of square tiles required is 70.
To cover the rectangular floor with the largest possible identical square tiles, the side length of the square tile must be the greatest common divisor of 126126 and 180180. Factoring both numbers gives 126=2×32×7126 = 2 \times 3^2 \times 7 and 180=22×32×5180 = 2^2 \times 3^2 \times 5. The greatest common divisor is 2×32=18 cm2 \times 3^2 = 18\text{ cm}. Dividing the dimensions by 18 cm18\text{ cm} gives 77 tiles along the length and 1010 tiles along the width. Multiplying 7×107 \times 10 yields a total of 7070 tiles.

Step-by-Step Solution

1
Find the prime factorization of both dimensions of the floor.
126=21×32×71126 = 2^1 \times 3^2 \times 7^1 and 180=22×32×51180 = 2^2 \times 3^2 \times 5^1
Prime factorization allows systematic determination of the greatest common divisor.
2
Calculate the Greatest Common Divisor (GCD) of 126 and 180 to determine the largest possible square tile side length.
gcd(126,180)=21×32=18 cm\gcd(126, 180) = 2^1 \times 3^2 = 18\text{ cm}
The square tiles must fit evenly along both the length and width without cutting.
3
Determine the number of tiles along each dimension.
Along length: 126÷18=7126 \div 18 = 7; along width: 180÷18=10180 \div 18 = 10
Dividing each total length by the tile side length gives the tile count per side.
4
Calculate the total number of tiles required.
7×10=70 tiles7 \times 10 = 70\text{ tiles}
The floor forms a 7 by 10 grid of tiles.

Key Concept

Greatest Common Divisor (GCD) applications in geometric tiling
Rate this question