返回题库

AIME 1991 · 第 15 题

AIME 1991 — Problem 15

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

For positive integer nn_{}^{}, define SnS_n^{} to be the minimum value of the sum k=1n(2k1)2+ak2,\sum_{k=1}^n \sqrt{(2k-1)^2+a_k^2}, where a1,a2,,ana_1,a_2,\ldots,a_n^{} are positive real numbers whose sum is 17. There is a unique positive integer nn^{}_{} for which SnS_n^{} is also an integer. Find this nn^{}_{}.

解析

Solution 1 (Geometric Interpretation)

Consider nn right triangles joined at their vertices, with bases a1,a2,,ana_1,a_2,\ldots,a_n and heights 1,3,,2n11,3,\ldots, 2n - 1. The sum of their hypotenuses is the value of SnS_n. The minimum value of SnS_n, then, is the length of the straight line connecting the bottom vertex of the first right triangle and the top vertex of the last right triangle, so

Sn(k=1n(2k1))2+(k=1nak)2.S_n \ge \sqrt {\left(\sum_{k = 1}^n (2k - 1)\right)^2 + \left(\sum_{k = 1}^n a_k\right)^2}. Since the sum of the first nn odd integers is n2n^2 and the sum of a1,a2,,ana_1,a_2,\ldots,a_n is 17, we get

Sn172+n4.S_n \ge \sqrt {17^2 + n^4}. If this is an integer, we can write 172+n4=m217^2 + n^4 = m^2, for an integer mm. Thus, (mn2)(m+n2)=2891=1717=1289.(m - n^2)(m + n^2) = 289\cdot 1 = 17\cdot 17 = 1\cdot 289. The only possible value, then, for mm is 145145, in which case n2=144n^2 = 144, and n=012n = \boxed {012}.

Solution 2

The inequality

Sn(k=1n(2k1))2+(k=1nak)2.S_n \ge \sqrt {\left(\sum_{k = 1}^n (2k - 1)\right)^2 + \left(\sum_{k = 1}^n a_k\right)^2}. is a direct result of the Minkowski Inequality. Continue as above.

Solution 3

Let ai=(2i1)tanθia_{i} = (2i - 1) \tan{\theta_{i}} for 1in1 \le i \le n and 0θi<π20 \le \theta_{i} < \frac {\pi}{2}. We then have that

Sn=k=1n(2k1)2+ak2=k=1n(2k1)secθkS_{n} = \sum_{k = 1}^{n}\sqrt {(2k - 1)^{2} + a_{k}^{2}} = \sum_{k = 1}^{n}(2k - 1) \sec{\theta_{k}} Note that that Sn+17=k=1n(2k1)(secθk+tanθk)S_{n} + 17 = \sum_{k = 1}^{n}(2k - 1)(\sec{\theta_{k}} + \tan{\theta_{k}}). Note that for any angle θ\theta, it is true that secθ+tanθ\sec{\theta} + \tan{\theta} and secθtanθ\sec{\theta} - \tan{\theta} are reciprocals. We thus have that Sn17=k=1n(2k1)(secθktanθk)=k=1n2k1secθk+tanθkS_{n} - 17 = \sum_{k = 1}^{n}(2k - 1)(\sec{\theta_{k}} - \tan{\theta_{k}}) = \sum_{k = 1}^{n}\frac {2k - 1}{\sec{\theta_{k}} + \tan{\theta_{k}}}. By the AM-HM inequality on these n2n^{2} values, we have that:

Sn+17n2n2Sn17Sn2289+n4\frac {S_{n} + 17}{n^{2}}\ge \frac {n^{2}}{S_{n} - 17}\rightarrow S_{n}^{2}\ge 289 + n^{4} This is thus the minimum value, with equality when all the tangents are equal. The only value for which 289+n4\sqrt {289 + n^{4}} is an integer is n=12n = 12 (see above solutions for details).

Solution 4 (Vector)

Observe the sum and apply it to the Cartesian plane, we can see that it is basically calculating distance between the origin and two points. Therefore we can assume every (2k1)2+ak2\sqrt{(2k-1)^2+a_k^2} to be a vector from the origin to point (2k1,ak)(2k-1, a_k). Now we can do sum inside the vector so we get ((1+3+5++2k1,a1+a2+a3++ak)((1+3+5+\ldots+2k-1, a_1+a_2+a_3+\ldots+a_k), with a1++aka_1+\ldots+a_k to be 1717 and 1+3++2k11+3+\ldots+2k-1 to be k2k^2. Then we calculate the length of the vector to be k4+289\sqrt{k^4+289}. Since the sum needs to be an integer, we assume k4+289k^4+289 equals to s2s^2. Applying difference between squares, we get that k2s=289k^2-s=289 and k2+s=1k^2+s=-1. Therfore 2k22k^2 is 288288 and k=n=12k=n=12 to be the final answer.


JINZHENQIAN