Difference between revisions of "2021 AIME II Problems/Problem 11"

(Solution 2 (Illustrations): Solution done.)
(Solution 2 (Illustrations): White background looks nicer.)
Line 45: Line 45:
 
fill((42,3)--(42,2)--(41,2)--cycle,green);
 
fill((42,3)--(42,2)--(41,2)--cycle,green);
 
fill((42,2)--(42,1)--(41,1)--cycle,green);
 
fill((42,2)--(42,1)--(41,1)--cycle,green);
fill((9,3)--(0,3)--(0,2)--(9,2)--cycle,black);
 
fill((42,1)--(15,1)--(15,0)--(42,0)--cycle,black);
 
  
 
label("10",(9.5,2.5)); label("11",(10.5,2.5)); label("12",(11.5,2.5));
 
label("10",(9.5,2.5)); label("11",(10.5,2.5)); label("12",(11.5,2.5));
Line 80: Line 78:
  
 
add(grid(42,3));
 
add(grid(42,3));
 +
fill((9,3)--(0,3)--(0,2)--(9,2)--cycle,white);
 +
fill((42,1)--(15,1)--(15,0)--(42,0)--cycle,white);
 +
draw((0,2)--(0,3)--(9,3),white+linewidth(2));
 +
draw((15,0)--(42,0)--(42,1),white+linewidth(2));
 +
draw((0,0)--(0,2)--(9,2)--(9,3)--(42,3)--(42,1)--(15,1)--(15,0)--cycle,black);
 
</asy>
 
</asy>
  

Revision as of 07:56, 6 April 2021

Problem

A teacher was leading a class of four perfectly logical students. The teacher chose a set $S$ of four integers and gave a different number in $S$ to each student. Then the teacher announced to the class that the numbers in $S$ were four consecutive two-digit positive integers, that some number in $S$ was divisible by $6$, and a different number in $S$ was divisible by $7$. The teacher then asked if any of the students could deduce what $S$ is, but in unison, all of the students replied no.

However, upon hearing that all four students replied no, each student was able to determine the elements of $S$. Find the sum of all possible values of the greatest element of $S$.

Solution 1 (Text)

Let's start by listing the multiples of 6 and 7: 6, 12, 18, 24, 30, 36, 42, 48, 54, 60, 66, 72, 78, 84, 90, 96; 7, 14, 21, 28, 35, 42, 49, 56, 63, 70, 77, 84, 91, and 98. First of all, the multiples of 6 and 7 wouldn't work, so we can cross out 42 and 84. Since the students said they didn't know the answer, it must be that the set has no distinct integers from the sets. Let's list out the possible sets. Since they are in lists of 4, we need multiples of 6 or 7. Let's list them out. 11, 12, 13, 14 12, 13, 14, 15 But if a student has 11 or 15, they would know. So that wouldn't work. The second set would be this: $\{34,35,36,37\}$ $\{47,48,49,50\}$ $\{76,77,78,79\}$ $\{89,90,91,92\}$ They couldn't know since the multiples of 7 is 35, and if you list it out, they wouldn't know about it since there are other sets such as 35, 36, 37, 38, and 33, 34, 35, 36. The people with these sets would say no, so the second set would WORK. The other sets are only 2 numbers, and since 2 numbers are sufficiently smaller than our 2nd set, we have concluded the answer is 37+50+79+92 = $\boxed{258}$. ~Arcticturn

Solution 2 (Illustrations)

Note that $\text{lcm}(6,7)=42.$ It is clear that $42\not\in S$ and $84\not\in S,$ otherwise the three other elements in $S$ are divisible by neither $6$ nor $7.$

In the table below, the multiples of $6$ are colored in yellow, and the multiples of $7$ are colored in green. By the least common multiple, we obtain cycles: If $n$ is a possible maximum value of $S,$ then $n+42$ must be another possible maximum value of $S,$ and vice versa. By observations, we write all possible maximum values of $S$ in red.

