CON (Ternary Gate): Difference between revisions

From TernaryWiki
Jump to navigationJump to search
No edit summary
No edit summary
 
Line 191: Line 191:


==References==
==References==
* [https://homepage.cs.uiowa.edu/~dwjones/ternary/ The Ternary Manifesto by Douglas W. Jones]
* [https://homepage.cs.uiowa.edu/~dwjones/ternary/logic.shtml The Ternary Manifesto by Douglas W. Jones - Standard Ternary Logic]


[[Category:Ternary]]
[[Category:Ternary]]
[[Category:Logic_Gates]]
[[Category:Logic_Gates]]

Latest revision as of 10:54, 4 August 2025

Consensus

Uses

CON gate is the ternary equivalent to the Binary AND.

The Negated form NCON is a universal gate just like Binary NAND. Every other logic gate can be made with the correct pattern of NCON gates.

Truth Tables

CON

CON B
- 0 +
A - - 0 0
0 0 0 0
+ 0 0 +
CON
A B Y
- - -
- 0 0
- + 0
0 - 0
0 0 0
0 + 0
+ - 0
+ 0 0
+ + +

NCON

NCON B
- 0 +
A - + 0 0
0 0 0 0
+ 0 0 -
NCON
A B Y
- - +
- 0 0
- + 0
0 - 0
0 0 0
0 + 0
+ - 0
+ 0 0
+ + -

References