The extremes of an independent identically distributed family #
Let X : ι → Ω → ℝ be an independent family over a nonempty finite index type, all of whose
members have the same law μ. This file computes the law of the two extremes of the family: the
maximum Finset.univ.sup' Finset.univ_nonempty fun i => X i ω and the minimum
Finset.univ.inf' Finset.univ_nonempty fun i => X i ω. Writing d = Fintype.card ι, the
cumulative distribution functions are (cdf μ x) ^ d and 1 - (1 - cdf μ x) ^ d.
Both extremes are taken over Finset.univ together with its nonemptiness proof, so neither
formula acquires the default value that an empty family would force on a Finset.sup or a
Finset.inf: d = 0 never occurs.
One event identity does the work. The maximum is at most x exactly when every member is
(Finset.sup'_le_iff), and x is below the minimum exactly when it is below every member
(Finset.lt_inf'_iff). Independence turns each of those intersections into a product of d
equal factors, which is where the two powers come from. The minimum is then read off its
complementary event, which is why its formula is the one with the two subtractions.
As an application, the minimum of a finite independent identically distributed exponential family
is again exponential, with the rates added: hasLaw_min_iid_expMeasure. This is the
d-fold form of TauCeti.Probability.hasLaw_min_expMeasure_of_indepFun, which handles two
independent exponentials of possibly different rates.
Main results #
TauCeti.Probability.measure_setOf_max_le_iid,TauCeti.Probability.measureReal_setOf_max_le_iid— the maximum is at mostxwith probability(cdf μ x) ^ d;TauCeti.Probability.measure_setOf_lt_min_iid,TauCeti.Probability.measureReal_setOf_min_le_iid— the minimum exceedsxwith probability(1 - cdf μ x) ^ d, hence is at mostxwith probability1 - (1 - cdf μ x) ^ d;TauCeti.Probability.cdf_max_iid,TauCeti.Probability.cdf_min_iid— the same two formulas for the laws of the two extremes;TauCeti.Probability.hasLaw_min_iid_expMeasure— the minimum ofdindependent exponentials of rateris exponential of rated * r.
A general theory of order statistics is outside the scope of the roadmap target below.
References #
- Roadmap:
TauCetiRoadmap/StandardDistributions/README.md, Layer 4, item 6, Finite minima and maxima.
The maximum of an independent identically distributed finite family is at most x with
probability the Fintype.card ι-th power of the common lower-tail probability.
The minimum of an independent identically distributed finite family exceeds x with
probability the Fintype.card ι-th power of the common upper-tail probability.
The real-valued form of TauCeti.Probability.measure_setOf_max_le_iid: the maximum of d
independent identically distributed variables has cumulative distribution function
(cdf μ x) ^ d.
The real-valued form of TauCeti.Probability.measure_setOf_lt_min_iid: the minimum of d
independent identically distributed variables exceeds x with probability
(1 - cdf μ x) ^ d.
The minimum of d independent identically distributed variables has cumulative distribution
function 1 - (1 - cdf μ x) ^ d.
The law of the maximum of d independent identically distributed variables, in cumulative
distribution function form.
The law of the minimum of d independent identically distributed variables, in cumulative
distribution function form.
The minimum of d independent exponential variables of a common positive rate r is
exponential of rate d * r. This is the d-fold form of
TauCeti.Probability.hasLaw_min_expMeasure_of_indepFun, which allows two different rates.