I have a finite sequence of positive numbers (ai)n1 for which:
- a1>an,
- aj≥aj+1≥⋯≥an for some j∈{2,…,n−1},
- a1>a2>⋯>aj−1,
- aj≥ai for all 1≤i≤n.
I conjecture that:
(an+a2+⋯+aj)(n−1∑i=j+1a2i(a1+⋯+ai)(an+a2+⋯+ai)+a1+ana1+⋯+an)≥(an+a1+⋯+aj)(n−1∑i=j+1a2i(a1+⋯+ai)(an+a1+⋯+ai)+ana1+⋯+an).
I have an unappealing brute-force proof when n∈{3,4,5} but I can't prove it in general. I have tried calculus to no avail, and it doesn't seem like a good fit for any of the standard inequalities.Does this look even remotely similar to anything already done? I appreciate that it's a rather ugly inequality but some suggestions would be greatly appreciated!
The proof when n=3 is outlined below. By condition 2. we know that j=2 so that
(a3+a2)(a1+a3a1+a2+a3)−(a3+a1+a2)(a3a1+a2+a3)=a2(a1−a3)a1+a2+a3>0
where we have used condition 1, which states that a1>a3.The proofs when n=4 and n=5 are likewise, only uglier. When n=5 the trick is to find common denominators then simply pair each negative term with some larger positive term. It's horrible, but it works. Perhaps a general proof would involve a similar argument but more formalised?
If a full proof can't be found then I'd be happy for a proof in the special case where j=2 and j=3.
Answer
Your conjecture fails for n≥7 (and maybe for some smaller n). The following results are from programming your inequality in Sage and testing a variety of patterned sequences.
1. First family of counterexamples
Let S(a,b)=[a,a−1,a−2,...,1,b,b−1,b−2,...,1], of length a+b, for positive integers a,b.
For any a≥2, there is some b∗>a such that for any b≥b∗, S(a,b) is a counterexample. (The quantity LHS−RHS is a decreasing function of b, and falls below 0 at b=b∗.)
Such counterexamples include S(2,b≥11),S(3,b≥14),S(4,b≥16),S(5,b≥19), and so on. (I haven't determined a formula for b∗.)
The smallest counterexample of this form appears to be
S(2,11)=[2,1,11,10,9,8,7,6,5,4,3,2,1] for which
LHS=7958200886897464924115735265132809166560=5.0575...<5.0608...=1185342437701234217526928=RHS
2. Second (shorter) family of counterexamples
Another family of counterexamples is [2,b,b,b,b,b,1] with b≥5. The smallest counterexample of this form appears to be
[2,5,5,5,5,5,1], for which
LHS=35152191225224=2.869...<2.881...=3044690210567557=RHS
Here's the core of the program (note the indexing adjustments due to Python lists being 0-based):
def lhs(L,j):
n = len(L)
tot = (L[0] + L[n-1])/sum(L)
for i in [j+1..n-2]: tot += L[i]^2 / ( sum(L[0:i+1])*( L[n-1] + sum(L[1:i+1]) ) )
return (L[n-1] + sum(L[1:j+1]))*tot
def rhs(L,j):
n = len(L)
tot = L[n-1]/sum(L)
for i in [j+1..n-2]: tot += L[i]^2 / ( sum(L[0:i+1])*( L[n-1] + sum(L[0:i+1]) ) )
return (L[n-1] + sum(L[0:j+1]))*tot
for b in [3..8]:
L = [2,b,b,b,b,b,1]; left = lhs(L,1); right = rhs(L,1)
print b, left.n(), right.n(), (left-right).n()
> 3 1.96695167577521 1.92603768780239 0.0409139879728115
> 4 2.41522132314971 2.40469223123685 0.0105290919128582
> 5 2.86904190580661 2.88116752055371 -0.0121256147470981
> 6 3.32586148147269 3.35536963036963 -0.0295081488969435
> 7 3.78448484495198 3.82769776396051 -0.0432129190085339
> 8 4.24427752155089 4.29855086580553 -0.0542733442546420
No comments:
Post a Comment