Qualified's blog

By Qualified, history, 2 years ago, In English

Prove that for any $$$a, b, c\in \mathbb{R}^+$$$ the following inequality is true: \begin{align*} \left(\frac{a+b+c}{3}\right)\left(\frac{b^{3/2}}{\sqrt{a}}+\frac{c^{3/2}}{\sqrt{b}}+\frac{a^{3/2}}{\sqrt{c}}\right) \ \ge a(2b-a)+b(2c-b)+c(2a-c) \end{align*}

  • Vote: I like it
  • 0
  • Vote: I do not like it

| Write comment?
»
2 years ago, # |
  Vote: I like it +16 Vote: I do not like it

Counterexample: $$$a=b=c=0.1$$$

  • »
    »
    2 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Sorry for the inconvenience. I have fixed it. Enjoy!

»
2 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Auto comment: topic has been updated by Qualified (previous revision, new revision, compare).

»
2 years ago, # |
  Vote: I like it +29 Vote: I do not like it

Not sure about the point of putting an MO-style inequality on codeforces, but just for the sake of completeness:

Note that by the rearrangement inequality, since $$$a^{3/2}, b^{3/2}, c^{3/2}$$$ and $$$\frac{1}{\sqrt{a}}, \frac{1}{\sqrt{b}}, \frac{1}{\sqrt{c}}$$$ are oppositely sorted, the LHS is at least $$$\frac{(a + b + c)^2}{3} \ge bc + ca + ab \ge 2(bc + ca + ab) - a^2 - b^2 - c^2$$$, where the last inequality also comes from the rearrangement inequality (or AM-GM) and we are done.

»
2 years ago, # |
  Vote: I like it 0 Vote: I do not like it

You could use Holder inequality to tackle the annoying sqrt part

then the LHS become ((a+b+c)^2)/3

Then you can use almost anything to prove.(AMGM, Muirhead, etc)

»
22 months ago, # |
  Vote: I like it 0 Vote: I do not like it

No need of this problem here

»
22 months ago, # |
  Vote: I like it +1 Vote: I do not like it

Nice inequality