Past Year QuestionsIPMAT Indore2024LRDI

IPMAT Indore 2024LRDI

All 6 LRDI previous year questions (PYQs) from the IPMAT Indore 2024 past year paper, with answers and full solutions.

Free SolutionsNo Login6 Questions
Q1:ipmat indore 2024LRDITabular DataEasySA · TITA
The following table shows the number of employees and their median age in eight companies located in a district.
CompanyNumber of employeesMedian age
A3224
B2830
C4339
D3945
E3549
F2954
G2359
H1663
It is known that the age of all employees are integers. It is known that the age of every employee in A is strictly less than the age of every employee in B, the age of every employee in B is strictly less than the age of every employee in C, ..., the age of every employee in G is strictly less than the age of every employee in H. The highest possible age of an employee of company A is:
Enter your answer to attempt
The Setup: Think of these companies as sorted C++ arrays. We need to maximize the final element of array A without throwing a logic error when it's compared to the very first element of array B. It's a strict inequality check, so we need to min-max the data to push Company A's ceiling as high as possible. Step 1: Decode the median mechanics for Company B. Company B has 2828 employees (an even number). The median age (3030) is the average of the two middle elements. If we use standard 1-based math indexing, that's the 1414th and 1515th employees: b14+b152=30 \frac{b_{14} + b_{15}}{2} = 30 Step 2: Find the lowest possible starting age for Company B. To give array A the most room to scale up, we must push B's values as low as the rules allow. We can initialize the first 1515 elements in B to exactly 3030 without breaking the median requirement: b1=b2==b14=b15=30b_1 = b_2 = \dots = b_{14} = b_{15} = 30. Thus, the absolute minimum age for the youngest employee in B is 3030. Step 3: Lock in Company A's max age. The constraint dictates that *every* employee in A must be strictly younger than *every* employee in B. In code terms, a32<b1a_{32} < b_1. Since ages are strictly typed integers, if b1=30b_1 = 30, the absolute maximum allowed for a32a_{32} is 2929. Step 4: Verify this doesn't break Company A's own median constraint. Company A has 3232 employees with a median of 2424. This requires the average of a16a_{16} and a17a_{17} to be 2424. We can easily assign a16=24a_{16} = 24 and a17=24a_{17} = 24, which leaves plenty of capacity for elements a18a_{18} through a32a_{32} to cap out at 2929. The backend logic runs with zero lag, and the max age holds up perfectly. Final Answer: 29
Q2:ipmat indore 2024LRDIArrangementsHardMCQ · MCQ
In an election there were five constituencies S1, S2, S3, S4, and S5 with 20 voters each all of whom voted. Three parties A, B, and C contested the elections. The party that gets the maximum number of votes in a constituency wins that seat. In every constituen read passage
The constituency in which B got lower number of votes compared to A and C is
  • AS3
  • BS4
  • CS2
  • DS1
