0

Let's define $\xi = max(X_1, ..., X_n)$ and $\eta = X_1+\dfrac{X_2}{2}+...+\dfrac{X_n}{n}$. I tried to show that these random variables have same cumulative distribution functions and I got following: $$\phi_{\xi}(t) = \prod\limits_{k=1}^{n}(1-\dfrac{it}{\lambda k})^{-1}$$ $$\phi_{\eta}(t) = \sum\limits_{k=1}^{n}(-1)^{k+1}C_n^k(1-\dfrac{it}{\lambda k})^{-1}$$ Wolfram says these functions are the same function, but I don't know, how to prove it.

  1. How to show that functions are the same?
  2. May be there is another solution of original problem?

EDIT: Random variables $X_i$ are independently distributed

mouse_00
  • 103

1 Answers1

0

There is an intuitive argument that can be made rigorous, using a couple of properties of iid exponential distributions:

  • the minimum, i.e. first event, of $n$ has an exponential distribution with $n$ times the rate, the same distribution as $\frac{X_n}{n}$

  • exponential distributions are memoryless, so if their values exceed $k$ then the distribution of the excess above $k$ is the same exponential distribution as the original

So the minimum has the same distribution as $\frac{X_n}{n}$. The additional amount to the second lowest is similar but now with $n-1$ remaining variables so the same distribution as $\frac{X_{n-1}}{n-1}$, independently of the distribution of the minimum. Inductively this continues so the next additional amount has the same distribution as $\frac{X_{n-2}}{n-2}$ and so on up to $\frac{X_{1}}{1}$.

Adding up all the additional amounts gives the distribution of the maximum values as being the same as $\frac{X_n}{n}+ \frac{X_{n-1}}{n-1}+\frac{X_{n-2}}{n-2} + \cdots +\frac{X_{1}}{1}$, as required

Henry
  • 157,058