FACTOID # 131: United we stand? The United Kingdom and United States are both in the top ten for Gross Domestic Product - and for child poverty.
 
 Home   Encyclopedia   Statistics   Countries A-Z   Flags   Maps   Education   Forum   FAQ   About 
 
WHAT'S NEW
RECENT ARTICLES
More Recent Articles »
 

SEARCH ALL

FACTS & STATISTICS    Advanced view

Search encyclopedia, statistics and forums:

 

 

(* = Graphable)

 

 


Encyclopedia > Logical nand
 This page has been temporarily protected from editing to deal with vandalism. Please discuss changes on the talk page or request unprotection.

The Sheffer stroke, |, is the negation of the conjunction operator. It is also called alternative denial, and in Boolean algebra and digital circuitry, it is known as the NAND ("Not And") operation. It alone suffices to express all of Boolean algebra or sentential logic. It is named for Henry M. Sheffer, who proved (Sheffer 1913) that all the usual operators of the propositional calculus (not, and, or, implies), etc. could be expressed in terms of it. Charles Peirce (1880) had discovered this fact more than 30 years earlier, but never published his finding. Peirce also observed that all Boolean operators could be defined in terms of the NOR operator, the dual of NAND. Subject: Lock Source: Graphic created by Cantus. ... Image File history File links NAND Logic Gate File history Legend: (cur) = this is the current file, (del) = delete this old version, (rev) = revert to this old version. ... Image File history File links NAND Logic Gate File history Legend: (cur) = this is the current file, (del) = delete this old version, (rev) = revert to this old version. ... A logic gate is an arrangement of controlled switches used to calculate operations using Boolean logic in digital circuits. ... This article needs to be cleaned up to conform to a higher standard of quality. ... Wikibooks has more about Boolean logic, under the title Boolean Algebra For a basic intro to sets, Boolean operations, Venn diagrams, truth tables, and Boolean applications, see Boolean logic. ... Digital circuits are electric circuits based on a number of discrete voltage levels. ... Henry Maurice Sheffer was a British logician who proved in 1913 that all the usual operators of logical calculus (not, and, or, implies) could be defined using a single connective, the Sheffer stroke. ... In mathematical logic the propositional calculus or sentential calculus is a formal deduction system whose atomic formulas are propositional variables. ... This article needs to be cleaned up to conform to a higher standard of quality. ... AND Logic Gate In mathematics, logical conjunction (usual symbol and) is a logical operator that results in false if either of the operands is false. ... OR logic gate In mathematics, logical disjunction (usual symbol or) is a logical operator that results in true if either of the operands is true. ... In propositional calculus, or logical calculus in mathematics, the logical conditional is a binary logical operator connecting two statements, if p then q where p is a hypothesis (or antecedent) and q is a conclusion (or consequent). ... Charles Sanders Santiago Peirce (pronounced purse), (September 10, 1839, Cambridge MA – April 19, 1914, Milford PA) was an American polymath. ... NOR Logic Gate Logical nor (not or), joint denial, or Webb-operation is a boolean logic operator which produces a result that is the inverse of logical or. ...

Contents


NAND

A common means of writing p NAND q is , where the symbol signifies AND and the line over the expression signifies not, the logical negation of that expression.


The two-input logical NAND operator is commonly described by a truth table, describing the output state for all possible input combinations: Truth tables are a type of mathematical table used in logic to determine whether an expression is true or whether an argument is valid. ...

A B A NAND B
F F T
F T T
T F T
T T F

Expressed in terms of NAND, the usual operators of propositional calculus are:

"not p" is equivalent to "p NAND p"
"p and q" is equivalent to "(p NAND q) NAND (p NAND q)"
"p or q" is equivalent to "(p NAND p) NAND (q NAND q)"
"p implies q" is equivalent to "(p NAND q) NAND p"

This leads to an alternative axiom system for Boolean algebras, requiring but one operation. Wikibooks has more about Boolean logic, under the title Boolean Algebra For a basic intro to sets, Boolean operations, Venn diagrams, truth tables, and Boolean applications, see Boolean logic. ...

NAND Full Adder
NAND Full Adder

Digital systems employing certain logic circuits take advantage of this property. In complicated logical expressions, normally written in terms of other logic functions such as AND, OR, and NOT, writing these in terms of NAND saves on cost, because implementing such circuits using NAND gate yields a more compact result than the alternatives. Image File history File links NandFullAdder. ... Image File history File links NandFullAdder. ... AND Logic Gate In mathematics, logical conjunction (usual symbol and) is a logical operator that results in false if either of the operands is false. ... OR logic gate In mathematics, logical disjunction (usual symbol or) is a logical operator that results in true if either of the operands is true. ... This article needs to be cleaned up to conform to a higher standard of quality. ...


The dual of NAND, the operator NOR, also suffices to express all Boolean operations.


Sheffer stroke

The Sheffer stroke | is equivalent to the negation of conjunction:

The following truth table semantically defines |:

| F T
F T T
T T F

The other logical operators can be defined in terms of '|', like so:

Formal system based on the Sheffer stroke

The following is an example of a formal system based entirely on the Sheffer stroke, yet having the functional expressiveness of the propositional calculus: In mathematical logic the propositional calculus or sentential calculus is a formal deduction system whose atomic formulas are propositional variables. ...


1. Symbols

A B C D E F G '
( | )