Pick an option to attempt
The Setup: This is a logical reasoning Data Interpretation problem based on an election matrix. We must deduce the exact vote distribution for parties A, B, and C across 5 constituencies using their total vote counts, win conditions, and numerical sequence constraints. Step 1: Analyze Party C's winning constraints. Every constituency has exactly 2020 voters and a clear winner (no ties for first place). To guarantee a win without tying, a party must secure a minimum of 88 votes (since the remaining 1212 could be split 666-6; a score of 77 allows a 7767-7-6 tie). Party C won *only* S2 and S3. Thus, c28c_2 \ge 8 and c38c_3 \ge 8. Party C's total votes across all constituencies is 1616. Therefore, C must have obtained exactly 88 votes in S2, 88 votes in S3, and 00 votes in S1, S4, and S5. Step 2: Analyze Party B's winning constraints. Party A won only S1, and C won only S2 and S3. By elimination, Party B must be the winner of S4 and S5. In S4 and S5, C has 00 votes, meaning A and B split the 2020 votes entirely. For B to win clearly, B must secure more than half the votes: b411b_4 \ge 11 and b511b_5 \ge 11. Step 3: Apply Party B's sequence constraints. B's votes across S1 to S5 are distinct natural numbers in increasing order: b1<b2<b3<b4<b5b_1 < b_2 < b_3 < b_4 < b_5. Since b411b_4 \ge 11, and b5b_5 must be strictly greater than b4b_4, b512b_5 \ge 12. B's total votes equal 3535. To leave enough votes for the first three constituencies, we must minimize b4b_4 and b5b_5. Let b4=11b_4 = 11 and b5=12b_5 = 12. The remaining votes for the first three constituencies are: b1+b2+b3=351112=12b_1 + b_2 + b_3 = 35 - 11 - 12 = 12. Step 4: Determine Party B's exact sequence. In S2 and S3, C wins with 88 votes. Therefore, A and B must each have fewer than 88 votes (b27,b37,a27,a37b_2 \le 7, b_3 \le 7, a_2 \le 7, a_3 \le 7). Since ai+bi=208=12a_i + b_i = 20 - 8 = 12 in these constituencies, the only valid integer pairs for (ai,bi)(a_i, b_i) bounded by 77 are (7,5),(6,6),(7,5), (6,6), and (5,7)(5,7). Thus, B's votes in S2 and S3 must be chosen from the set {5,6,7}\{5, 6, 7\}. Maintaining the strictly increasing sequence b2<b3b_2 < b_3, we test combinations to satisfy b1+b2+b3=12b_1 + b_2 + b_3 = 12: If (b2,b3)=(5,6)(b_2, b_3) = (5, 6), then b1=1211=1b_1 = 12 - 11 = 1. (Valid natural number) If (b2,b3)=(5,7)(b_2, b_3) = (5, 7), then b1=1212=0b_1 = 12 - 12 = 0. (Invalid, natural numbers begin at 11) Therefore, B's exact vote sequence across S1-S5 is 1,5,6,11,121, 5, 6, 11, 12. Step 5: Calculate Party A's vote distribution. Using the formula ai=20bicia_i = 20 - b_i - c_i: S1: a1=2010=19a_1 = 20 - 1 - 0 = 19 (A wins) S2: a2=2058=7a_2 = 20 - 5 - 8 = 7 (C wins) S3: a3=2068=6a_3 = 20 - 6 - 8 = 6 (C wins) S4: a4=20110=9a_4 = 20 - 11 - 0 = 9 (B wins) S5: a5=20120=8a_5 = 20 - 12 - 0 = 8 (B wins) Checking the total: 19+7+6+9+8=4919 + 7 + 6 + 9 + 8 = 49, which perfectly matches A's given total. Step 6: Answer the specific prompt. We must find the constituency where B got fewer votes than both A and C. In S2, B has 55 votes, A has 77 votes, and C has 88 votes. 5<75 < 7 and 5<85 < 8. Final Answer: S2
Q3:ipmat indore 2024LRDIArrangementsHardMCQ · MCQ
In an election there were five constituencies S1, S2, S3, S4, and S5 with 20 voters each all of whom voted. Three parties A, B, and C contested the elections. The party that gets the maximum number of votes in a constituency wins that seat. In every constituen read passage
The number of votes obtained by B in S2 is
  • A6
  • B7
  • C5
  • D4
Pick an option to attempt
The Setup: We must identify the specific number of votes obtained by Party B in constituency S2, using the comprehensive election matrix derived from the logical constraints. Step 1: Reference the derived election matrix. As established through the total vote counts and sequence constraints: Party C's votes across S1-S5: 0,8,8,0,00, 8, 8, 0, 0 Party B's votes across S1-S5: 1,5,6,11,121, 5, 6, 11, 12 Party A's votes across S1-S5: 19,7,6,9,819, 7, 6, 9, 8 Step 2: Isolate the requested data point. We look at Party B's vote sequence (b1,b2,b3,b4,b5b_1, b_2, b_3, b_4, b_5) and identify the value for S2 (b2b_2). b2=5b_2 = 5. Final Answer: 5
Q4:ipmat indore 2024LRDIArrangementsHardMCQ · MCQ
In an election there were five constituencies S1, S2, S3, S4, and S5 with 20 voters each all of whom voted. Three parties A, B, and C contested the elections. The party that gets the maximum number of votes in a constituency wins that seat. In every constituen read passage
The number of votes obtained by A in S5 is
  • A6
  • B9
  • C8
  • D7
