Question

Difficulty: MediumPrime Factorization, GCD, and LCM

Two positive integers xx and yy have a greatest common divisor (GCD) of 1212 and a least common multiple (LCM) of 360360. Which of the following could be the value of xx? Indicate all such values.

  1. 2424Answer
  2. B
    4848
  3. 6060Answer
  4. D
    9090
  5. 120120Answer

Answer

The possible values for xx are 2424, 6060, and 120120.
Any valid value of xx must be a multiple of gcd(x,y)=12\gcd(x, y) = 12 and a divisor of lcm(x,y)=360\text{lcm}(x, y) = 360. Expressing 1212 as 22312^2 \cdot 3^1 and 360360 as 2332512^3 \cdot 3^2 \cdot 5^1, xx must be of the form 2a3b5c2^a \cdot 3^b \cdot 5^c with 2a32 \leq a \leq 3, 1b21 \leq b \leq 2, and 0c10 \leq c \leq 1. The values 2424, 6060, and 120120 meet all exponent constraints.

Step-by-Step Solution

1
Find the prime factorizations of the given GCD and LCM.
gcd(x,y)=12=223150\gcd(x, y) = 12 = 2^2 \cdot 3^1 \cdot 5^0 and lcm(x,y)=360=233251\text{lcm}(x, y) = 360 = 2^3 \cdot 3^2 \cdot 5^1.
Prime factorization allows analysis of exponent constraints for each prime factor.
2
Determine the constraints on any valid integer xx.
Any valid value of xx must be a multiple of 1212 and a factor of 360360. Specifically, x=2a3b5cx = 2^a \cdot 3^b \cdot 5^c where 2a32 \leq a \leq 3, 1b21 \leq b \leq 2, and 0c10 \leq c \leq 1.
The GCD defines the minimum exponent for each prime factor, and the LCM defines the maximum exponent.
3
Test each provided option against the prime exponent bounds.
24=233124 = 2^3 \cdot 3^1 satisfies the bounds (a=3,b=1,c=0a=3, b=1, c=0). 48=243148 = 2^4 \cdot 3^1 violates a3a \leq 3. 60=22315160 = 2^2 \cdot 3^1 \cdot 5^1 satisfies the bounds (a=2,b=1,c=1a=2, b=1, c=1). 90=21325190 = 2^1 \cdot 3^2 \cdot 5^1 violates a2a \geq 2. 120=233151120 = 2^3 \cdot 3^1 \cdot 5^1 satisfies the bounds (a=3,b=1,c=1a=3, b=1, c=1).
Options satisfying all exponent inequalities are valid possible values of xx.

Key Concept

Prime exponent properties of GCD and LCM
Rate this question