4

This exercise :

If $f(x)=a/(x+b)$ then : $$ f((x_1+x_2)/2)\le(f(x_1)+f(x_2))/2$$

was in my math olympiad today (for 16 years olds). I proved this by saying this is true due to Jensen's inequality.

Is this an acceptable answer?(with leaving aside the fact that i didn't prove the function is convex since it can't be done with the info we got until now). Does it have any other way of proving this?

2 Answers2

2

I'll use $x$ and $y$ instead of $x_1,x_2$ .

You can just calculate and see what you get :

$$\frac{1}{2} \cdot \left (\frac{a}{x+b}+\frac{a}{y+b} \right )>\frac{2a}{2b+x+y}$$

$$\frac{1}{x+b}+\frac{1}{y+b} \geq \frac{4}{x+y+2b}$$

You can prove this by a simple calculation :

$$\frac{(x-y)^2}{(x+b)(y+b)(x+y+2b)} \geq 0$$ which is obvious .

You can also prove it by Cauchy-Schwarz in a special form :

$$\frac{1}{x+b}+\frac{1}{y+b} \geq \frac{(1+1)^2}{x+y+2b}=\frac{4}{x+y+2b}$$

1

You can prove that f is convex by finding it second derivative, which is positive.

Imawesome
  • 295