0
0

Simple Permutations (Order Matters)

Introduction

Simple permutations उन arrangements से deal करती हैं जहाँ order matters यानी क्रम महत्वपूर्ण होता है। कई real-world problems - जैसे लोगों को chairs में बैठाना, ranks assign करना, या shelf पर books arrange करना - सिर्फ selection नहीं बल्कि ordered arrangements गिनने की मांग करती हैं।

यह pattern इसलिए अहम है क्योंकि aptitude tests में order vs. selection को लेकर गलती आम है; permutations कब use करनी है यह जानना सही answer जल्दी देता है।

Pattern: Simple Permutations (Order Matters)

Pattern

मुख्य idea: जब n distinct items में से r items को arrange करना हो और order matter करता हो, तो nPr का उपयोग करें।

Formula:
nPr = n × (n - 1) × (n - 2) × … × (n - r + 1) = n! / (n - r)!

Step-by-Step Example

Question

चार दोस्त - A, B, C, D - को एक row में 2 distinct chairs पर बैठना है। कितने different ordered तरीकों से उन्हें बैठाया जा सकता है?

Solution

  1. Step 1: दिए गए values पहचानें।

    हमारे पास n = 4 distinct लोग हैं और हमें उनमें से r = 2 को order में arrange करना है।
  2. Step 2: सही formula चुनें।

    चूँकि order matter करता है, इसलिए permutations use करें: nPr = n! / (n - r)! .
  3. Step 3: Substitute करें और compute करें।

    4P2 = 4! / (4 - 2)! = 4! / 2! = (4 × 3 × 2 × 1) / (2 × 1) = 4 × 3 = 12
  4. Final Answer:

    कुल 12 ordered seating arrangements possible हैं।
  5. Quick Check:

    पहला chair → 4 choices; दूसरा chair → 3 remaining → 4 × 3 = 12 ✅

Quick Variations

1. r = n → सभी items arranged: nPn = n! (full permutations)।

2. r = 1 → nP1 = n (एक item चुनना, order trivial)।

3. इसका उपयोग distinct ranks (1st, 2nd, 3rd) assign करने या ordered codes बिना repetition बनाने में होता है।

Trick to Always Use

  • Step 1 → पूछें: "क्या order matter करता है?" अगर YES, तो nPr use करें। अगर NO, तो nCr
  • Step 2 → nPr को n × (n - 1) × ... r factors तक multiply करके जल्दी compute कर सकते हैं - छोटे r के लिए factorial से तेज़।

Summary

Summary

n में से r distinct items को ordered तरीके से arrange करने के लिए:

  • Use nPr = n! / (n - r)!.
  • Top r factors multiply करें: n × (n - 1) × …
  • हमेशा check करें कि order matter करता है या नहीं - यही permutation vs combination decide करता है।

Practice

(1/5)
1. In how many different ways can 3 students be arranged in a line from a group of 3 students A, B, and C?
easy
A. 3
B. 6
C. 9
D. 12

Solution

  1. Step 1: Identify what is given.

    Total students n = 3; all 3 are to be arranged, so r = 3.
  2. Step 2: Apply permutation formula.

    nPr = n! / (n - r)!.
  3. Step 3: Substitute and compute.

    3P3 = 3! / 0! = 3! = 6.
  4. Final Answer:

    There are 6 ways to arrange 3 students → Option B.
  5. Quick Check:

    List: ABC, ACB, BAC, BCA, CAB, CBA → 6 arrangements ✅
Hint: When all items are arranged, nPn = n!.
Common Mistakes: Using combination instead of permutation or forgetting that 0! = 1.
2. In how many ways can a president and a vice-president (order matters) be chosen from 4 people?
easy
A. 12
B. 8
C. 6
D. 24

Solution

  1. Step 1: Identify what is given.

    n = 4 people; r = 2 positions (president, vice-president) and order matters.
  2. Step 2: Apply permutation formula.

    nPr = n! / (n - r)! = 4! / 2!.
  3. Step 3: Substitute and compute.

    4! / 2! = (4 × 3 × 2 × 1) / (2 × 1) = 4 × 3 = 12.
  4. Final Answer:

    There are 12 ways → Option A.
  5. Quick Check:

    Choose president (4 ways) then vice-president (3 ways) → 4 × 3 = 12 ✅
Hint: For assigning distinct ordered positions, use nPr = n × (n - 1) × ... for r factors.
Common Mistakes: Using combination (nC2) which ignores order.
3. How many 3-digit numbers can be formed using digits 1, 2, 3, and 4 if repetition is not allowed?
easy
A. 12
B. 20
C. 24
D. 36

Solution

  1. Step 1: Identify what is given.

    Available digits n = 4; positions r = 3; repetition not allowed.
  2. Step 2: Apply permutation formula.

    nPr = n! / (n - r)! = 4! / 1!.
  3. Step 3: Substitute and compute.

    4! / 1! = 24 / 1 = 24 (or 4 × 3 × 2 = 24).
  4. Final Answer:

    There are 24 different 3-digit numbers → Option C.
  5. Quick Check:

    First digit 4 choices, second 3, third 2 → 4 × 3 × 2 = 24 ✅
Hint: When repetition is not allowed, multiply decreasing counts for each position.
Common Mistakes: Using n^r instead of nPr when repetition is not allowed.
4. In how many ways can 5 athletes finish first, second, and third in a race (no ties)?
medium
A. 60
B. 80
C. 100
D. 120

Solution

  1. Step 1: Identify what is given.

    Total athletes = 5; positions to fill r = 3; order matters.
  2. Step 2: Apply permutation formula.

    nPr = 5! / (5 - 3)! = 5! / 2!.
  3. Step 3: Substitute and compute.

    5! / 2! = (5 × 4 × 3 × 2 × 1) / (2 × 1) = 5 × 4 × 3 = 60.
  4. Final Answer:

    There are 60 possible finishing orders → Option A.
  5. Quick Check:

    First = 5 choices, second = 4, third = 3 → 5 × 4 × 3 = 60 ✅
Hint: For ranking problems, multiply choices for each position until ranks filled.
Common Mistakes: Using combinations which ignore order.
5. How many 4-letter arrangements can be made from the word ‘BRIGHT’?
medium
A. 120
B. 240
C. 720
D. 360

Solution

  1. Step 1: Identify what is given.

    The word 'BRIGHT' has n = 6 distinct letters; we need r = 4-letter ordered arrangements.
  2. Step 2: Apply permutation formula.

    nPr = n! / (n - r)! = 6! / 2!.
  3. Step 3: Substitute and compute.

    6! / 2! = (720) / 2 = 360 (equivalently 6 × 5 × 4 × 3 = 360).
  4. Final Answer:

    There are 360 possible arrangements → Option D.
  5. Quick Check:

    Multiply top 4 factors of 6!: 6 × 5 × 4 × 3 = 360 ✅
Hint: When n is large and r is smaller, multiply the top r factors (n × (n - 1) × ...).
Common Mistakes: Confusing with combinations or calculating full factorials unnecessarily.

Mock Test

Ready for a challenge?

Take a 10-minute AI-powered test with 10 questions (Easy-Medium-Hard mix) and get instant SWOT analysis of your performance!

10 Questions
5 Minutes