184k views
1 vote
suppose we want to choose 6 letters without replacement from 13 distinct letters. A) how many ways can this be done if order does not matter? B) how many ways can this be done if order of choices matters

1 Answer

0 votes

Answer: A) 1716 B) 1235520

Explanation:

  • If order doesn't matter , then we use combinations, where the number of combinations of selecting r things from n is given by :-


^nC_r=(n!)/(r!(n-r)!)

  • If order matters , then we use permutations, where the number of permutations of selecting r things from n is given by :-


^nP_r=(n!)/((n-r)!)

Given, Total distinct letters = 13

To choose = 6 letters

A) Number of ways to choose (if order does not matter)=
^(13)C_6


=(13!)/(6!7!)=(13*12*11*10*9*8*7!)/((720)* 7!)\\\\= $$1716

B) Number of ways to choose (if order matters)=
^(13)P_6


=(13!)/(7!)=\frac{13*12*11*10*9*8*7!} 7!}\\\\= $$1235520

Hence, A) 1716 B) 1235520

User Gopu
by
4.2k points