Common.Real.Floor #
A collection of useful definitions and theorems around the floor function.
Hermite's Identity #
Definitions and theorems in support of proving Hermite's identity.
A partition of [0, 1)
that looks as follows:
[0, 1/n), [1/n, 2/n), ..., [(n-1)/n, 1)
This is expected to be used as an indexing function of a union of sets, e.g.
⋃ i ∈ Finset.range n, partition n i
.
Instances For
theorem
Real.Floor.Hermite.partition_subset_Ico_zero_one
{n : ℕ}
:
⋃ i ∈ Finset.range n, Real.Floor.Hermite.partition n i ⊆ Set.Ico 0 1
The indexed union of the family of sets of a partition
is a subset of [0, 1)
.
theorem
Real.Floor.Hermite.Ico_zero_one_subset_partition
{n : ℕ}
:
Set.Ico 0 1 ⊆ ⋃ i ∈ Finset.range n, Real.Floor.Hermite.partition n i
[0, 1)
is a subset of the indexed union of the family of sets of a partition
.
theorem
Real.Floor.Hermite.partition_eq_Ico_zero_one
{n : ℕ}
:
⋃ i ∈ Finset.range n, Real.Floor.Hermite.partition n i = Set.Ico 0 1
The indexed union of the family of sets of a partition
is equal to [0, 1)
.