AlgebraDifficulty 9.2Prove itChina-TST-2023B · China
Given an integer n≥2. Find the minimum real number λ such that for any real numbers a1,a2,…,an, and b, the following inequality holds: λi=1∑n∣ai−b∣+ni=1∑nai≥i=1∑n∣ai∣.
This one wants a proof. Work it on paper, read the official solution, then mark
yourself honestly — the ladder only means something if the record is true.
Official solution
We will prove that λn:=nn−1+n−1 is the desired minimum value. Let's first prove a few lemmas.
Lemma 1: The sequence {λn} is strictly increasing.
Proof: Note that λn+12−λn2=n(n+1)n+1+2n25−2(n+1)(n−1)23=n(n+1)n+1+2n2n−2(n2−1)n−1>0. Therefore, λn<λn+1.
Lemma 2: Let λ≥1, b>0, and c1,c2,…,cm be non-negative real numbers. Then λi=1∑mci+b−i=1∑mci≥λi=1∑mci+b−i=1∑mci. Proof: It is clear that ∑i=1mci+b≥∑i=1mci+b. Therefore, (λi=1∑mci+b−i=1∑mci)−(λi=1∑mci+b−i=1∑mci)≥i=1∑m(ci+b−ci)−(i=1∑mci+b−i=1∑mci)=i=1∑mci+b+cib−∑i=1mci+b+∑i=1mcib≥0. Hence, Lemma 2 holds.
Lemma 3: Let λ≥λ2, b<a≤c be positive real numbers. Then λ(a−b+c+b)−a−c>λ(c+2b−a−b−c−a+b). Proof: The inequality in Lemma 3 is equivalent to λa−b+λ(c+b−c+2b−a)>(a−b)+(c−c−a+b)⟺λ+c+b+c+2b−aλa−b>a+ba−b+c+c−a+ba−b. Firstly, we have (1) λ>1>a+ba−b.
Furthermore, since c+b+c+2b−a<c+c+2(c−a)+2b=2⋅(c+c−a+b), and λ≥λ2=2, we have (2)c+b+c+2b−aλa−b>c+c−a+ba−b. Therefore, combining (1) and (2), we obtain the desired inequality.
Proof: Let's return to the original problem. First, we take a1=⋯=an−1=b=1 and an=−(n−1). Then, we have λn≥n−1+n−1⟹λ≥nn−1+n−1=λn. Next, we will prove that λn satisfies the desired inequality. That is, we need to prove that for any real numbers a1,a2,…,an,b, we have (3)λni=1∑n∣ai−b∣+ni=1∑nai≥i=1∑n∣ai∣. Let t:=n1∑i=1nai, ai′:=ai−t (i=1,2,…,n), and b′:=b−t. Note that ∣t∣+∣ai′∣≥∣t∣+∣ai′∣≥∣t+ai′∣=∣ai∣. Therefore, to prove (3), it suffices to prove that for any real numbers a1,a2,…,an,b, if ∑i=1nai=0, then (4)λni=1∑n∣ai−b∣≥i=1∑n∣ai∣. Without loss of generality, let's assume that b>0. By Lemma 1 and Lemma 2, we can combine all negative terms in a1,a2,…,an. Therefore, to prove (4), it suffices to prove that for any non-negative real numbers a1,a2,…,an−1,b, if c:=∑i=1n−1ai>0, then (5)λn(i=1∑n−1∣ai−b∣+c+b)≥i=1∑n−1ai+c. If b≥n−1c, then λn(i=1∑n−1∣ai−b∣+c+b)≥λnc+n−1c=(n−1)c+c=(n−1)i=1∑n−1ai+c≥i=1∑n−1ai+c. Therefore, (5) holds.
If b<n−1c=n−11∑i=1n−1ai, then there must exist some aj>b. By Lemma 3, after adjusting aj to b and c to c−aj+b, the difference between the left-hand side and the right-hand side of (5) strictly decreases. After a finite number of adjustments, we will eventually reach the case where b≥n−1c. Therefore, (5) holds.
Combining the above, we conclude that the minimum value of λ satisfying the given conditions is nn−1+n−1. □
Source: MathNet,
licensed CC-BY-4.0.
Statement and solution reproduced as published; topic, difficulty and ordering added
by this site.