Answer is (D): 2500! / (2^1250 * 1250!)
This is a Number Properties question testing factorial manipulation. Took me a few tries to nail this type consistently.
The product of all positive odd integers less than 2500 is: 1 * 3 * 5 * 7 * ... * 2499.
Here's the trick. Notice that 2500! = (1 * 2 * 3 * 4 * ... * 2499 * 2500), which includes BOTH odd and even integers.
1. Split 2500! into its odd and even parts:
2500! = (1 * 3 * 5 * ... * 2499) * (2 * 4 * 6 * ... * 2500)
2. Factor out 2 from each even term:
(2 * 4 * 6 * ... * 2500) = 2^1250 * (1 * 2 * 3 * ... * 1250) = 2^1250 * 1250!
(There are 1250 even numbers from 2 to 2500, so we pull out 1250 factors of 2.)
3. So: 2500! = (product of odd integers 1 to 2499) * 2^1250 * 1250!
4. Solving for the product of odd integers:
Product = 2500! / (2^1250 * 1250!)
That's answer choice (D).
The trap is (A): 2500! / (1250!)^2 -- that's actually the binomial coefficient C(2500, 1250), which is a completely different thing. A lot of people see the 1250 denominator and jump to it.
Also watch (C): 2499! / 2^1250. This misses the 1250! factor entirely.
Key takeaway: when you need just the odd part of n!, factor the evens out explicitly and use the pattern above.