返回题库

AIME 2011 II · 第 9 题

AIME 2011 II — Problem 9

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem 9

Let x1,x2,...,x6x_1, x_2, ... , x_6 be non-negative real numbers such that x1+x2+x3+x4+x5+x6=1x_1 +x_2 +x_3 +x_4 +x_5 +x_6 =1, and x1x3x5+x2x4x61540x_1 x_3 x_5 +x_2 x_4 x_6 \ge {\frac{1}{540}}. Let pp and qq be positive relatively prime integers such that pq\frac{p}{q} is the maximum possible value of x1x2x3+x2x3x4+x3x4x5+x4x5x6+x5x6x1+x6x1x2x_1 x_2 x_3 + x_2 x_3 x_4 +x_3 x_4 x_5 +x_4 x_5 x_6 +x_5 x_6 x_1 +x_6 x_1 x_2. Find p+qp+q.

解析

Solution

Solution 1

Note that neither the constraint nor the expression we need to maximize involves products xixjx_i x_j with ij(mod3)i \equiv j \pmod 3. Factoring out say x1x_1 and x4x_4 we see that the constraint is x1(x3x5)+x4(x2x6)1540x_1(x_3x_5) + x_4(x_2x_6) \ge {\frac1{540}}, while the expression we want to maximize is x1(x2x3+x5x6+x6x2)+x4(x2x3+x5x6+x3x5)x_1(x_2x_3 + x_5x_6 + x_6x_2) + x_4(x_2x_3 + x_5x_6 + x_3x_5). Adding the left side of the constraint to the expression, we get: (x1+x4)(x2x3+x5x6+x6x2+x3x5)=(x1+x4)(x2+x5)(x3+x6)(x_1 + x_4)(x_2x_3 + x_5x_6 + x_6x_2 + x_3x_5) = (x_1 + x_4)(x_2 + x_5)(x_3 + x_6). This new expression is the product of three non-negative terms whose sum is equal to 1. By AM-GM this product is at most 127\frac1{27}. Since we have added at least 1540\frac{1}{540} the desired maximum is at most 1271540=19540\frac1{27} - \frac1{540} =\frac{19}{540}. It is easy to see that this upper bound can in fact be achieved by ensuring that the constraint expression is equal to 1540\frac1{540} with x1+x4=x2+x5=x3+x6=13x_1 + x_4 = x_2 + x_5 = x_3 + x_6 =\frac13—for example, by choosing x1x_1 and x2x_2 small enough—so our answer is 540+19=559.540 + 19 = \fbox{559}.

An example is:

x3=x6=16x1=x2=52030x5=x4=5+2030\begin{aligned} x_3 &= x_6 = \frac16 \\ x_1 &= x_2 = \frac{5 - \sqrt{20}}{30} \\ x_5 &= x_4 = \frac{5 + \sqrt{20}}{30} \end{aligned} Another example is

x1=x3=13x2=1960, x5=160x4=x6=0\begin{aligned} x_1 = x_3 = \frac{1}{3} \\ x_2 = \frac{19}{60}, \ x_5 = \frac{1}{60} \\ x_4 &= x_6 = 0 \end{aligned}

Solution 2 (Not legit)

There's a symmetry between x1,x3,x5x_1, x_3, x_5 and x2,x4,x6x_2,x_4,x_6. Therefore, a good guess is that a=x1=x3=x5a = x_1 = x_3 = x_5 and b=x2=x4=x6b = x_2 = x_4 = x_6, at which point we know that a+b=1/3a+b = 1/3, a3+b31/540a^3+b^3 \geq 1/540, and we are trying to maximize 3a2b+3ab23a^2b+3ab^2. Then,

3a2b+3ab2=(a+b)3a3b31271540=195403a^2b+3ab^2 = (a+b)^3-a^3-b^3 \leq \frac{1}{27} - \frac{1}{540} = \boxed{\frac{19}{540}} which is the answer.

This solution is extremely lucky; if you attempt to solve for aa and bb you receive complex answers (which contradict the problem statement), but the final answer is correct.