Question:
Given the letters $a, b, c.$ How many ways to arrange these letters?
Assuming 3 letters.
Logical Question:
How do you know if you need to use permutations or combinations for this question ?
$P(3,3)$ or $C(3,3)$ ?
Given the letters $a, b, c.$ How many ways to arrange these letters?
Assuming 3 letters.
How do you know if you need to use permutations or combinations for this question ?
$P(3,3)$ or $C(3,3)$ ?
You need to use permutations, so the answer is $3!=6$. Using combination does not make much sense since it would be equivalent to count the number of ways you can take $3$ letters out of a set of $3$ letters, which is only $1$. Indeed $C(3,3)=\frac{3!}{1!\cdot 3!}=1$.
The order of the letters is important here. Hence you need to use permutations.