During coding specific algorithms I required an averaged of minimums of three arrays (they are same size), but I have only access to averaged array of three mentioned above. During testing numbers appears to be the same, but I have no luck understanding why. Is there a proper name for this question? I tried searching the Internet but didn't find anything related.
In formula wise I want to prove or disprove that:
$min(\frac{a_0 + a_1 + a_2}{3}) = \frac{min(a_0) + min(a_1) + min(a_2)}{3}$, where $a_0, a_1, a_2$ arrays of equal size.