Order & Ranking — Study Notes
Overview
Order & Ranking is a staple Logical Reasoning topic in UPSSSC PET, appearing in 2–4 questions every year. The problems test your ability to sequence entities (people, objects, positions) based on given clues and compute ranks from the top, bottom, or both ends of a line or queue. Unlike complex seating arrangements, these problems are linear (straight line, single row, or vertical rank list) and require quick arithmetic combined with logical deduction.
Mastering this topic means understanding how to count positions from either end, handle overlapping information (e.g., "A is 5th from top, B is 3rd from A"), and avoid off-by-one errors. Most UPSSSC PET questions are direct—rank of one person given conditions, or total number in the row. Speed and accuracy in small calculations (addition, subtraction within 50) are critical. This topic overlaps slightly with seating arrangement but remains simpler and faster to solve.
Students must practice translating word problems into number-line diagrams, double-checking whether ranks are inclusive or exclusive of endpoints, and using the standard formulas to find total persons or unknown ranks.
Key Concepts
- **Linear Arrangement**: Entities arranged in a straight line—horizontal (left to right) or vertical (top to bottom). Each entity occupies exactly one position.
- **Rank from Top/Left**: Position counted starting from the first entity on the top or left end. The first person is rank 1, second is rank 2, etc.
- **Rank from Bottom/Right**: Position counted starting from the last entity. The last person is rank 1 from bottom, second-last is rank 2 from bottom, and so on.
- **Total Entities Formula**: If a person is r₁ from one end and r₂ from the other end, total entities = r₁ + r₂ − 1. This is the most-used formula in Order & Ranking.
- **Gap/Overlap Between Two**: If person A is at position p and person B is at position q (both from same end, p < q), the number of people between A and B is q − p − 1.
- **Common Trap**: Forgetting to subtract 1 in the total formula, or miscounting "between" (does it include the endpoints?).
Formulas / Key Facts
1. **Total = Rank from Top + Rank from Bottom − 1** Person X is 7th from top and 12th from bottom → Total people = 7 + 12 − 1 = 18.
2. **Rank from Bottom = Total − Rank from Top + 1** In a queue of 25, if someone is 8th from top, they are 25 − 8 + 1 = 18th from bottom.
3. **Rank from Top = Total − Rank from Bottom + 1** If someone is 5th from bottom in a row of 20, they are 20 − 5 + 1 = 16th from top.
4. **People Between A and B (same end)**: If A is pth and B is qth from the same end (p < q), people between them = q − p − 1. A is 3rd from top, B is 9th from top → Between them = 9 − 3 − 1 = 5 people.
5. **Swapping Positions**: If two people exchange positions and their ranks from one end change by ±k, they were k positions apart.