Module docstring
{"# Constructing finite sets by adding one element
This file contains the definitions of {a} : Finset α, insert a s : Finset α and Finset.cons,
all ways to construct a Finset by adding one element.
Main declarations
Finset.induction_on: Induction on finsets. To prove a proposition about an arbitraryFinset α, it suffices to prove it for the empty finset, and to show that if it holds for someFinset α, then it holds for the finset obtained by inserting a new element.Finset.instSingletonFinset: Denoted by{a}; the finset consisting of one element.insertandFinset.cons: For anya : α,insert s areturnss ∪ {a}.cons s a hreturns the same except that it requires a hypothesis stating thatais not already ins. This does not require decidable equality on the typeα.
Tags
finite sets, finset
","### Subset and strict subset relations ","### singleton ","### cons ","### insert "}