Nor
Revision as of 14:36, 14 July 2020 by Adám Brudzewsky (talk | contribs) (Text replacement - "http://help.dyalog.com" to "https://help.dyalog.com")
Nor (⍱
) is a dyadic scalar boolean function which tests if neither argument is true: it returns 1 if both are 0 and 0 if at least one is 1. It represents Peirce's arrow or joint denial in Boolean logic. Nor is the boolean negation ~
of the Or function ∨
, and so its glyph is composed from those. However, fonts vary in how they compose them; some overlaying the glyphs (∨̴), and some stacking them (∨̃).
⍱ |
0 |
1
|
---|---|---|
0
|
1 |
0
|
1
|
0 |
0
|
Examples
The following shows all possible combinations of inputs as a Boolean function.
0 0 1 1 ⍱ 0 1 0 1 1 0 0 0