-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sky Wilshaw <[email protected]>
- Loading branch information
1 parent
d9f28df
commit 6dd8406
Showing
3 changed files
with
103 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import ConNF.External.Basic | ||
|
||
/-! | ||
# New file | ||
In this file... | ||
## Main declarations | ||
* `ConNF.foo`: Something new. | ||
-/ | ||
|
||
noncomputable section | ||
universe u | ||
|
||
open Cardinal Ordinal ConNF.TSet | ||
|
||
namespace ConNF | ||
|
||
variable [Params.{u}] {α β γ δ ε ζ : Λ} (hβ : (β : TypeIndex) < α) (hγ : (γ : TypeIndex) < β) | ||
(hδ : (δ : TypeIndex) < γ) (hε : (ε : TypeIndex) < δ) (hζ : (ζ : TypeIndex) < ε) | ||
|
||
/-- The set `{z ∪ {a} | z ∈ x}`. -/ | ||
def insert (x : TSet α) : TSet α := | ||
sorry | ||
|
||
def cardinalNat (n : ℕ) : TSet α := | ||
(TSet.exists_cardinalOne hβ hγ).choose | ||
|
||
@[simp] | ||
theorem mem_cardinalNat_iff (n : ℕ) : | ||
∀ a : TSet β, a ∈' cardinalNat hβ hγ n ↔ | ||
∃ s : Finset (TSet γ), s.card = n ∧ ∀ b : TSet γ, b ∈' a ↔ b ∈ s := | ||
sorry | ||
|
||
end ConNF |