This question is related, but mine is about a much more general case.
I want to roll $N$ dice $D_1, D_2, ..., D_{N}$. Each die $D_i$ has $K_i$ sides (so different dice possibly have different number of sides). Once I've rolled them, I want to keep the lowest value.
The sides of die $D_i$ are labeled $0, 1, ..., K_i-1$.
Example:
- There are 4 dice (with, respectively, 4 sides, 7 sides, 2 sides, 9 sides)
- I roll them, and get the values 2, 3, 1, 0
- 0 is the lowest values, so that's the final result of the experiment.
What is the expected value of the result? On average, what is my final result?