A finite set with a fixed-point-free involution has even cardinality

Lax712553.Involution · concepts/Lax712553/Involution.lean · lax-712553

proven

Loading review…

Sign in with ORCID

Community review

Flags

Each flag is tied to a public ORCID identity and explains why this concept may be incorrect.

No flags have been submitted.

    Community review

    Flag this concept

    State precisely what appears incorrect. This explanation will be public under your ORCID name.

    No source line selected.

    Natural Language Statement

    Theorem

    Let SS be a finite set and ff a map with f(fx)=xf (f x) = x and fxxf x ≠ x for every xSx ∈ S, and which sends SS into itself. Then the elements of SS come in pairs x,fx{x, f x}, so SS has an even number of elements. This is the elementary counting principle behind parity arguments of the kind "the number of representations is even because negating one coordinate is a fixed-point-free involution".

    Concept map
    1 concept
    100%
    Proven claimThis concept
    Evidence

    Each proof establishes this claim relative to its assumptions.

    Lean source view on GitHub

    1import Mathlib.Data.Finset.Card
    2import Mathlib.Algebra.Group.Even
    3
    4/-!
    5---
    6title: A finite set with a fixed-point-free involution has even cardinality
    7type: theorem
    8---
    9Let `S` be a finite set and `f` a map with `f (f x) = x` and `f x ≠ x` for every
    10`x ∈ S`, and which sends `S` into itself. Then the elements of `S` come in pairs
    11`{x, f x}`, so `S` has an even number of elements. This is the elementary counting
    12principle behind parity arguments of the kind "the number of representations is
    13even because negating one coordinate is a fixed-point-free involution".
    14-/
    15
    16namespace Lax712553.Involution
    17
    18/-- A finite set carrying a fixed-point-free involution has even cardinality. -/
    19axiom even_card_of_fixedPointFree_involution {α : Type*} [DecidableEq α]
    20 (S : Finset α) (f : α → α) (hmaps : ∀ x ∈ S, f x ∈ S) (hinv : ∀ x ∈ S, f (f x) = x)
    21 (hfree : ∀ x ∈ S, f x ≠ x) : Even S.card
    22
    23end Lax712553.Involution
    24
    Show Proof
    Builds on

    none

    Used by

    none

    From Mathlib

    Discussion

    Ask a question or add context. Endorsements and structured flags are kept in the review panel above.

    Loading discussion…