Say like....at your work place. There are currently 10 people there. You want to find out how many ways can you have president, vice president, and a secretary. Order would matter in this case. You would do this problem with permutation: P(10,3).
Say you want to get a group of 3 people in this project you are working on. It doesn't matter who gets pick first or last. So order does not matter. You would do this problem with combination: C(10,3)
Ultimately, you will have more Permutation than Combination. Since a Combination of [x,y,z] you will have Permutations of x-y-z, x-z-y. z-x-y, z-y-x, y-z-x, y-x-z
Locker Combination should be named locker permutation instead. Since 7-13-4 does not equal 4-13-7. Order matters
hope this helps