g10 Presentation
g10 Presentation
2
PERMUTATION FORMULA
The number of permutations of n
objects taken r at a time is given
by:
P (n, r) = n! / (n-r)!
Where n! denotes the factorial of
n.
EXAMPLES OF PERMUTATIONS:
ARRANGING BOOKS
A bookshelf has 5 books. How many ways can they
be arranged?
SOLUTION: P(5,5) = 5!/ (5-5)!
=5!/0!
=5!
=(5)(4)(3)(2)(1)
=120
Answer: 120
4
EXAMPLES OF
PERMUTATION:
CHOOSING A TEAM
6
EXAMPLES OF PERMUTATION
SEATING ARRANGEMENT
A restaurant has 7 tables with 4 chairs each.
How many ways can 4 people be seated at one
table?
SOLUTION: P(4,4) =4! / (4,4)
=4!/0!
=4!
=(4)(3)(2)(1)
=24
Answer: 24
7
EXAMPLES OF PERMUTATION
MUSIC PLAYLIST
A music playlist has 10 songs. How many different
playlists can be created?
SOLUTION: P(10,10) = 10! / (10-10)!
=10!/0!
=10!
=(10)(9)(8)(7)(6)(5)(4)(3)(2)(1)
=3,628,800
Answer:3,628,800
8
SUMMARY
Permutations refer to the
arrangement of object in a
specific order.
9
REAL-WORLD APPLICATION
Permutations are used in various fields,
such as;
Computer Science (algorithm
design)
Statistics (Hypothesis testing)
Engineering (Circuit Design)
Music (Composition)
10
CONCLUSION
Permutation are an essential concept
in mathematics and computer science.
13