Logical Reasoning: Complete Study Material Dictionary Order

Dictionary Order

1: Foundation & Basic Concepts

1.1 What is Dictionary Order?

Dictionary order (also called alphabetical order) arranges words based on the sequence of letters in the alphabet: A, B, C, ..., Z. Words are compared letter by letter from left to right.

Comparison Logic
Example: Comparing "HOUSE" and "HORSE" reveals the first difference at the 3rd letter (U vs R).

Key Rules:

  • First Letter First: Compare the first letter of each word. The word with the earlier letter in the alphabet comes first.
  • Sequential Comparison: If the first letters are the same, compare the second letters, then the third, and so on.
  • The Prefix Rule: If one word reaches its end while the other continues, the shorter word comes first.

1.2 Alphabetical Sequence

The standard sequence used in all competitive exams:
A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z.

Note

[!NOTE]
Case sensitivity (Uppercase vs Lowercase) is usually ignored in dictionary order questions. "Apple" and "apple" are treated as the same position.

1.3 Comparing Words Letter by Letter

To determine the order of two words:

  1. Align them vertically starting from the left.
  2. Find the first position where the letters differ.
  3. The word with the "smaller" letter (closer to A) at that position wins.
  4. If no difference is found before a word ends, the shorter word comes first.

1.4 Handling Common Prefixes

When words share a common prefix (e.g., "act", "actor", "actual"), they are ordered by the next differing character.

Prefix Logic
Rule: A string $S_1$ always precedes a string $S_1 + S_2$.

1.5 Worked Examples – Foundation

Example 1 – Point of Difference

  • Q: Which comes first: "apple" or "apply"?
  • Step 1: $a = a, p = p, p = p, l = l$.
  • Step 2: Compare 5th letters: $e$ vs $y$.
  • Logic: Since $e < y$ in the alphabet, "apple" comes first.

Example 2 – Shorter vs Longer

  • Q: "cat" vs "catalog"
  • Logic: "cat" is a complete prefix of "catalog". The word "cat" ends at the 3rd letter, while "catalog" continues.
  • Answer: "cat" comes first.

1.6 Common Mistakes

MistakePrevention
Stopping EarlyAlways compare until a difference appears or a word ends.
Length BiasDon't assume longer words come later; check if the shorter one is a prefix.
Case ConfusionTreat A and a as equivalent (Rank 1).

1.7 Practice Set: Foundation

  1. Q: Which comes first: "house" or "horse"?
    Solution: horse (h-o-r vs h-o-u $\rightarrow$ r < u)
  2. Q: Which comes first: "mother" or "mountain"?
    Solution: mother (m-o-t vs m-o-u $\rightarrow$ t < u)
  3. Q: Which comes first: "arrow" or "arrowhead"?
    Solution: arrow (shorter prefix)

2: Arranging Words in Dictionary Order

2.1 Core Concepts

Arranging a list in dictionary order is a Lexicographic Sort. In exams, you are often asked to find the word that appears 3rd or 4th in the sequence.

2.2 Methodology for Sorting

Sorting Flow
Deduction Flow: Group by initial characters, then refine sort within those clusters.

  1. Group by Prefix: Segregate words starting with the same letters.
  2. Internal Sort: Within each group, compare the next set of different characters.
  3. Identify Extremes: Find the word with the earliest/latest alphabet matches to fix the first and last positions.

2.3 Worked Example: Multi-Word Sort

Problem: Arrange "apple", "apply", "apricot", "ape", "apron"

  1. Prefix Check: All start with "ap".
  2. 3rd Letter Comparison:
    • ape (e)
    • apple (p)
    • apply (p)
    • apricot (r)
    • apron (r)
  3. Sorting: $e < p < r$.
    • Rank 1: ape
    • Rank 2/3: Compare "apple" vs "apply" ($e$ vs $y$) $\rightarrow$ apple, apply.
    • Rank 4/5: Compare "apricot" vs "apron" ($i$ vs $o$) $\rightarrow$ apricot, apron.
  4. Final Order: ape, apple, apply, apricot, apron.

2.4 Practice Set: Arranging Words

  1. Q: Arrange: "car", "cat", "call", "camel", "camera"
    Solution: call, camel, camera, car, cat
  2. Q: Which word comes first? "mountain", "mount", "mouse", "mouth"
    Solution: mount (shorter prefix of mountain)
  3. Q: Which word comes last? "battle", "bat", "battery", "bath"
    Solution: battle (b-a-t-t-l vs b-a-t-t-e (battery))

Summary: Dictionary Mastery

  • Horizontal Alignment: Write words one above the other to spot differences.
  • Alphabet Ranking: Keep a mental (or written) A-Z check for close letters (like M/N or P/Q).
  • Terminal Check: A word ending is effectively a "null" character, which always ranks before A.

3: Position Based Questions

3.1 Core Concepts

Position-based questions shift the focus from "sorting all" to "targeting one." You are asked to identify the specific rank (position) of a word in a list or in a set of all possible permutations.

Key Position Types:

  • Absolute Rank: The position in a provided static list.
  • Permutation Rank: The position of a word among all words formed by its letters (Dictionary Rank).
  • N-th Word: Finding which specific word occupies the $x$ position.

3.2 Methodology: Finding Rank in a List

Rank Logic

  1. Count Smaller Words: Identify how many words in the given set come before the target word alphabetically.
  2. Apply Formula: Rank $= (\text{Number of Words before it}) + 1$.
  3. Boundary Check: If the word is first, rank is 1. If last, rank equals the total count.

Example: Rank of "MANGO" in {APPLE, GRAPE, MANGO, BANANA, ORANGE}

  • Sorted: APPLE (1), BANANA (2), GRAPE (3), MANGO (4), ORANGE (5).
  • Rank: 4.

3.3 Permutation Ranking (Factorial Method)

This is a common competitive exam topic. Given the letters of a word, if all possible rearrangements are listed alphabetically, what is the rank of the original word?

Permutation Calculation

The "MOTHER" Problem Strategy

Target: Rank of MOTHER.
Letters sorted: E, H, M, O, R, T (6 distinct letters).

  1. Starts with E: Fix E at 1st position. Remaining 5 letters can be arranged in $5! = 120$ ways.
  2. Starts with H: Fix H at 1st position. Remaining 5 letters can be arranged in $5! = 120$ ways.
  3. Starts with M: (This matches our word). Stop fixing total blocks. Move to the 2nd position.
  4. Fixed M, Second letter E: $4! = 24$ ways.
  5. Fixed M, Second letter H: $4! = 24$ ways.
  6. Fixed M, Second letter O: (This matches). Move to 3rd position.
  7. Fixed MO, Third letter E: $3! = 6$ ways.
  8. Fixed MO, Third letter H: $3! = 6$ ways.
  9. Fixed MO, Third letter R: $3! = 6$ ways.
  10. Fixed MO, Third letter T: (This matches). Move to 4th position.
  11. Fixed MOT, Fourth letter E: $2! = 2$ ways.
  12. Fixed MOT, Fourth letter H: (This matches). Move to 5th position.
  13. Fixed MOTH, Fifth letter E: (This matches). Move to 6th position.
  14. Fixed MOTHE, Sixth letter R: (This matches). Remaining: 1 (The word itself).

Total Rank Calculation:

  • $120 (E) + 120 (H) = 240$
  • $24 (ME) + 24 (MH) = 48$
  • $6 (MOE) + 6 (MOH) + 6 (MOR) = 18$
  • $2 (MOTE) = 2$
  • $+ 1 (\text{MOTHER})$
  • Total Rank $= 240 + 48 + 18 + 2 + 1 = \mathbf{309}$.

4: Multiple Words & Sorting

4.1 Comparative Sorting Logic

When sorting a paragraph or a long list, you use Displacement Logic to identify which word needs to move.

Displacement Logic

The "Out of Order" Test:
Compare each adjacent pair $(W_i, W_{i+1})$. If $W_{i+1}$ should come before $W_i$, the list is unsorted.

4.2 Handling Repetitions & Prefixes

In modern exams, you often get words that are very similar (e.g., COUNCIL, COUNSEL, COUNCILLOR).

WordComparison StepResult
COUNCILc-o-u-n-c-i-lPrefix of Councillor
COUNCILLORc-o-u-n-c-i-l + l-o-rLonger word (2nd)
COUNSELc-o-u-n-s ($s$ vs $c$)$c < s$, so Counsel is 3rd

Sorted Sequence:

  1. COUNCIL
  2. COUNCILLOR
  3. COUNSEL

Practice Exercises: Dictionary Mastery

  1. Rank in List: If the words {Science, Social, Sanskrit, Spanish, Slovak} are arranged in dictionary order, which word is in the middle?
    • Hint: Sort first: Sanskrit, Science, Slovak, Social, Spanish.
  2. Permutation: What is the rank of the word PEACE if all permutations are listed alphabetically?
    • Caution: "E" is repeated twice. Use $n! / p!$ for repetition divisions.
  3. Out of Order: In the list {Apple, Apply, Application, Applied}, which word is placed incorrectly if the list is ascending?

Summary: Dictionary Mastery

  • Rank Formula: Rank is always one greater than the count of words that alphabetically precede the target.
  • Factorial Logic: For permutations, calculate total words starting with "earlier" characters using factorials $(n-1)!$.
  • Tie-Breakers: Longer words with the same prefix always come after the shorter prefix word.
  • Check Twice: In permutation ranking, ensure you don't skip the "+1" for the word itself!
Hi! Need help with studies? 👋
AI