[asy] /* Made by MRENTHUSIASM */ size(20cm);  for (real i=0.5; i<=2.5; ++i) { for (real j=5.5; j<41.5; j+=6)  { 	fill((j+0.5,i+0.5)--(j-0.5,i+0.5)--(j-0.5,i-0.5)--(j+0.5,i-0.5)--cycle,yellow); } }  for (real i=0.5; i<=2.5; ++i) { for (real j=6.5; j<41.5; j+=7)  { 	fill((j+0.5,i+0.5)--(j-0.5,i+0.5)--(j-0.5,i-0.5)--(j+0.5,i-0.5)--cycle,green); } }  fill((42,3)--(41,3)--(41,2)--cycle,yellow); fill((42,2)--(41,2)--(41,1)--cycle,yellow); fill((42,3)--(42,2)--(41,2)--cycle,green); fill((42,2)--(42,1)--(41,1)--cycle,green);  label("10",(9.5,2.5)); label("11",(10.5,2.5)); label("12",(11.5,2.5)); label("13",(12.5,2.5)); label("14",(13.5,2.5),red); label("15",(14.5,2.5),red); label("16",(15.5,2.5)); label("17",(16.5,2.5)); label("18",(17.5,2.5)); label("19",(18.5,2.5)); label("20",(19.5,2.5)); label("21",(20.5,2.5),red); label("22",(21.5,2.5)); label("23",(22.5,2.5)); label("24",(23.5,2.5),red); label("25",(24.5,2.5)); label("26",(25.5,2.5)); label("27",(26.5,2.5)); label("28",(27.5,2.5)); label("29",(28.5,2.5)); label("30",(29.5,2.5),red); label("31",(30.5,2.5),red); label("32",(31.5,2.5)); label("33",(32.5,2.5)); label("34",(33.5,2.5)); label("35",(34.5,2.5)); label("36",(35.5,2.5),red); label("37",(36.5,2.5),red); label("38",(37.5,2.5),red); label("39",(38.5,2.5)); label("40",(39.5,2.5)); label("41",(40.5,2.5)); label("42",(41.5,2.5)); label("43",(0.5,1.5)); label("44",(1.5,1.5)); label("45",(2.5,1.5)); label("46",(3.5,1.5)); label("47",(4.5,1.5)); label("48",(5.5,1.5)); label("49",(6.5,1.5),red); label("50",(7.5,1.5),red); label("51",(8.5,1.5),red); label("52",(9.5,1.5)); label("53",(10.5,1.5)); label("54",(11.5,1.5)); label("55",(12.5,1.5)); label("56",(13.5,1.5),red); label("57",(14.5,1.5),red); label("58",(15.5,1.5)); label("59",(16.5,1.5)); label("60",(17.5,1.5)); label("61",(18.5,1.5)); label("62",(19.5,1.5)); label("63",(20.5,1.5),red); label("64",(21.5,1.5)); label("65",(22.5,1.5)); label("66",(23.5,1.5),red); label("67",(24.5,1.5)); label("68",(25.5,1.5)); label("69",(26.5,1.5)); label("70",(27.5,1.5)); label("71",(28.5,1.5)); label("72",(29.5,1.5),red); label("73",(30.5,1.5),red); label("74",(31.5,1.5)); label("75",(32.5,1.5)); label("76",(33.5,1.5)); label("77",(34.5,1.5)); label("78",(35.5,1.5),red); label("79",(36.5,1.5),red); label("80",(37.5,1.5),red); label("81",(38.5,1.5)); label("82",(39.5,1.5)); label("83",(40.5,1.5)); label("84",(41.5,1.5)); label("85",(0.5,0.5)); label("86",(1.5,0.5)); label("87",(2.5,0.5)); label("88",(3.5,0.5)); label("89",(4.5,0.5)); label("90",(5.5,0.5)); label("91",(6.5,0.5),red); label("92",(7.5,0.5),red); label("93",(8.5,0.5),red); label("94",(9.5,0.5)); label("95",(10.5,0.5)); label("96",(11.5,0.5)); label("97",(12.5,0.5)); label("98",(13.5,0.5),red); label("99",(14.5,0.5),red);  add(grid(42,3)); fill((9,3)--(0,3)--(0,2)--(9,2)--cycle,white); fill((42,1)--(15,1)--(15,0)--(42,0)--cycle,white); draw((0,2)--(0,3)--(9,3),white+linewidth(2)); draw((15,0)--(42,0)--(42,1),white+linewidth(2)); draw((0,0)--(0,2)--(9,2)--(9,3)--(42,3)--(42,1)--(15,1)--(15,0)--cycle,black); [/asy]

