For positive integers $ b_1,b_2,...,b_T $, I am trying to solve the following optimization problem: $$ \min_{\substack{p_1,\ldots,p_T\\ p_1+\cdots+p_T=1\\}} \sum_{i=1}^T {p_i} ^ {b_i} .$$
The solution I would like to find is an expression for $ p_i $ in terms of $ b_i $. For example, something like $ p_i \sim 1/b_i $.
I have tried a few different things, including experimenting with the simple case where $ T = 2 $, but I have been having some trouble. If anyone can tell me how to solve this, give me any guidance, or even tell me whether this problem is tractable, I would really appreciate it. Thanks!
Update:
I have now tried using Lagrange multipliers to solve this optimization problem. However, I'm not entirely sure that this is correct.
The Lagrangian is:
$$ L(p,\lambda) = \sum_{i} {p_i}^{b_i} - \lambda \bigl(\sum_{i}{p_i -1} \bigr) $$
Next I calculate the gradient
$$ \frac{dL}{dp_i} = b_i p_i^{b_i - 1} - \lambda$$ $$ \frac{dL}{d\lambda} = \sum_i p_i - 1 $$
I set these to zero to calculate the fixed points. But lambda is only in my first equation? I end up with:
$$ p_i = \bigl( \frac{\lambda}{b_i} \bigr)^{\frac{1}{(b_i - 1)}}$$
So then, to solve for lambda, I should substitute this expression in for the 2nd equation:
$$ \sum_i p_i = \sum_i \bigl ( \frac{\lambda}{b_i} \bigr ) ^{\frac{1}{(b_i - 1)}} = 1 $$