logo

blog

My little blog can’t be this cute! git clone https://hacktivis.me/git/blog.git
commit: 73e4ebab050902da702ac51c8766b8a5b264a69d
parent a8082c2786c9dc69200f928ee3f3fb3e3d800598
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Fri,  4 Oct 2019 02:06:42 +0200

notes/tuple_truth_table.txt: New note

Diffstat:

Anotes/tuple_truth_table.txt22++++++++++++++++++++++
1 file changed, 22 insertions(+), 0 deletions(-)

diff --git a/notes/tuple_truth_table.txt b/notes/tuple_truth_table.txt @@ -0,0 +1,22 @@ + 0 0 0 0 ⤫ false + 0 0 0 1 ⤭ AND + 0 0 1 0 ⤫ https://en.wikipedia.org/wiki/Material_nonimplication + 0 0 1 1 ⤫ p + 0 1 0 0 ⤫ https://en.wikipedia.org/wiki/Converse_nonimplication + 0 1 0 1 ⤫ q + 0 1 1 0 ⤭ XOR, != + 0 1 1 1 ⤭ OR + 1 0 0 0 ⤭ NOR + 1 0 0 1 ⤭ XNOR, == + 1 0 1 0 ⤫ !q + 1 0 1 1 ⤫ https://en.wikipedia.org/wiki/Converse_implication + 1 1 0 0 ⤫ !p + 1 1 0 1 ⤫ https://en.wikipedia.org/wiki/Material_conditional + 1 1 1 0 ⤭ NAND + 1 1 1 1 ⤭ true +0,0 0,1 1,0 1,1 (p,q) + +⤫ : non-commutative +⤭ : commutative + +Note: Based on https://en.wikipedia.org/wiki/Truth_table#Binary_operations BUT with reordering the rows of the first table for our sort order