Skip to content

Commit

Permalink
feat(group_theory/subgroup): add closure_eq_bot_iff (#5055)
Browse files Browse the repository at this point in the history
Add missing lemma
  • Loading branch information
kbuzzard committed Nov 21, 2020
1 parent cff497f commit aff4669
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/group_theory/subgroup.lean
Expand Up @@ -560,6 +560,11 @@ lemma closure_union (s t : set G) : closure (s ∪ t) = closure s ⊔ closure t
lemma closure_Union {ι} (s : ι → set G) : closure (⋃ i, s i) = ⨆ i, closure (s i) :=
(subgroup.gi G).gc.l_supr

@[to_additive]
lemma closure_eq_bot_iff (G : Type*) [group G] (S : set G) :
closure S = ⊥ ↔ S ⊆ {1} :=
by { rw [← le_bot_iff], exact closure_le _}

/-- The subgroup generated by an element of a group equals the set of integer number powers of
the element. -/
lemma mem_closure_singleton {x y : G} : y ∈ closure ({x} : set G) ↔ ∃ n : ℤ, x ^ n = y :=
Expand Down

0 comments on commit aff4669

Please sign in to comment.