Answer:
Given:
Number of objects: n = 18
Type A objects: 10
Type B objects: 5
Type C objects: 3
To find:
In how many ways can you Pick 5 of the 18 objects (order does not matter)
Step-by-step explanation:
When the order does not matter we use Combination.
Formula to calculate combination:
C(n,r) = n! / r! ( n - r )!
n = 18
r = 5
Putting the values:
C(n,r)
= C(18,5)
= 18! / 5! ( 18 - 5 )!
= 18! / 5! ( 13 )!
= ( 18 * 17 * 16 * 15 * 14 * 13 * 12 * 11 * 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1 ) / ( 5 * 4 * 3 * 2 * 1 ) * (13 * 12 * 11 * 10 *9* 8 * 7 *6 * 5 * 4 * 3 * 2 *1 )
Cancel 13!
= (18 * 17 * 16 * 15 * 14 ) / ( 5 * 4 * 3 * 2 * 1 )
= 1028160 / 120
= 8568
So you can pick 5 of the 18 objects in 8568 ways.