As a question design note, I'm not sure it makes sense to pose a question this way - what makes one rectangle different from another? If I draw one 14,400 by 1 rectangle in the coordinate plane, say, with its bottom-left vertex at (0,0), isn't that a different rectangle from one with the same dimensions with its bottom-left vertex at (100000, 1000000)?
But if we take the question to mean: how many distinct integer dimensions L by W of a rectangle are possible, if the rectangle's area is 14,400, and L
> W (length must be greater than or equal to width)? then we can prime factorize 14,400:
14,400 = 144 * 100 = 12^2 * 10^2 = (2^2 * 3)^2 * (2*5)^2 = 2^6 * 3^2 * 5^2
Now adding one to each exponent and multiplying, we find the total number of divisors of 14,400; 14,400 has (7)(3)(3) = 63 divisors. If we were to list all of these divisors, they would all be in pairs that produce 14,400 as a product:
14,400 times 1
7200 times 2
etc
with one exception: because 14,400 is a perfect square, 120^2, we have one unpaired divisor. So we have 62 divisors in pairs, and since we presumably don't want to consider a 14,400 by 1 rectangle to be different from a 1 by 14,400 rectangle, we'll get 31 distinct rectangles from those divisors, and then we lastly have the 120 by 120 square (which is also a rectangle, since a rectangle is simply a quadrilateral with four right angles). So we have 32 distinct rectangles in total with integer dimensions, as I've interpreted the question.