Ok, this is a homework question and I think I've resolved it but I want to bounce it off you guys.
I have a $6$ letter word with no repeated letters. I need to calculate how many $3$ letter words can be formed from this word and all must start with the letter $W$.
This is what I've got as the answer:
$$P((n-1),r) = P(6-1,3) = P(5,3) = \frac{5!}{(5-3)!} = \frac{5!}{2!} = 5·4·3 = 60$$
Am I in the ball park?