The Sheffer stroke commutes but does not associate. Hence any formal system including the Sheffer stroke must also include a means of indicating grouping. We shall employ '(' and ')' to this effect.


2. Grammar

The letters A, B, C, D, E, F and G are atoms.
Any of these letters primed once or several times is also an atom (e.g. A', B′′, C′′′, D′′′′ are atoms).


Construction Rule I: An atom is a well-formed formula (wff).


Construction Rule II: If X and Y are wffs, then (X|Y) is a wff.


Closure Rule: Any formulae which cannot be constructed by means of the first two Construction Rules is not a wff.


The letters U, V, X, and Y are metavariables standing for wffs.


A decision procedure for determining whether a formula is well-formed goes as follows: "deconstruct" the formula by applying the Construction Rules backwards, thereby breaking the formula into smaller subformulae. Then repeat this recursive deconstruction process to each of the subformulae. Eventually the formula should be reduced to its atoms, but if some subformula cannot be so reduced, then the formula is not a wff.


3. Axiom

The following wffs are axiom schemata, which become axioms upon replacing all metavariables with wffs.


THEN-1: (U|(U|(V|(U|U)))) In mathematical logic Freges propositional calculus was the first axiomatization of propositional calculus. ...


4. Inference rules

Substitution of equivalents. Let the wff X contain one more instances of the subformula U. If U=V, then replacing one ore more instances of U in X by V does not alter the truth value of X. In particular, if X=Y is a theorem, this remains the case after any substitution of V for U.


Commutativity: (X|Y) = (Y|X)


Duality: If strings of the forms X and (X|X) both show up in a theorem, then if these two strings are swapped wherever they appear in the theorem, then the result will also be a theorem.


Double Negation: ((X|X)|(X|X)) = X


Mimesis: (U|(X|X)) = (U|(U|X))


THEN-3: (U|(U|(V|(V|X)))) = (V|(V|(U|(U|X)))) In mathematical logic Freges propositional calculus was the first axiomatization of propositional calculus. ...


MP-1: U, (U|(V|X)) |- V


MP-2: U, (U|(V|X)) |- X


Note. The formula (U|(V|X)) has the interpretation U→V∧X. Modus ponens is the special case of MP-1 and MP-2 when V and X are identical. In Logic, Modus ponens (Latin: mode that affirms) is a valid, simple argument form (often abbreviated to MP): If P, then Q. P. Therefore, Q. or in logical operator notation: P → Q P ⊢ Q where ⊢ represents the logical assertion. ...


Simplification

Since the only connective of this logic is |, the symbol | could be discarded altogether, leaving only the parentheses to group the letters. A pair of parentheses must always enclose a pair of wffs. Examples of theorems in this simplified notation are

(A(A(B(B((AB)(AB)))))),
(A(A((BB)(AA)))).

The resemblance to the syntax of LISP is evident. Lisp may mean: Lisp programming language Lisp (speech) This is a disambiguation page, a list of pages that otherwise might share the same title. ...


The notation can be simplified further, by letting

(U) := (UU)
((U)) U

for any U. This simplification causes the need to change some rules: (1) more than two letters are allowed within parentheses, (2) letters or wffs within parentheses are allowed to commute, (3) repeated letters or wffs within a same set of parentheses can be eliminated. The result is a parenthetical version of the Peirce existential graphs. An existential graph is a type of diagrammatic or visual notation for logical expressions, invented by Charles Peirce. ...


Reference

  • Charles Peirce, 1880. 'A Boolean Algebra with One Constant'. In Hartshorne, C, and Weiss, P., eds., (1931-35) Collected Papers of Charles Sanders Peirce, Vol. 4: 12-20. Harvard University Press.
  • H. M. Sheffer, 1913. "A set of five independent postulates for Boolean algebras, with application to logical constants," Transactions of the American Mathematical Society 14: 481-488.

Charles Sanders Santiago Peirce (pronounced purse), (September 10, 1839, Cambridge MA – April 19, 1914, Milford PA) was an American polymath. ...

See also


  Results from FactBites:
 
GetWiki | Logical NAND (993 words)
Logical NAND, for Not And, sometimes denoted by a symbol "" or "↑" called the Sheffer stroke, is a logical operation that is equivalent to the negation of the conjunction operation, expressed in ordinary language as "not both".
The NAND operation is a logical operation on two logical values, typically the values of two propositions, that produces a value of false if and only if both of its operands are true.
NAND is not used in everyday sentences because it exhibits an inherent inversion, which makes it confusing like a double negative.
Logical conjunction Summary (2184 words)
In logic and mathematics, logical conjunction (usual symbol and) is a two-place logical operation that results in a value of true if both of its operands are true, otherwise a value of false.
Logical conjunction is an operation on two logical values, typically the values of two propositions, that produces a value of true if and only if both of its operands are true.
Logically, the sentence "it's raining, but the sun is shining" is equivalent to "it's raining, and the sun is shining", so logically, "but" is equivalent to "and".
  More results at FactBites »


 

COMMENTARY     


Share your thoughts, questions and commentary here
Your name
Your comments
Please enter the 5-letter protection code

Want to know more?
Search encyclopedia, statistics and forums:

 


Lesson Plans | Student Area | Student FAQ | Reviews | Press Releases |  Feeds | Contact
The Wikipedia article included on this page is licensed under the GFDL.
Images may be subject to relevant owners' copyright.
All other elements are (c) copyright NationMaster.com 2003-5. All Rights Reserved.
Usage implies agreement with terms.