Answer:
6 ;
3
Explanation:
Letters = (a, b, c)
Number of letters to be chosen = 2
If the order is relevant, then we use permutation :
nPr = n! ÷ (n-r)!
3P2 = 3! ÷ (3-2)!
3P2 = (3 * 2 * 1) ÷ 1
3P2 = 6
If the order is not relevant ; We use combination :
nCr = n! ÷ (n-r)!r!
3C2 = 3! ÷ (3-2)!2!
3C2 = 3! ÷ 1!2!
3C2 = (3 * 2!) ÷ 2! * 1
3C2 = 3