-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prove that the initial frame Ω
is a spectral frame and define its patch
#173
Conversation
@martinescardo This is currently a draft PR but I’m in the process of finalising it. Should be ready to review soon. |
Note to self: before proceeding further with this, it‘s probably a good idea to address Issue #168. |
→ closed-under-binary-meets F ℬ holds | ||
→ let | ||
ℬ↑ = directify F ℬ | ||
β↑ = directified-basis-is-basis F ℬ β |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not used!
source/Locales/Sierpinski.lagda
Outdated
(((P (𝟙 {𝓤} , (λ { ⋆ → ⋆ }) , 𝟙-is-prop)) holds) , λ _ → ₁) , {!!} | ||
|
||
ℬ𝕊-is-directed-basis : is-directed-basis (𝒪 𝕊) ℬ𝕊 | ||
ℬ𝕊-is-directed-basis = {!!} , {!!} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incomplete code.
source/Locales/Sierpinski.lagda
Outdated
(((P (𝟙 {𝓤} , (λ { ⋆ → ⋆ }) , 𝟙-is-prop)) holds) , λ _ → ₁) , {!!} | ||
|
||
ℬ𝕊-is-directed-basis : is-directed-basis (𝒪 𝕊) ℬ𝕊 | ||
ℬ𝕊-is-directed-basis = {!!} , {!!} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incomplete code.
source/Locales/Sierpinski.lagda
Outdated
𝕊-spectralᴰ = ℬ𝕊 , ℬ𝕊-is-directed-basis , {!!} , {!!} | ||
|
||
𝕊-is-spectral : is-spectral (𝒪 𝕊) holds | ||
𝕊-is-spectral = {!!} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incomplete code.
This PR adds a proof that the initial frame
Ω
is spectral. This is actually quite easy to prove, except there is a technical problem with showing that the basis is closed under binary meets.Because our definition of spectral locale requires the covering families to be directed, the basis has to be closed under finite joins to ensure that this condition is met. When we do this, however, we end up in a situation where$(x_1 \vee \cdots \vee x_m) \wedge (y_1 \vee \cdots \vee y_n)$ has to be shown to be in the basis, given that each $x_i$ and $y_j$ are basic. This requires a CNF transformation argument that is quite tedious.
One might say that this is a good reason to take out the directedness condition from the definition of spectrality, which I have tried doing in the past. In my experience though, things go much more smoothly if this condition is baked into the definition.