Bohr sets #
A Bohr set B on a group G is a finite set of unitary representations of G, called the
frequencies, along with an extended non-negative real number for each frequency ψ, called the
width of B at ψ.
A Bohr set B is thought of as the set {x | ∀ ψ ∈ B.frequencies, ‖1 - ψ x‖ ≤ B.width ψ}. This is
the chord-length convention. The arc-length convention would instead be
{x | ∀ ψ ∈ B.frequencies, |arg (ψ x)| ≤ B.width ψ}.
Note that this set does not uniquely determine B (in particular, it does not uniquely
determine either B.frequencies or B.width).
- frequencies : Finset (UnitaryDual ℂ G)
- ewidth : UnitaryDual ℂ G → ENNReal
The width of a Bohr set at a frequency. Note that this width corresponds to chord-length.
Instances For
Alias of the forward direction of BohrSet.ewidth_eq_top_iff.
Construct a Bohr set on a finite group given an extended width function.
Equations
- BohrSet.ofEwidth ewidth = { frequencies := {ψ : UnitaryDual ℂ G | ewidth ψ < ⊤}, ewidth := ewidth, mem_frequencies := ⋯ }
Instances For
Construct a Bohr set on a finite group given a width function and a frequency set.
Equations
Instances For
Coercion, membership #
Equations
- BohrSet.instCoe = { coe := BohrSet.chordSet }
Equations
- BohrSet.instCoeSort = { coe := BohrSet.Elem }
Lattice structure #
Equations
- BohrSet.instBotOfFinite = { bot := { frequencies := Finset.univ, ewidth := 0, mem_frequencies := ⋯ } }
Equations
Equations
Equations
Width, frequencies, rank #
The cardinality rank of a Bohr set is its number of frequencies.
Equations
- B.cardRank = B.frequencies.card
Instances For
The dimension rank of a Bohr set is the sum of the dimensions of its frequencies.
Equations
- B.dimRank = ∑ ψ ∈ B.frequencies, Module.finrank ℂ ψ.E
Instances For
The squared dimension rank of a Bohr set is the sum of the squares of the dimensions of its frequencies.
Equations
- B.dimSqRank = ∑ ψ ∈ B.frequencies, Module.finrank ℂ ψ.E ^ 2
Instances For
Dilation #
Equations
- BohrSet.instMulAction = { toSMul := BohrSet.instSMul, mul_smul := ⋯, one_smul := ⋯ }