Skip to content

Commit 286b90f

Browse files
DavidLedvinkaDavid Ledvinka
andcommitted
feat(Order): Add eventually_finset_ball (leanprover-community#36183)
Co-authored-by: David Ledvinka <dledvinka.ledvinka@mail.utoronto.ca>
1 parent 9e7dfb2 commit 286b90f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Mathlib/Order/Filter/CountableInter.lean

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ theorem eventually_countable_ball {ι : Type*} {S : Set ι} (hS : S.Countable)
6969
simpa only [Filter.Eventually, setOf_forall] using
7070
@countable_bInter_mem _ l _ _ _ hS fun i hi => { x | p x i hi }
7171

72+
theorem eventually_finset_ball {ι : Type*} {S : Finset ι} {p : α → ∀ i ∈ S, Prop} :
73+
(∀ᶠ x in l, ∀ i hi, p x i hi) ↔ ∀ i hi, ∀ᶠ x in l, p x i hi :=
74+
eventually_countable_ball S.countable_toSet
75+
7276
namespace Filter
7377

7478
theorem EventuallyLE.countable_iUnion [Countable ι] {s t : ι → Set α} (h : ∀ i, s i ≤ᶠ[l] t i) :

0 commit comments

Comments
 (0)