10
We can solve this using the number of combinations of n things taken r at a time.
When solving these types of problems, you need to determine whether you are looking for combinations or permutations.
A permutation is concerned with the elements in a set as well as the order in which they appear.
Example:
The number of permutations of ABC taken 3 at a time is 6.
These would be:
ABC
ACB
BAC
BCA
CAB
CBA
Notice that all contain the same elements, but they are arranged in a different order.
For the number of combinations of ABC taken 3 at a time, there is only 1. This is:
ABC
This is because combinations are only concerned with the elements themselves not in the order they are arranged
For our problem we need combinations, because we are not interested in the order the question are in, only that they are different questions.
Combinations are represented by
nCr
Where n is the number of elements and r is how many at a time they are taken:
nCr=n!r!(n−r)!
n! means n(n−1)(n−2)....(n−n+2)(n−n+1)
To make this clearer.
4!=4×3×2×1
We have 5 things, so n=5 and we are choosing 3 at a time, so r=3
Putting these in:
n!r!(n−r)!
5!3!(5−3)!=5×4×3×2×13×2×1×2×1
=5×4×3×2×13×2×1×2×1=5×41×2=202=10