Show that, if $a$, $b$, $c$ and $d$ are four positive numbers with sum $1$, then $$\frac 3 {1-a} + \frac 3 {1-b} + \frac 3 {1-c} + \frac 3 {1-d} \ge \frac 5 {1+a} + \frac 5 {1+b} + \frac 5 {1+c} + \frac 5 {1+d}.$$ I tried to subtract the fractions, but I didn't get to any result.
-
In these type of problems, equality is obtained when $a=b=c=d$. – SS_C4 Mar 13 '16 at 15:24
2 Answers
Hint: It is enough to show that for $x\in (0,1)$, $$f(x)=\frac3{1-x}-\frac5{1+x}+\frac{32}{15}(1-4x)=\frac{2(4x-1)^2(4x+1)}{15(1-x^2)}\ge0$$
- 46,381
I’ll show that the function $$g(a,b,c,d)=\frac 3 {1-a} + \frac 3 {1-b} + \frac 3 {1-c} + \frac 3 {1-d} - \left(\frac 5 {1+a} + \frac 5 {1+b} + \frac 5 {1+c} + \frac 5 {1+d}\right)$$ is minimized over positive $a,b,c,d$ with sum $1$ when $a=b=c=d=\frac{1}{4}$. Its minimum is then $g(\frac14,\frac14,\frac14,\frac14)=0$, proving the inequality.
Consider the function $$f(x,y)=\frac 3 {1-x} + \frac 3 {1-y} - \left(\frac 5 {1+x} + \frac 5 {1+y} \right).$$
Its directional derivative in the direction $(1,-1)$ is $$3\left(\frac{1}{(1-x)^2}-\frac{1}{(1-y)^2}\right)+5\left(\frac{1}{(1+x)^2}-\frac{1}{(1+y)^2}\right),$$ which is negative when $x<y$ and positive when $x>y$. Consequently, if $a<b$ and $0<\epsilon<\frac{b-a}{2}$, $$f(a+\epsilon,b-\epsilon)< f(a,b),$$ and therefore $g$ can be made smaller by averaging (or making closer) any two of its parameters that are unequal (which leaves $a+b+c+d$ unchanged).
- 14,881
-
1Nice +1. More used to the algebraic equivalent of replacing $(x,y)\to (\frac{x+y}2, \frac{x+y}2)$ for smoothing, but this works well too. – Macavity Mar 14 '16 at 03:41