Middle Position (Overlapping)
Middle Position Overlapping problems occur when the ranks of two persons from opposite ends overlap (their positions cross). Given the total persons and the ranks, you can find how many persons are between them. These problems test your ability to handle overlapping positional relationships.
What You'll Learn
Introduction to Middle Position (Overlapping)
Middle Position Overlapping problems occur when the ranks of two persons from opposite ends overlap (their positions cross). Given the total persons and the ranks, you can find how many persons are between them. These problems test your ability to handle overlapping positional relationships.
Prerequisites
How to Solve Middle Position (Overlapping) Problems
Step 1: Identify the ranks: L1 = rank of first person from left, R2 = rank of second person from right
Step 2: Check if L1 + R2 > T + 1 (overlap condition)
Step 3: For overlapping case, persons between = L1 + R2 - T - 2
Step 4: For total given between, T = L1 + R2 - B - 2
Step 5: Ensure the result is non-negative
Step 6: Verify that the positions indeed overlap
Step 7: Present the answer
Example Problem
Example: In a row of 40 persons, A is 25th from left and B is 30th from right. How many persons are between A and B? Solution: Step 1: L1 = 25, R2 = 30, T = 40 Step 2: Check overlap: L1 + R2 = 55 > T + 1 = 41 → overlapping Step 3: Persons between = L1 + R2 - T - 2 = 25 + 30 - 40 - 2 = 13 Answer: 13 persons
Pro Tips & Tricks
- Overlap condition: L1 + R2 > T + 1
- Non-overlap condition: L1 + R2 ≤ T + 1
- Overlapping formula: B = L1 + R2 - T - 2
- Non-overlapping formula: B = T - L1 - R2
- When L1 + R2 = T + 1, the persons are adjacent (0 between)
Shortcut Methods to Solve Faster
Common Mistakes to Avoid
Practice Worksheets
Practice makes perfect! Work through these worksheets to master Middle Position (Overlapping). Each worksheet contains 20 questions with detailed explanations. Start from Worksheet 1 and progress through increasing difficulty levels.
Exam Importance
Middle Position (Overlapping) is an important topic for various competitive exams. Here's how frequently it appears:
Ready to Master Middle Position (Overlapping)?
Start with Worksheet 1 and work your way up to expert level! Each worksheet includes: