mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-10 02:24:05 +09:00
more on the verum-nimply logic
This commit is contained in:
@@ -10,7 +10,7 @@ Verum is a logic-gate modelling of the "Signal Source".
|
|||||||
| 1 |
|
| 1 |
|
||||||
|
|
||||||
### Falsum (⊥)
|
### Falsum (⊥)
|
||||||
Verum is a logic-gate modelling of the "Lack of Signal" or "No Connection".
|
Falsum is a logic-gate modelling of the "Lack of Signal" or "No Connection".
|
||||||
| Output |
|
| Output |
|
||||||
|----|
|
|----|
|
||||||
| 0 |
|
| 0 |
|
||||||
@@ -47,8 +47,13 @@ This document will use the convention where the Collector is placed on the lefth
|
|||||||
= (⊤ ↛ (p ↛ (⊤ ↛ q)))
|
= (⊤ ↛ (p ↛ (⊤ ↛ q)))
|
||||||
|
|
||||||
### p OR q
|
### p OR q
|
||||||
= NOT ( NOT(p) AND NOT(q) )
|
Method 1:
|
||||||
= NOT ( (⊤ ↛ p) AND (⊤ ↛ q) )
|
= NOT (NOT(p) AND NOT(q))
|
||||||
= NOT ( ( (⊤ ↛ p) ↛ (⊤ ↛ (⊤ ↛ p)) ) )
|
= NOT ((⊤ ↛ p) AND (⊤ ↛ q))
|
||||||
= (⊤ ↛ ( ( (⊤ ↛ p) ↛ (⊤ ↛ (⊤ ↛ p)) ) ))
|
= NOT ((⊤ ↛ p) ↛ (⊤ ↛ (⊤ ↛ q)))
|
||||||
|
= (⊤ ↛ ((⊤ ↛ p) ↛ (⊤ ↛ (⊤ ↛ q))))
|
||||||
|
Method 2:
|
||||||
|
= (NOT p) NAND (NOT q)
|
||||||
|
= (⊤ ↛ ((NOT p) ↛ (⊤ ↛ (NOT p))))
|
||||||
|
= (⊤ ↛ ((⊤ ↛ p) ↛ (⊤ ↛ (⊤ ↛ q))))
|
||||||
Note: For the most cases, an OR gate can be substituted using merging wires and diodes.
|
Note: For the most cases, an OR gate can be substituted using merging wires and diodes.
|
||||||
|
|||||||
Reference in New Issue
Block a user