Bunuel
For any integers a, b, c, and d, sechigh(a, b, c, d) is the second highest integer when the integers are placed in an ordered list. For example sechigh(2, 5, 4, 6) = 5 and sechigh(6, 5, 3, 6) = 6 . For the integer y, what is the value of sechigh(6, 7, 11, y)?
(1) y = sechigh (7, 13, 12, x) for some integer x.
(2) y = sechigh (7, 13, 8, z) for some integer z.
Breaking Down the Info:When y is the highest value, \(sechigh(6, 7, 11, y) = 11\). When y is the 2nd highest, \(sechigh(6, 7, 11, y) = y\). If y is 7 or lower, \(sechigh(6, 7, 11, y) = 7\). Putting this together, we have the function:
\(sechigh(6, 7, 11, y) = 11 \) if \(y \geq 11\).
\(sechigh(6, 7, 11, y) = y \) if \(y = {10, 9, 8}\).
\(sechigh(6, 7, 11, y) = 7 \) if \(y \leq 7\).
Statement 1 Alone:The lowest possible value of this function is 12. The highest possible value of this function is 13. So we have \(y \geq 12\). This gives us \(sechigh(6, 7, 11, y) = 11 \), therefore this statement is sufficient.
Statement 2 Alone:The lowest possible value of this function is 8. The highest possible value of this function is 13 We may have y = 8 or y = 13. That is two different cases, so this statement is insufficient.
Answer: A