Skip to content

Commit

Permalink
feat(Set): Add Set.Finite.powerset (#14175)
Browse files Browse the repository at this point in the history
  • Loading branch information
SnO2WMaN committed Jun 26, 2024
1 parent 521c729 commit 270043b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Mathlib/Data/Set/Finite.lean
Original file line number Diff line number Diff line change
Expand Up @@ -1035,6 +1035,9 @@ theorem Finite.finite_subsets {α : Type u} {a : Set α} (h : a.Finite) : { b |
← and_assoc, Finset.coeEmb] using h.subset
#align set.finite.finite_subsets Set.Finite.finite_subsets

protected theorem Finite.powerset {s : Set α} (h : s.Finite) : (𝒫 s).Finite :=
h.finite_subsets

section Pi
variable {ι : Type*} [Finite ι] {κ : ι → Type*} {t : ∀ i, Set (κ i)}

Expand Down

0 comments on commit 270043b

Please sign in to comment.