Explanation : Since the order in which the stocks are sold matters, use the permutation
formula: Number of ways = n! / ( n - r )! = 12! / (12 - 3)! = 1320.
You may also use the nPr function on the calculator. Note that r is the
number of stocks to be selected and n is the total number of stocks.
Explanation : Use the combination formula since the order of selection does not
matter.
Number of ways = n! / [ r! (n - r)! ] = 10! / [3! (10 - 3)! ] = 120.
You may also use the nCr function on the calculator. Note that r is the
number of stocks to be selected and n is the total number of stocks.