Order & Ranking — IBPS PO Reasoning
Order & ranking questions ask where someone sits or stands in a line, or what the total count is given two-sided positions. They are almost pure formula — one relation between "from the left", "from the right" and the total — plus a clean line-diagram to avoid off-by-one slips. IBPS asks 2–3 (often as standalone questions or inside a puzzle), and they're 20-second marks once you stop confusing "positions" with "people between".
1. What IBPS actually asks
- Total count: "A is 7th from the left and 11th from the right — how many people are in the row?"
- Position shift: "B is 5th from the left; if 3 more join the left end, B's new position?"
- Rank conversion: rank from top ↔ rank from bottom given the total.
- Min/max people: "at least how many can be in the row?" when positions may overlap.
2. The one core formula
For a person counted from both ends of a row:
The −1 is because the person themselves is counted twice (once from each end). Miss it and you're always one too many.
- 7th from left + 11th from right ⇒ Total = 7 + 11 − 1 = 17.
Rearranged: position from right = Total − position from left + 1.
(again, subtract 1 because the endpoints aren't "between").
3. The overlap vs no-overlap trap (min/max)
When positions are given from the same or different reference points and might overlap, "how many at least" differs from "how many exactly":
- "Exactly" / both from opposite ends: use Total = L + R − 1.
- "At least how many" when two people's positions could coincide or overlap: add the positions (assume no overlap ⇒ maximum), and for minimum, assume maximum overlap. Read whether the question wants min or max.
Example: A is 10th from left, B is 15th from right, and they don't overlap ⇒ at least 10 + 15 = 25 people. If they might be the same person or overlap, the minimum is smaller.
4. Position shifts
When people join or leave, or the row is re-counted from the other end:
- Adding k people to the left pushes everyone's "from-left" position up by k; "from-right" is unchanged.
- Interchanging two people swaps their positions; recompute using the formula.
- Always redraw the line after a change rather than adjusting numbers in your head.
5. Ranking (top/bottom)
Same formula, different words: "rank 5th from the top in a class of 40" ⇒ rank from bottom = 40 − 5 + 1 = 36th. "Ranks above" and "ranks below" map to "from top" and "from bottom".
Solved examples
Q1 (total). In a row, P is 12th from the left and 18th from the right. Total persons?
Show explanation
Solution. 12 + 18 − 1 = 29.
Q2 (between). A is 6th from left, B is 10th from left. People between them?
Show explanation
Solution. |10 − 6| − 1 = 3.
Q3 (rank convert). A student ranks 8th from the top in a class of 45. Rank from the bottom?
Show explanation
Solution. 45 − 8 + 1 = 38th.
Q4 (shift). M is 9th from the left. If 4 more people join the left end, M's new position from left?
Show explanation
Solution. 9 + 4 = 13th from the left.
Q5 (at least). In a queue, X is 7th from the front and Y is 9th from the back; they are different people and don't overlap. Minimum people in the queue?
Show explanation
Solution. If no overlap, at least 7 + 9 = 16.
7. The protocol
- Draw the line with the two reference ends.
- Total from both ends: Total = left + right − 1 (subtract the double-counted person).
- People between: |difference of positions| − 1.
- Rank convert: from-bottom = Total − from-top + 1.
- For shifts, redraw after the change; for min/max, decide overlap (add for max/at-least, overlap for min).
