I am currently trying to compute the expectation (a nice closed form distribution would be even better) of the minimum of n iid chi-squared with k degrees of freedom.
After struggling with the pdf easily derived from the definition, I tried some numerical experiments and by making log-log plots, I have a strong belief (R2 of the regression > 0.998) that the solution is: $$\mathbb{E}\left[\min_{i \in [n]}X_i\right] = kn^{-\frac{1}{\sqrt{k}}}$$ Where $X_i \sim \chi^2(k)$ are iid.
I don't find any way to prove it yet and would be grateful of any help or reference (I didn't find any either).
Hi: The probability of the minimum being less than $X$ equals 1 minus the probability that all of the $n$ chi-squared with $k$ df random variables are greater than $X$. The probability that all of the $n$ chi-squared rvs are greater than $X$ is equal to $(1-F(x))^n$ where $1-F(X)$ is the probability that one chi-squared rv is greater than X. So, you can look up the probability of one chi-squared with $k$ df being greater than $X$ (i.e: 1-F(X). any statistics text should have F(X) tables in the back of it or use R ) and then calculate : $(1-(1-F(X))^n)$. Hopefully you will get something close to what you got numerically.