Pick an option to attempt
The Setup: We must identify the specific number of votes obtained by Party A in constituency S5, utilizing the completed election matrix. Step 1: Reference the derived election matrix. The calculated vote distribution for Party A across the five constituencies (S1 through S5) is 19,7,6,9,19, 7, 6, 9, and 88. Step 2: Isolate the requested data point. We evaluate Party A's sequence (a1,a2,a3,a4,a5a_1, a_2, a_3, a_4, a_5) and extract the specific value corresponding to S5 (a5a_5). a5=8a_5 = 8. Final Answer: 8
Q5:ipmat indore 2024LRDIArrangementsHardMCQ · MCQ
In an election there were five constituencies S1, S2, S3, S4, and S5 with 20 voters each all of whom voted. Three parties A, B, and C contested the elections. The party that gets the maximum number of votes in a constituency wins that seat. In every constituen read passage
Comparing the number votes obtained by A across different constituencies, the lowest number of votes were in constituency
  • AS4
  • BS2
  • CS5
  • DS3
Pick an option to attempt
The Setup: We need to compare Party A's vote counts across all five constituencies to determine which constituency yielded their lowest performance. Step 1: Retrieve Party A's vote distribution. From our derived election matrix, the votes obtained by Party A in constituencies S1, S2, S3, S4, and S5 are respectively: 19,7,6,9,819, 7, 6, 9, 8 Step 2: Identify the minimum value. Comparing the integers in the set {19,7,6,9,8}\{19, 7, 6, 9, 8\}, the lowest number is 66. Step 3: Map the minimum value back to its constituency. The vote count of 66 corresponds to constituency S3. Final Answer: S3
Q6:ipmat indore 2024LRDIArrangementsHardMCQ · MCQ
In an election there were five constituencies S1, S2, S3, S4, and S5 with 20 voters each all of whom voted. Three parties A, B, and C contested the elections. The party that gets the maximum number of votes in a constituency wins that seat. In every constituen read passage
Assume that A and C had formed an alliance and any voter who voted for either A or C would have voted for this alliance. Then the number of seats this alliance would have won is
  • A4
  • B2
  • C3
  • D5
Pick an option to attempt
The Setup: We must model a hypothetical political alliance between Party A and Party C, combining their votes in each constituency to see how many total seats the new alliance would win against Party B. Step 1: Calculate the alliance's combined votes per constituency. We sum the individual votes of A and C for each constituency (ai+cia_i + c_i): S1: 19+0=1919 + 0 = 19 S2: 7+8=157 + 8 = 15 S3: 6+8=146 + 8 = 14 S4: 9+0=99 + 0 = 9 S5: 8+0=88 + 0 = 8 Step 2: Compare the alliance's votes against Party B's votes. To win a seat, the alliance's combined votes must exceed Party B's votes in that constituency. S1: Alliance (1919) vs Party B (11) \Rightarrow Alliance wins. S2: Alliance (1515) vs Party B (55) \Rightarrow Alliance wins. S3: Alliance (1414) vs Party B (66) \Rightarrow Alliance wins. S4: Alliance (99) vs Party B (1111) \Rightarrow Party B wins. S5: Alliance (88) vs Party B (1212) \Rightarrow Party B wins. Step 3: Total the seats won by the alliance. The alliance successfully wins constituencies S1, S2, and S3, totaling 33 seats. Final Answer: 3

Other IPMAT Indore papers & sections