MIN (Ternary Gate): Difference between revisions

From TernaryWiki
Jump to navigationJump to search
Created page with "<big><b>Minimum</b></big> == Uses == Do not know if this gate is actually useful for anything yet. == Truth Tables == === MIN === thumb|alt=Min Gate Symbol|Min Gate Symbol <div class="tt"> <table class="tt"> <tr> <td class="tt_br tt_bb" colspan="2" rowspan="2">MIN</td> <td colspan="3" class="tce"><b>B</b></td> </tr> <tr> <td class="tt_r tt_bb">-</td> <td class="tt_g tt_bb">0</td> <td class="tt_b tt_bb">+</td> </tr> <tr>..."
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:


== Uses ==
== Uses ==
This is a ternary AND gate. It returns the smallest input.


Do not know if this gate is actually useful for anything yet.
Do not know if this gate is actually useful for anything yet.
Line 7: Line 8:
== Truth Tables ==
== Truth Tables ==
=== MIN ===
=== MIN ===
[[File:MIN_GATE.png|thumb|alt=Min Gate Symbol|Min Gate Symbol]]
 
<div class="tt">
<div class="tt">
<table class="tt">
<table class="tt">
Line 187: Line 188:
</table>
</table>
</div>
</div>
==References==
* [https://homepage.cs.uiowa.edu/~dwjones/ternary/ The Ternary Manifesto by Douglas W. Jones]


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

Latest revision as of 10:15, 12 May 2025

Minimum

Uses

This is a ternary AND gate. It returns the smallest input.

Do not know if this gate is actually useful for anything yet.

Truth Tables

MIN

MIN B
- 0 +
A - - - -
0 - 0 0
+ - 0 +
MIN
A B Y
- - -
- 0 -
- + -
0 - -
0 0 0
0 + 0
+ - -
+ 0 0
+ + +

NMIN

NMIN B
- 0 +
A - + + +
0 + 0 0
+ + 0 -
NMIN
A B Y
- - +
- 0 +
- + +
0 - +
0 0 0
0 + 0
+ - +
+ 0 0
+ + -

References