Nor: Difference between revisions

Jump to navigation Jump to search
108 bytes added ,  22:15, 10 September 2022
m
Text replacement - "</source>" to "</syntaxhighlight>"
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 1: Line 1:
{{Built-in|Nor|⍱}} is a [[dyadic]] [[scalar function|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 [[wikipedia:logical NOR|joint denial]] in Boolean logic. Nor is the [[not|boolean negation]] <syntaxhighlight lang=apl inline>~</source> of the [[Or]] function <syntaxhighlight lang=apl inline>∨</source>, and so its [[glyph]] is composed from those. However, [[fonts]] vary in how they compose them; some overlaying the glyphs (∨&#x334;), and some stacking them (∨&#x303;).
{{Built-in|Nor|⍱}} is a [[dyadic]] [[scalar function|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 [[wikipedia:logical NOR|joint denial]] in Boolean logic. Nor is the [[not|boolean negation]] <syntaxhighlight lang=apl inline>~</syntaxhighlight> of the [[Or]] function <syntaxhighlight lang=apl inline>∨</syntaxhighlight>, and so its [[glyph]] is composed from those. However, [[fonts]] vary in how they compose them; some overlaying the glyphs (∨&#x334;), and some stacking them (∨&#x303;).


{|class=wikitable
{|class=wikitable
!<syntaxhighlight lang=apl inline>⍱</source>!!<syntaxhighlight lang=apl inline>0</source>!!<syntaxhighlight lang=apl inline>1</source>
!<syntaxhighlight lang=apl inline>⍱</syntaxhighlight>!!<syntaxhighlight lang=apl inline>0</syntaxhighlight>!!<syntaxhighlight lang=apl inline>1</syntaxhighlight>
|-
|-
!<syntaxhighlight lang=apl inline>0</source>
!<syntaxhighlight lang=apl inline>0</syntaxhighlight>
|<syntaxhighlight lang=apl inline>1</source>||<syntaxhighlight lang=apl inline>0</source>
|<syntaxhighlight lang=apl inline>1</syntaxhighlight>||<syntaxhighlight lang=apl inline>0</syntaxhighlight>
|-
|-
!<syntaxhighlight lang=apl inline>1</source>
!<syntaxhighlight lang=apl inline>1</syntaxhighlight>
|<syntaxhighlight lang=apl inline>0</source>||<syntaxhighlight lang=apl inline>0</source>
|<syntaxhighlight lang=apl inline>0</syntaxhighlight>||<syntaxhighlight lang=apl inline>0</syntaxhighlight>
|}
|}


Line 18: Line 18:
       0 0 1 1 ⍱ 0 1 0 1
       0 0 1 1 ⍱ 0 1 0 1
1 0 0 0
1 0 0 0
</source>
</syntaxhighlight>


== External links ==
== External links ==

Navigation menu