Calculate the number of ways to arrange r objects from n total objects where order matters. Use the formula P(n,r) = n!/(n-r)!
A permutation is an arrangement of objects where the order matters. P(n,r) represents the number of ways to arrange r objects from n total objects.
P(n,r) = n! / (n-r)!
Where: n ≥ r ≥ 0
P(5,3): Ways to arrange 3 people from 5 total
P(5,3) = 5!/(5-3)! = 120/2 = 60
P(4,4): Ways to arrange 4 people from 4 total
P(4,4) = 4!/0! = 24/1 = 24