Bunuel
The total number of ways to choose 3 integers from 10, allowing repetition, is 10 * 10 * 10 = 10^3 (as you've written, 10C1 * 10C1 * 10C1).
The number of ways to choose 3 different integers from 10, when order matters, is 10P3 = 720 (or 10C3 * 3!).
Thus, the probability of selecting 3 different integers is 720 / 1000 = 18 / 25.
Answer: A
Sorry, this is my exact doubt.
How come you consider order matters here?
I get the feeling that numbers are picked in a bunch when I read the question.
So 2,6,7 would be same as 2,7,6
You can think about it this way: The denominator, 10^3, consists of all possible three-digit sequences, meaning it represents
triplets. To maintain consistency, the numerator must also account for groups of three where order matters.
The key is to ensure consistency between the numerator and the denominator. If one considers ordered groups, the other must as well, and if one uses unordered groups, the other should too.