Let $X,Y$ be two independent random variables with binomial distribution: $B[4n,p]$ with $p=0.5$. Let $M=\min(X,Y)$. What is the expectation of $M$?
This question seems related but it has no answer: Expectation of Minimum of Multinomially Distributed Random Variables
This question also seems related but it talks about uniformly distributed continuous variables: Expectation of the min of two independent random variables?
I tried to explicitly calculate the probability distribution of $M$, but it turned out too complicated.
Here is my current attempt; looking forward for your comments.)
Each of $X$ and $Y$ is the number of successes in $4n$ independent trials. Instead of $8n$ different trials, let's do $4n$ trials such that each trial has 4 possible outcomes: 00, 01, 10, 11, each outcome occurs with probability $0.25$. Define the random variables $Z_{00}, Z_{01}, Z_{10}, Z_{11}$ as the number of occurances of each outcome. So we have:
- $X = Z_{11}+Z_{10}$
- $Y = Z_{11}+Z_{01}$
- $M = Z_{11}+\min{(Z_{10},Z_{01})}$
$E[Z_{11}]=4n/4=n$; it remains to calculate the expectation of: $\min{(Z_{10},Z_{01})}$.
If we assume that there are $2n$ trials with a single 1 (i.e. $Z_{10}+Z_{01}=2n$, which is their expected value), then $Z_{10}$ and $Z_{01}$ can be seen as related to a single random variable. I.e., there is a random variable $Z_{10}$ with distribution $B(2n,p)$, and the other variable is its complement: $Z_{01}=2n-Z_{10}$. So we have to calculate:
$$E[\min(Z_{10},2n-Z_{10})]$$
$$= \sum_{k=0}^{n} k \binom{2n}{k} p^k q^{2n-k} + \sum_{k=0}^{n-1} k \binom{2n}{2n-k} p^{2n-k} q^{k}$$
Since $p=q=0.5$, the first sum is $\frac{n}{2}$ (see Expectation of half of a binomial distribution) and the second sum is almost identical except for the $n$-th element. So we get:
$$\frac{n}{2} + \frac{n}{2} - n\binom{2n}{n}2^{-2n} = n(1-\binom{2n}{n}2^{-2n})$$
And the total expectation of $M$ is this plus $n$:
$$E[M] = n(2-\binom{2n}{n}2^{-2n})$$
By Stirling's formula, this can be simplified to:
$$E[M] \approx n(2-\frac{1}{\sqrt{\pi n}}) = 2n-\sqrt\frac{n}{\pi}$$
As a sanity check, this is indeed smaller than the expectation of $X$ and $Y$, which is $2n$.
Does this make any sense?
I now found this question in Quora: What is the expected value of the maximum of n iid normal variables? The first answer says that for two variables with distribution $N[0,1]$ the expected value is $1/\sqrt \pi$, so by symmetry the expected value of the minimum is $-1/\sqrt \pi$. A binomial variable $B[4n,p]$ can be approximated as a normal variable $N[4np,\sqrt{4npq}]$. The minimum of two such variables, by scaling, is $4np-\sqrt{4npq}/\sqrt \pi$, which happens to be exactly:
$$2n - \sqrt\frac{n}{\pi}$$
I used two very approximate and incorrect methods, and got at the same result... this implies that this result cannot be too far from the truth. But what is the truth?