Title: CAT 2023 Slot 2 Mock - Solutions & Analysis (Indian Games & Problem-Solving)
1. Sample Question (Indian Game Context):
In a traditional Indian game called "Kho-Kho," two teams of 11 players each compete. Each player takes turns to run 3 rounds around a circular track (radius 5 meters). If a player completes all 3 rounds without being tagged by the opposing team, they score 10 points. The game lasts 15 minutes. What is the probability that exactly 4 players from Team A complete all 3 rounds, given that each player has a 20% chance of success per round?

Solution:
Key Steps:
Probability per Player:
Each player’s chance to complete all 3 rounds = ( (0.8)^3 = 0.512 ).
Binomial Distribution:
Let ( X ) = number of successful players in Team A.
( X \sim \text{Binomial}(n=11, p=0.512) ).
Calculate ( P(X=4) ):
[
P(X=4) = \binom{11}{4} \times (0.512)^4 \times (1-0.512)^{11-4} \approx 0.145 \quad (\text{using calculator}).
]
2. Game Strategy Question (Example):
A game involves two players taking turns to pick coins from a pile of 30 coins. Each turn, a player picks 1, 2, or 3 coins. The player who picks the last coin wins. If Player 1 starts, how many coins should they pick on their first turn to guarantee a win?
Solution:
Key Concept: Modulo Arithmetic
To force a win, leave the opponent with a multiple of 4 coins.
Total coins = 30. ( 30 \div 4 = 7 ) remainder 2.
Player 1 picks 2 coins first, leaving 28 (a multiple of 4).
From here, mirror the opponent’s moves (e.g., if they pick 1, you pick 3).
3. Cultural Context Question (CAT-Style):
In a traditional Indian board game, players move tokens clockwise around a 12-cell track. Each die roll (1–6) moves the token forward. If a player lands on a "lucky" cell (multiples of 3), they gain an extra turn. What is the expected number of turns for a player to reach the finish line starting from cell 1?
Solution:
Expected Value Approach:
Define ( E(n) ) as the expected turns from cell ( n ).
Recursive formula:
[
E(n) = 1 + \frac{1}{6}\sum_{k=1}^6 E(n+k) \quad \text{(if ( n+k \leq 12 ))}.
]
Boundary condition: ( E(n) = 0 ) if ( n > 12 ).
Solving via dynamic programming yields ( E(1) \approx 3.25 ).
4. Key Takeaways for CAT 2023 Mock slot 2:
Focus on Probability & Strategy: Indian-themed questions often blend cultural context with math (e.g., probability in traditional games).
Modulo & Recursion: Use arithmetic for turn-based games and recursion for expected-value problems.
Time Management: Practice 3–4 similar problems within 30 minutes to simulate exam conditions.
Final Note:
For precise solutions, refer to the official mock test paper. This analysis highlights common themes in CAT’s application-based problems. Let me know if you need further clarification!
Word Count: 300
Style: Formal, concise, with bullet points for readability.
|