3

I have the optimization problem

$$\begin{array}{ll} \text{maximize} & \displaystyle\sum_{i=1}^n \log(c_i + x_i)\\ \text{subject to} & \displaystyle\sum_{i=1}^n x_i = 1\\ & x_i\ge0\end{array}$$

where $c_i>0$. How could I solve it?

1 Answers1

2

Maximizing your function is the same as maximizing its exponential, that is: $$\prod_{i=1}^{n}\left(c_i+x_i\right)\stackrel{AM-GM}{\leq}\left(\frac{1}{n}\sum_{i=1}^{n}(c_i+x_i)\right)^{n} =\frac{1}{n^n}\left(1+\sum_{i=1}^{n}c_i\right)^n.$$ Can you take it from here?

Jack D'Aurizio
  • 353,855
  • 1
    Thank you @Jack D'Aurizio! Is it ok if we try to maximize the approximating AM function instead of original, since it is not an equality? Do I need to prove this step somehow? – pepelac24 Jun 03 '16 at 20:45