Thursday, December 12, 2024

Permutations and Combinations 1

Hello learners, 

We are back after 6 years! Advance New Year wishes to all! 

Let's start with some Quantitative Aptitude topics! Today, let's begin with Permutations and Combinations - Day 1. 

Let's begin with the formulae! 

1. Permutation (Arrangement):

nPr=n!(nr)!​

Where nn is the total number of items, rr is the number of items to arrange, and n!=n×(n1)××1n! = n \times (n-1) \times \dots \times 1.

2. Permutation (Arrangement):

nPr=n!(nr)!​

Where nn is the total number of items, rr is the number of items to arrange, and n!=n×(n1)××1n! = n \times (n-1) \times \dots \times 1.

3. Factorial:

  • 0!=10! = 1
  • n!=n×(n1)×(n2)××1n! = n \times (n-1) \times (n-2) \times \dots \times 1
4. Repetition Permutation (when some items are identical):
Total arrangements=n!p1!×p2!××pk!\text{Total arrangements} = \frac{n!}{p_1! \times p_2! \times \dots \times p_k!}

Where p1,p2,,pkp_1, p_2, \dots, p_k are the frequencies of identical items.

5. Circular Permutation:

  • For nn distinct items in a circle: (n1)!(n-1)!
  • If rotation is considered the same, divide further by nn.


Question 1: Permutations

How many different ways can 4 people sit in a row?

Hint : Use nPr for arrangements

This is an arrangement problem, so use nPr=n!(nr)!

Here, n=4n = 4 and r=4r = 4.

4P4=4!(44)!=4!0!​

Simplify the factorials.

4!=4×3×2×1=24,0!=14! = 4 \times 3 \times 2 \times 1 = 24,\quad 0! = 1
4P4=241=24

Answer: There are 24 ways.


Question 2: Combinations

In how many ways can 3 students be selected from a group of 5 students?

Hint : Use nCr for combinations

This is a selection problem, so use nCr=n!r!×(nr)!

Here, n=5n = 5and r=3r = 3.

5C3=5!3!×(53)!=5!3!×2!​

Simplify the factorials.

5!=5×4×3×2×1=120,3!=3×2×1=6,2!=2×1=25! = 5 \times 4 \times 3 \times 2 \times 1 = 120,\quad 3! = 3 \times 2 \times 1 = 6,\quad 2! = 2 \times 1 = 2
5C3=1206×2=12012=10

Answer: There are 10 ways.


Question 3: Permutations with Repetition

How many unique arrangements can be made with the letters of the word SUCCESS?

Hint : Apply the repetition formula

This is a permutation problem with repetition, so use:

Total arrangements=n!p1!×p2!××pk!​

Count the letters.

The word SUCCESS has 7 letters in total, with some letters repeating:

  • S occurs 3 times.
  • C occurs 2 times.
  • U occurs 1 time.
  • E occurs 1 time.

Total arrangements=7!3!×2!  ​× 1!  × 1! 

Simplify the factorials.

7!=7×6×5×4×3×2×1=5040    3!=3×2×1=6    2!=2×1=2    1!=1

Total arrangements=50406×2×1×1=504012=420

Answer: There are 420 unique arrangements of the letters in the word SUCCESS.


Question 4: Mixed (Selection + Arrangement)

A committee of 3 people is to be formed from a group of 6 people. In how many ways can the committee be formed if the positions are President, Secretary, and Treasurer?

Hint : Combine nCr for selection and r! for arrangement

This involves selecting and arranging, so use nPr=n!(nr)!

Here, n=6n = 6 and r=3r = 3.

6P3=6!(63)!=6!3!​

Simplify the factorials.

6!=6×5×4×3×2×1=720,3!=3×2×1=66! = 6 \times 5 \times 4 \times 3 \times 2 \times 1 = 720,\quad 3! = 3 \times 2 \times 1 = 6
6P3=7206=120

Answer: There are 120 ways.


Question 5: Circular Permutation

In how many ways can 7 friends sit around a circular table?

Hint : Apply the circular permutation formula

For circular arrangements of nn items, use:

(n1)!

Here, n=7:

(71)!=6!

Simplify the factorial.

6!=6×5×4×3×2×1=720

Answer: There are 720 ways.

Have fun with permutations and combinations—arranging and selecting in endless ways!