From the second row of the table above, we perform casework on the maximum value of $S:$

\[\begin{array}{c||c|c|l} & & & \\ [-2.5ex] \textbf{Max Value} & \boldsymbol{S} & \textbf{Valid?} & \hspace{16.25mm}\textbf{Reasoning/Conclusion} \\ [0.5ex] \hline & & & \\ [-2ex] 49 & \{46,47,48,49\} & & \text{The student who gets } 46 \text{ will reply yes.} \\ 50 & \{47,48,49,50\} & \checkmark & \text{Another possibility is } S=\{89,90,91,92\}. \\ 51 & \{48,49,50,51\} & & \text{The student who gets } 51 \text{ will reply yes.} \\ 56 & \{53,54,55,56\} & & \text{The student who gets } 53 \text{ will reply yes.} \\ 57 & \{54,55,56,57\} & & \text{The student who gets } 57 \text{ will reply yes.} \\ 63 & \{60,61,62,63\} & & \text{The students who get } 60,61,62 \text{ will reply yes.} \\ 66 & \{63,64,65,66\} & & \text{The students who get } 64,65,66 \text{ will reply yes.} \\ 72 & \{69,70,71,72\} & & \text{The student who gets } 69 \text{ will reply yes.} \\ 73 & \{70,71,72,73\} & & \text{The student who gets } 73 \text{ will reply yes.} \\ 78 & \{75,76,77,78\} & & \text{The student who gets } 75 \text{ will reply yes.} \\ 79 & \{76,77,78,79\} & \checkmark & \text{Another possibility is } S=\{34,35,36,37\}. \\ 80 & \{77,78,79,80\} & & \text{The student who gets } 80 \text{ will reply yes.} \end{array}\]

Finally, all possibilities for $S$ are $\{34,35,36,37\}, \{47,48,49,50\}, \{76,77,78,79\},$ and $\{89,90,91,92\},$ from which the answer is $37+50+79+92=\boxed{258}.$

Remarks

We can reconstruct the second table in this solution as follows, where Y and N stand for replies of "yes" and "no", respectively. Notice that this table has some kind of symmetry!

