Free groups have property (P)
ProvedChou.hasPackingProperty_freeGroupEvery free group has property (P).
import Definitions.Def_Chou_ElementaryAmenable import Definitions.Def_Chou_Classes import Mathlib
namespace Chou /-- p. 406: every free group has property (P). -/ theorem hasPackingProperty_freeGroup (α : Type*) : HasPackingProperty (FreeGroup α) := by sorry end Chou
Read-back
What the Lean code literally says, in plain math · claude-fable-5-1
Read-back: the packing property for free groups
Setting
Let be an arbitrary set. No assumption whatever is placed on : it may be empty, finite, or infinite of any cardinality, and it lives in an arbitrary (but fixed) set-theoretic universe. Nothing else is assumed — there is no decidability, nonemptiness, or ordering hypothesis on .
Let denote the free group on , in the following concrete model. A word is a finite sequence of letters, each letter being a pair with and one of two signs (the sign records whether the letter stands for or for ). Two words are identified when one is obtained from the other by a finite sequence of insertions or deletions of an adjacent cancelling pair , where is the opposite sign; the elements of are the resulting equivalence classes. The product of two classes is the class of the concatenation of a word for followed by a word for (so the left factor's letters come first). The identity is the class of the empty word, and the inverse of a class is the class of the word read backwards with every sign flipped. This is a group, and it is this group structure that the statement refers to.
Two degenerate values of are included in the statement: if is empty then is the one-element group; if has exactly one element then is infinite cyclic.
Subsets below are arbitrary subsets of (no finiteness or other restriction unless stated). A subset is called finite when there is a natural number and a bijection between the subset and ; in particular the empty set is finite ().
The assertion
For every set as above, the group has the following property, which is what the statement calls the packing property:
For every finite subset , there exist subsets and such that
- ;
- is finite;
- the map
is a bijection from the Cartesian product onto all of .
Item 3 is, spelled out literally, the conjunction of three clauses:
- (3a) for every and , the product lies in (this clause is automatically true, since is the whole group; it is present only because the definition of "bijection onto a subset" in use includes a "maps into" clause);
- (3b) injectivity on : whenever and satisfy , one has , i.e. and ;
- (3c) surjectivity onto : for every there exist and with .
Equivalently, (3) says that every element of can be written in exactly one way as a product with and , the factor from on the left and the factor from on the right. In yet other words, is the disjoint union of the right translates over , with distinct giving disjoint translates (each translate is in bijection with via , which is automatic in any group).
The order of quantifiers is: is universally quantified first; then is universally quantified (ranging over finite subsets of ); then and are existentially quantified and may depend on (and on ). Existence only is asserted: no uniqueness of or is claimed.
What the quantifiers include and what is not required
- may be empty. The conclusion is then still required: some finite (any finite satisfies ) and some must exist with bijective.
- may contain the identity; it is not assumed to be a subgroup, to be symmetric, or to be closed under anything.
- is not required to be finite; it is an arbitrary subset of , and no bound on its size is asserted.
- is not required to be minimal, symmetric, or to contain the identity; it is only required to be a finite superset of for which (3) holds.
- Clause (3c) applied to the identity element (which always exists in ) forces both and to be nonempty; so although the statement does not say "nonempty" anywhere, the existential quantifier can only be satisfied by nonempty and .
- Nothing is asserted about the cardinality of relative to , about being a subgroup or a transversal of anything, about left translates , or about products in the other order .
- The statement concerns the one concrete group described above; it says nothing directly about other groups isomorphic to it, nor about subgroups or quotients of .
Confirmed by the mission captain (proposal self-audit).