14

Consider a sequence with strictly positive terms $(a_n)_{n\geq1}$ with the property: $$\lim_{n\rightarrow \infty} \left(\frac{a_1}{a_2}+\frac{a_2}{a_3} + \cdots + \frac{a_{n-1}}{a_n} + \frac{a_n}{a_1}-n\right)=0$$

Prove that this sequence is constant.

It's a problem that I have no idea. Maybe someone has an idea? Thank you!

medicu
  • 4,482
  • I'm starting by supposing it's constant except for one term: $$a,a,a,\ldots, a, A, a,a,\ldots, a,\ldots$$ Then we have a sum $$ 1+1+1+\cdots + 1 + \frac a A + \frac A a + 1 + \cdots + 1 - (\text{number of foregoing terms}). $$ $$ = \frac a A + \frac A a - 2 > 0 \text{ unless } A=a. $$ – Michael Hardy Dec 15 '16 at 20:41
  • BTW, to show that $$\frac a A + \frac A a > 2 \text{ unless }A=a,$$ "complete the square": $$ \frac a A + \frac A a = \left(\frac a A - 2 + \frac A a \right) + 2 = \left( \sqrt{\frac a A} - \sqrt{\frac A a} , \right)^2 + 2. $$ – Michael Hardy Dec 15 '16 at 20:43
  • Next suppose it's constant except for three consecutive terms:$$a, a, a, \ldots, a, a, A, B, a, a, a, \ldots, a, a$$ Then we'd want to show $$\frac a A + \frac A B + \frac B a > 3 \text{ unless } a= A = B.$$ – Michael Hardy Dec 15 '16 at 20:48
  • 1
    Any finite number of terms is easy by AM-GM. the difficulty is in proving the sequence is eventually constant – cats Dec 15 '16 at 20:49
  • So the point would be to try to show that all deviations from constancy make the sum preceding the $\text{“} \cdots-n \text{''}$ bigger. $\qquad$ – Michael Hardy Dec 15 '16 at 20:50
  • "cats" pointed out the relevance of the inequality of arithmetic means and geometric means. The geometric mean of the terms $$ \frac{a_1}{a_2}, \frac{a_2}{a_3},\frac{a_3}{a_4}, \ldots,\frac{a_{n-1}}{a_n}, \frac{a_n}{a_1} $$ is $1$. Therefore their arithmetic mean is more than $1$, except when the sequence is constant and so the arithmetic mean is $1$. The sum is therefore more than $n$ except when the sequence is constant. But then we still have the problem of $n\to\infty. \qquad$ – Michael Hardy Dec 15 '16 at 21:15
  • What is the difference between $$ \frac{a_1}{a_2} +\cdots + \frac{a_n}{a_1} - n $$and$$ \frac{a_1}{a_2} +\cdots + \frac{a_n}{a_{n+1}} + \frac{a_{n+1}}{a_1} - (n+1) \text{ ?} $$I have found that the difference is negative if and only if $a_{n+1}$ is strictly between $a_1$ and $a_n,$ and is $0$ if $a_{n+1}$ is equal to either $a_1$ or $a_n.\qquad$ – Michael Hardy Dec 15 '16 at 21:17
  • I've reached the point of doubting that the limit is always nonzero whenever the sequence fails to be constant. $\qquad$ – Michael Hardy Dec 15 '16 at 21:38
  • "vadim" has pointed out the relevance of the rearrangement inequality, in an answer that was incomplete and has since been deleted. – Michael Hardy Dec 16 '16 at 00:12
  • turns out thinking about this not as a "contest" problem but more as an analysis question makes it easier. I wonder if there is an "easier" solution – cats Dec 16 '16 at 01:37

1 Answers1

4

Suppose the sequence is not constant and suppose WLOG $\frac{a_2}{a_1} = 1 + \epsilon > 1$ (just pick the first term that is less than the next, which has to exist as otherwise everything is at least $1$ and the difference is bounded away from $0$). Now note by AM-GM that $$\require{align} \require{cancel} \begin{align} \frac{a_1}{a_2} + \left(\frac{a_2}{a_3} + \ldots + \frac{a_n}{a_1}\right) - n &= \frac{1}{1+\epsilon} + \left(\frac{a_2}{a_3} + \ldots + \frac{a_n}{a_1}\right) - 1 - (n-1) \\ &\ge \left(\frac{1}{1+\epsilon}-1\right) + (n-1)\sqrt[n-1]{\frac{a_2}{\cancel{a_3}}\frac{\cancel{a_3}}{\cancel{a_4}}\cdots\frac{\cancel{a_n}}{a_1}} - (n-1) \\ &= \frac{1}{1+\epsilon} - 1 + (n-1)\cdot\left( \sqrt[n-1]{1+\epsilon}-1\right). \end{align}$$

In the limit, the right term approaches $\ln(1+\epsilon)$ while the left is fixed, so this difference is bounded away from $0.$

Just for completeness, I'll give a way of seeing that this is actually positive. First note that each expression is positive by weighted AM-GM. Therefore in the limit we get something nonnegative. Now evidently $\ln(1+\epsilon) \not= 1-\frac{1}{1+\epsilon},$ so it's positive.

Addendum: the limit is $\ln(1+\epsilon)$ by a standard application of l'Hopital's, as $$\lim_{x\to\infty} \frac{a^{1/x} - 1}{1/x} = \lim_{x\to\infty} \ln a \cdot \frac{\cancel{\frac{-1}{x^2}}a^{1/x}}{\cancel{\frac{-1}{x^2}}} = \ln a.$$

cats
  • 4,298