1.4 Letter Shifting
4 views
Chapter 01: Alphabet & Number Test
Letter Shifting Tutorial ➡️⬅️✅
Master right (forward) and left (backward) shifts, position-based movements, multi-step shifts & wrap-around logic. Perfect for competitive exams! 🚀
What You'll Learn 🎯
- Perform right (after) and left (before) shifts by any k steps ➡️⬅️
- Translate letters ↔ positions to compute shifts correctly 🔄
- Solve multi-step mixed shifts and compound operations 🔗
- Handle edge cases near A and Z with wrap-around logic 🔄
- Master nested and complex shifting patterns 🧩
Core Rules 📌
- Step 1: Convert letter to position: A=1, B=2, …, Z=26
- Step 2: Apply shift: Right shift = +k, Left shift = −k
- Step 3: Convert result back to a letter
- Direction: Right = forward/after, Left = backward/before
- Wrap-around: If result 26 or 1, use circular logic
Examples with Step-by-Step Solutions 🧪
Right Shifts ➡️
Example 1: 3 right of K
- K = 11
- 11 + 3 = 14
- 14 = N
- Answer: N
Example 2: 5 right of J
- J = 10
- 10 + 5 = 15
- 15 = O
- Answer: O
Left Shifts ⬅️
Example 1: 2 left of M
- M = 13
- 13 − 2 = 11
- 11 = K
- Answer: K
Example 2: 4 left of P
- P = 16
- 16 − 4 = 12
- 12 = L
- Answer: L
Compound Shifts 🔗
Example: 4 right then 2 left from G
- G = 7
- First: 7 + 4 = 11 (K)
- Then: 11 − 2 = 9 (I)
- Answer: I
Nested Shifts 🧩
Example: 3 right of (2 right of E)
- E = 5
- Inner: 5 + 2 = 7 (G)
- Outer: 7 + 3 = 10 (J)
- Answer: J
Edge Cases & Wrap-Around Logic 🔄
Near Z (End of Alphabet)
Example: 3 right of Y
- Y = 25
- 25 + 3 = 28
- 28 26, so wrap: 28 − 26 = 2
- 2 = B
- Answer: B (wraps around)
Near A (Start of Alphabet)
Example: 3 left of C
- C = 3
- 3 − 3 = 0
- 0 1, so wrap: 26 + 0 = 26
- 26 = Z
- Answer: Z (wraps around)
Large Right Shift
Example: 15 right of A
- A = 1
- 1 + 15 = 16
- 16 = P
- Answer: P
Large Left Shift
Example: 12 left of Z
- Z = 26
- 26 − 12 = 14
- 14 = N
- Answer: N
Advanced Techniques 🚀
Self-Reference Shift
Example: Shift F right by its own position
- F = 6
- Shift by 6: 6 + 6 = 12
- 12 = L
- Answer: L
Multiple Operations
Example: Sum of (2 right of B) + (3 right of C)
- B + 2 = 4 (D)
- C + 3 = 6 (F)
- Sum: 4 + 6 = 10
- Answer: 10
Difference Calculation
Example: (5 right of A) − (2 right of A)
- A + 5 = 6 (F)
- A + 2 = 3 (C)
- Difference: 6 − 3 = 3
- Answer: 3
Middle Letter Finding
Example: Middle between (3 right of A) and (3 right of G)
- A + 3 = 4 (D)
- G + 3 = 10 (J)
- Middle: (4+10)÷2 = 7 (G)
- Answer: G
Real Exam Questions 📝
Question 1
Q: Which letter is 7 positions to the right of the letter that is 3 positions to the left of Q?
Solution:
- Q = 17
- 3 left: 17 − 3 = 14 (N)
- 7 right: 14 + 7 = 21 (U)
- Answer: U
Question 2
Q: If you shift M right by 5, then left by 3, where do you end?
Solution:
- M = 13
- Right 5: 13 + 5 = 18 (R)
- Left 3: 18 − 3 = 15 (O)
- Answer: O
Question 3
Q: What is 2 positions right of Z (with wrap-around)?
Solution:
- Z = 26
- 26 + 2 = 28
- Wrap: 28 − 26 = 2 (B)
- Answer: B
Question 4
Q: In the sequence B, E, H, K, N, what comes next? (pattern: +3)
Solution:
- Pattern: +3 each time
- N = 14
- 14 + 3 = 17 (Q)
- Answer: Q
Speed Techniques ⚡
- Memorize positions: Know A=1, E=5, J=10, O=15, T=20, Z=26
- Mental arithmetic: Practice adding/subtracting quickly
- Use anchors: Find nearest known position, then shift
- Visualize alphabet: See the alphabet line in your mind
- Check boundaries: Always verify if result is between 1-26
- Simplify compound shifts: Combine operations (e.g., +4−2 = +2)
Practice Challenge 🎮
Try these progressively harder problems:
- Level 1: What is 2 right of H?
- Level 2: What is 4 left of P?
- Level 3: What is 3 right then 2 left from G?
- Level 4: What is 3 right of (2 right of E)?
- Level 5: What is 2 right of Z (with wrap)?
Answers: 1) J 2) L 3) H 4) J 5) B
Common Mistakes to Avoid ⚠️
- Direction confusion: Right = add (+), Left = subtract (−)
- Off-by-one errors: Make sure to count the shift correctly
- Forgetting wrap-around: Check if result 26 or 1
- Compound shift errors: Do operations in correct order
- Position conversion: Always convert letter to position first
- Verification: Always check your answer by counting
Solving Strategy 🔍
- Identify the starting letter and convert to position
- Determine the direction: Right (+) or Left (−)
- Apply the shift: Add or subtract the number of steps
- Check boundaries: Is result between 1 and 26?
- Handle wrap-around: If needed, apply circular logic
- Convert back: Turn position into letter
- Verify: Count on alphabet to confirm
Practice Problems by Difficulty 📝
Easy 🟢
- 2 right of D?
- 3 left of M?
- 1 right of Y?
- 1 left of B?
- 5 right of K?
Medium 🟡
- 8 left of W?
- 6 right of C?
- 4 right then 2 left from G?
- 3 left then 5 right from N?
- 10 right of D?
Hard 🔴
- 15 right of A?
- 12 left of Z?
- 3 right of (2 right of E)?
- 4 left of (3 left of Q)?
- 2 right of Z (wrap)?
Ready to Practice? 🎯
Take My Test