For positive integer n, define Sn to be the minimum value of the sum ∑k=1n(2k−1)2+ak2, where a1,a2,…,an are positive real numbers whose sum is 17. There is a unique positive integer n for which Sn is also an integer. Find this n.
解析
Solution 1 (Geometric Interpretation)
Consider n right triangles joined at their vertices, with bases a1,a2,…,an and heights 1,3,…,2n−1. The sum of their hypotenuses is the value of Sn. The minimum value of Sn, 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=1∑n(2k−1))2+(k=1∑nak)2.
Since the sum of the first n odd integers is n2 and the sum of a1,a2,…,an is 17, we get
Sn≥172+n4.
If this is an integer, we can write 172+n4=m2, for an integer m. Thus, (m−n2)(m+n2)=289⋅1=17⋅17=1⋅289. The only possible value, then, for m is 145, in which case n2=144, and n=012.
Solution 2
The inequality
Sn≥(k=1∑n(2k−1))2+(k=1∑nak)2.
is a direct result of the Minkowski Inequality. Continue as above.
Solution 3
Let ai=(2i−1)tanθi for 1≤i≤n and 0≤θi<2π. We then have that
Sn=k=1∑n(2k−1)2+ak2=k=1∑n(2k−1)secθk
Note that that Sn+17=∑k=1n(2k−1)(secθk+tanθk). Note that for any angle θ, it is true that secθ+tanθ and secθ−tanθ are reciprocals. We thus have that Sn−17=∑k=1n(2k−1)(secθk−tanθk)=∑k=1nsecθk+tanθk2k−1. By the AM-HM inequality on these n2 values, we have that:
n2Sn+17≥Sn−17n2→Sn2≥289+n4
This is thus the minimum value, with equality when all the tangents are equal. The only value for which 289+n4 is an integer is n=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 (2k−1)2+ak2 to be a vector from the origin to point (2k−1,ak). Now we can do sum inside the vector so we get ((1+3+5+…+2k−1,a1+a2+a3+…+ak), with a1+…+ak to be 17 and 1+3+…+2k−1 to be k2. Then we calculate the length of the vector to be k4+289. Since the sum needs to be an integer, we assume k4+289 equals to s2. Applying difference between squares, we get that k2−s=289 and k2+s=−1. Therfore 2k2 is 288 and k=n=12 to be the final answer.