Hi
Bunuel,
Great question. The way I'd suggest to solve this problem is to just Dive In.
We want to know the smallest x that will make 450x a CUBE of some number. Let's call that number y.
Let's first figure out what we're working with. The prime factorization of 450 can be visualized:
...........450
......../.......\
......45.......10
...../..\....../...\
...15...3...2.....5
.../..\
..5....3
So, we have 5 * 5 * 3 * 3 * 2 that can be multiplied together to get 450. Now we need to figure out what we need to make 450 * x into a cube of y (y^3=450*x).
We have two 5s, two 3s, and one 2. To arrange these numbers in identical triples (2,3,5), we need at least one more 5, one 3, and two 2's. Each of these triples will give us the value of y (2*3*5=30), which, multiplied by itself three times, gives us 450 * x.
Looking at the factors we need to complete the triples, we get 5 * 3 * 2 * 2 = 60. We know this is the smallest number possible because prime factors by definition cannot be broken down any further.
Therefore, we can go with answer choice D.
If time permits, we can do a sanity check. We calculated that y should be 2 * 3 * 5, or 30. 30 * 30 * 30 = 27000. Also, 450 * 60 = 27000.
Hope this helps!