Created
September 30, 2017 02:42
-
-
Save beckyconning/4ab5e10e8f04fc2773761525abf5406a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
let P = {{1,2,3}, {2,3} {2,4}} | |
m is a maximal element of if ∀ s. s ∈ S ⇒ m ≤ s implies m = s | |
(P, ≤): | |
S¹ S² S³ | |
S¹ 1 0 0 🤷 ∀x(x ∈ {(S¹, S¹)} → fst x = snd x) = {(S¹, S¹)} ∴ S¹ is a maximal element of P | |
S² 1 1 0 🤷 ∀x(x ∈ {(S², S¹), (S², S²)} → fst x = snd x) ≠ {(S², S¹), (S², S²)} ∴ S¹ is NOT a maximal element of P | |
S³ 0 0 1 🤷 ∀x(x ∈ {(S¹, S¹)} → fst x = snd x) = {(S¹, S¹)} ∴ S¹ is a maximal element of P | |
m is a minimal element of if ∀ s. s ∈ S ⇒ m ≥ s implies m = s | |
(P, ≥): | |
S¹ S² S³ | |
S¹ 1 1 0 🤷 {(S¹, S¹), (S¹, S²)} | |
S² 0 1 0 🤷 ∀x(x ∈ {(S², S²)} → fst x = snd x) = {(S², S²)} ∴ S² is a minimal element of P | |
S³ 0 0 1 🤷 ∀x(x ∈ {(S³, S³)} → fst x = snd x) = {(S³, S³)} ∴ S³ is a minimal element of P |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment