If you are playing a coin-tossing game where throwing more heads is better, then your expected score increases if the probability of “head” increases.
Formally: If $f(i)$ is monotonic in $i$, and $0 \le p \le q \le 1$, then
$$ E[f(X_p)] \le E[f(X_q)] $$
where $X_p \sim \mathit{Binom}(p,n)$, or more explicitly
$$ \sum_{i + j = n} p^i (1-p)^j \binom n i f(i) \le \sum_{i + j = n} q^i (1-q)^j \binom n i f(i) $$
How would I go about proving that?
Intuitively, one can approach this by considering a three-sided coin, with probabilities $p$, $q-p$ and $1-q$, and represent the binominal expectation via the multinomial expectation. This idea leads to the following proof:
$$\begin{align} \sum_{i + j = n} p^i (1-p)^j \binom n i f(i) &= \sum_{i + j = n} p^i (1-p)^j \binom n i f(i) \underbrace{\sum_{k + l = j} \left(\frac{q-p}{1-p}\right)^k \left(1-\frac{q-p}{1-p}\right)^l \binom j k}_{= 1} \\ &= \sum_{i + k + l = n} p^i (1-p)^{k + l} \binom n i f(i) \left(\frac{q-p}{1-p}\right)^k \left(1-\frac{q-p}{1-p}\right)^l \binom j k \\ &= \sum_{i + k + l = n} p^i (q-p)^k (1-q)^l \binom n i \binom j k f(i) \\ &= \sum_{i + k + l = n} p^i (q-p)^k (1-q)^l \frac{n!}{i!j!k!} k f(i) \\ &\le \sum_{i + k + l = n} p^i (q-p)^k (1-q)^l \frac{n!}{i!j!k!} f(i+k) \\ &= \sum_{i + k + l = n} \left(\frac{p}{q}\right)^i \left(1 - \frac{p}{q}\right)^k q^{i+k} (1-q)^l \binom{n}{i+k} \binom{i+k}{i} f(i+k) \\ &= \sum_{m + l = n} \underbrace{\sum_{i + k = m} \left(\frac{p}{q}\right)^i \left(1 - \frac{p}{q}\right)^k \binom{m}{i}}_{=1} q^{m} (1-q)^l \binom{n}{m} f(i+k) \\ &= \sum_{m + l = n} q^{m} (1-q)^l \binom{n}{m} f(i+k) \end{align}$$