Big operators on a list in ordered groups #
This file contains the results concerning the interaction of list big operators with ordered groups/monoids.
If l₁ is a sublist of l₂ and all elements of l₂ are greater than or equal to one, then
l₁.prod ≤ l₂.prod. One can prove a stronger version assuming ∀ a ∈ l₂.diff l₁, 1 ≤ a instead
of ∀ a ∈ l₂, 1 ≤ a but this lemma is not yet in mathlib.
If l₁ is a sublist of l₂ and all elements of l₂ are nonnegative,
then l₁.sum ≤ l₂.sum.
One can prove a stronger version assuming ∀ a ∈ l₂.diff l₁, 0 ≤ a instead of ∀ a ∈ l₂, 0 ≤ a
but this lemma is not yet in mathlib.
Alias of List.prod_le_pow_length.
Alias of List.sum_le_length_nsmul.
Alias of List.pow_length_le_prod.
Alias of List.length_nsmul_le_sum.
See also List.single_le_prod.
See also List.single_le_sum.
See also List.le_prod_of_mem.
See also List.le_sum_of_mem.