[asy] /* Made by MRENTHUSIASM */ size(20cm);  for (real j=5.5; j<41.5; j+=6)  { 	fill((j+0.5,4)--(j-0.5,4)--(j-0.5,3)--(j+0.5,3)--cycle,yellow); }  for (real j=6.5; j<41.5; j+=7)  { 	fill((j+0.5,4)--(j-0.5,4)--(j-0.5,3)--(j+0.5,3)--cycle,green); }  fill((42,4)--(41,4)--(41,3)--cycle,yellow); fill((42,4)--(42,3)--(41,3)--cycle,green); fill((0,3)--(0,0)--(5,0)--(5,1)--(4,1)--(4,2)--(3,2)--(3,3)--cycle,black); fill((7,3)--(7,2)--(8,2)--(8,1)--(9,1)--(9,0)--(34,0)--(34,1)--(33,1)--(33,2)--(32,2)--(32,3)--(30,3)--(30,2)--(31,2)--(31,1)--(27,1)--(27,2)--(26,2)--(26,3)--(21,3)--(21,2)--(24,2)--(24,1)--(20,1)--(20,2)--(17,2)--(17,3)--(14,3)--(14,2)--(15,2)--(15,1)--(11,1)--(11,2)--(10,2)--(10,3)--cycle,black); fill((36,3)--(36,2)--(37,2)--(37,1)--(38,1)--(38,0)--(42,0)--(42,3)--cycle,black);  label("43",(0.5,3.5)); label("44",(1.5,3.5)); label("45",(2.5,3.5)); label("46",(3.5,3.5)); label("47",(4.5,3.5)); label("48",(5.5,3.5)); label("49",(6.5,3.5),red); label("50",(7.5,3.5),red); label("51",(8.5,3.5),red); label("52",(9.5,3.5)); label("53",(10.5,3.5)); label("54",(11.5,3.5)); label("55",(12.5,3.5)); label("56",(13.5,3.5),red); label("57",(14.5,3.5),red); label("58",(15.5,3.5)); label("59",(16.5,3.5)); label("60",(17.5,3.5)); label("61",(18.5,3.5)); label("62",(19.5,3.5)); label("63",(20.5,3.5),red); label("64",(21.5,3.5)); label("65",(22.5,3.5)); label("66",(23.5,3.5),red); label("67",(24.5,3.5)); label("68",(25.5,3.5)); label("69",(26.5,3.5)); label("70",(27.5,3.5)); label("71",(28.5,3.5)); label("72",(29.5,3.5),red); label("73",(30.5,3.5),red); label("74",(31.5,3.5)); label("75",(32.5,3.5)); label("76",(33.5,3.5)); label("77",(34.5,3.5)); label("78",(35.5,3.5),red); label("79",(36.5,3.5),red); label("80",(37.5,3.5),red); label("81",(38.5,3.5)); label("82",(39.5,3.5)); label("83",(40.5,3.5)); label("84",(41.5,3.5));  label("Y",(3.5,2.5),heavycyan); label("N",(4.5,2.5),heavycyan);  label("N",(5.5,2.5),heavycyan); label("N",(6.5,2.5),heavycyan);  label("N",(4.5,1.5),heavycyan); label("N",(5.5,1.5),heavycyan);  label("N",(6.5,1.5),heavycyan); label("N",(7.5,1.5),heavycyan);  label("N",(5.5,0.5),heavycyan); label("N",(6.5,0.5),heavycyan);  label("N",(7.5,0.5),heavycyan); label("Y",(8.5,0.5),heavycyan);  label("Y",(10.5,2.5),heavycyan); label("N",(11.5,2.5),heavycyan);  label("N",(12.5,2.5),heavycyan); label("N",(13.5,2.5),heavycyan);  label("N",(11.5,1.5),heavycyan); label("N",(12.5,1.5),heavycyan);  label("N",(13.5,1.5),heavycyan); label("Y",(14.5,1.5),heavycyan);  label("Y",(17.5,2.5),heavycyan); label("Y",(18.5,2.5),heavycyan);  label("Y",(19.5,2.5),heavycyan); label("N",(20.5,2.5),heavycyan);  label("N",(20.5,1.5),heavycyan); label("Y",(21.5,1.5),heavycyan);  label("Y",(22.5,1.5),heavycyan); label("Y",(23.5,1.5),heavycyan);  label("Y",(26.5,2.5),heavycyan); label("N",(27.5,2.5),heavycyan);  label("N",(28.5,2.5),heavycyan); label("N",(29.5,2.5),heavycyan);  label("N",(27.5,1.5),heavycyan); label("N",(28.5,1.5),heavycyan);  label("N",(29.5,1.5),heavycyan); label("Y",(30.5,1.5),heavycyan);  label("Y",(32.5,2.5),heavycyan); label("N",(33.5,2.5),heavycyan);  label("N",(34.5,2.5),heavycyan); label("N",(35.5,2.5),heavycyan);  label("N",(33.5,1.5),heavycyan); label("N",(34.5,1.5),heavycyan);  label("N",(35.5,1.5),heavycyan); label("N",(36.5,1.5),heavycyan);  label("N",(34.5,0.5),heavycyan); label("N",(35.5,0.5),heavycyan);  label("N",(36.5,0.5),heavycyan); label("Y",(37.5,0.5),heavycyan);   add(grid(42,4)); [/asy]

~MRENTHUSIASM

Video Solution

https://www.youtube.com/watch?v=7jKjilTRhs4

See Also

2021 AIME II (ProblemsAnswer KeyResources)
Preceded by
Problem 10
Followed by
Problem 12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
All AIME Problems and Solutions

The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions. AMC logo.png