fbpx
Wikipedia

Negation

In logic, negation, also called the logical not or logical complement, is an operation that takes a proposition to another proposition "not ", standing for " is not true", written , or . It is interpreted intuitively as being true when is false, and false when is true.[1][2] Negation is thus a unary logical connective. It may be applied as an operation on notions, propositions, truth values, or semantic values more generally. In classical logic, negation is normally identified with the truth function that takes truth to falsity (and vice versa). In intuitionistic logic, according to the Brouwer–Heyting–Kolmogorov interpretation, the negation of a proposition is the proposition whose proofs are the refutations of .

Negation
NOT
Definition
Truth table
Logic gate
Normal forms
Disjunctive
Conjunctive
Zhegalkin polynomial
Post's lattices
0-preservingno
1-preservingno
Monotoneno
Affineyes

Definition edit

Classical negation is an operation on one logical value, typically the value of a proposition, that produces a value of true when its operand is false, and a value of false when its operand is true. Thus if statement   is true, then   (pronounced "not P") would then be false; and conversely, if   is true, then   would be false.

The truth table of   is as follows:

   
True False
False True

Negation can be defined in terms of other logical operations. For example,   can be defined as   (where   is logical consequence and   is absolute falsehood). Conversely, one can define   as   for any proposition Q (where   is logical conjunction). The idea here is that any contradiction is false, and while these ideas work in both classical and intuitionistic logic, they do not work in paraconsistent logic, where contradictions are not necessarily false. In classical logic, we also get a further identity,   can be defined as  , where   is logical disjunction.

Algebraically, classical negation corresponds to complementation in a Boolean algebra, and intuitionistic negation to pseudocomplementation in a Heyting algebra. These algebras provide a semantics for classical and intuitionistic logic.

Notation edit

The negation of a proposition p is notated in different ways, in various contexts of discussion and fields of application. The following table documents some of these variants:

Notation Plain text Vocalization
  ¬p , 7p[3] Not p
  ~p Not p
  -p Not p
  En p
  p'
  • p prime,
  • p complement
  ̅p
  • p bar,
  • Bar p
  !p
  • Bang p
  • Not p

The notation   is Polish notation.

In set theory,   is also used to indicate 'not in the set of':   is the set of all members of U that are not members of A.

Regardless how it is notated or symbolized, the negation   can be read as "it is not the case that P", "not that P", or usually more simply as "not P".

Precedence edit

As a way of reducing the number of necessary parentheses, one may introduce precedence rules: ¬ has higher precedence than ∧, ∧ higher than ∨, and ∨ higher than →. So for example,   is short for  

Here is a table that shows a commonly used precedence of logical operators.[4]

Operator Precedence
  1
  2
  3
  4
  5

Properties edit

Double negation edit

Within a system of classical logic, double negation, that is, the negation of the negation of a proposition  , is logically equivalent to  . Expressed in symbolic terms,  . In intuitionistic logic, a proposition implies its double negation, but not conversely. This marks one important difference between classical and intuitionistic negation. Algebraically, classical negation is called an involution of period two.

However, in intuitionistic logic, the weaker equivalence   does hold. This is because in intuitionistic logic,   is just a shorthand for  , and we also have  . Composing that last implication with triple negation   implies that   .

As a result, in the propositional case, a sentence is classically provable if its double negation is intuitionistically provable. This result is known as Glivenko's theorem.

Distributivity edit

De Morgan's laws provide a way of distributing negation over disjunction and conjunction:

 ,  and
 .

Linearity edit

Let   denote the logical xor operation. In Boolean algebra, a linear function is one such that:

If there exists  ,  , for all  .

Another way to express this is that each variable always makes a difference in the truth-value of the operation, or it never makes a difference. Negation is a linear logical operator.

Self dual edit

In Boolean algebra, a self dual function is a function such that:

  for all  . Negation is a self dual logical operator.

Negations of quantifiers edit

In first-order logic, there are two quantifiers, one is the universal quantifier   (means "for all") and the other is the existential quantifier   (means "there exists"). The negation of one quantifier is the other quantifier (  and  ). For example, with the predicate P as "x is mortal" and the domain of x as the collection of all humans,   means "a person x in all humans is mortal" or "all humans are mortal". The negation of it is  , meaning "there exists a person x in all humans who is not mortal", or "there exists someone who lives forever".

Rules of inference edit

There are a number of equivalent ways to formulate rules for negation. One usual way to formulate classical negation in a natural deduction setting is to take as primitive rules of inference negation introduction (from a derivation of   to both   and  , infer  ; this rule also being called reductio ad absurdum), negation elimination (from   and   infer  ; this rule also being called ex falso quodlibet), and double negation elimination (from   infer  ). One obtains the rules for intuitionistic negation the same way but by excluding double negation elimination.

Negation introduction states that if an absurdity can be drawn as conclusion from   then   must not be the case (i.e.   is false (classically) or refutable (intuitionistically) or etc.). Negation elimination states that anything follows from an absurdity. Sometimes negation elimination is formulated using a primitive absurdity sign  . In this case the rule says that from   and   follows an absurdity. Together with double negation elimination one may infer our originally formulated rule, namely that anything follows from an absurdity.

Typically the intuitionistic negation   of   is defined as  . Then negation introduction and elimination are just special cases of implication introduction (conditional proof) and elimination (modus ponens). In this case one must also add as a primitive rule ex falso quodlibet.

Programming language and ordinary language edit

As in mathematics, negation is used in computer science to construct logical statements.

if (!(r == t)) {  /*...statements executed when r does NOT equal t...*/ } 

The exclamation mark "!" signifies logical NOT in B, C, and languages with a C-inspired syntax such as C++, Java, JavaScript, Perl, and PHP. "NOT" is the operator used in ALGOL 60, BASIC, and languages with an ALGOL- or BASIC-inspired syntax such as Pascal, Ada, Eiffel and Seed7. Some languages (C++, Perl, etc.) provide more than one operator for negation. A few languages like PL/I and Ratfor use ¬ for negation. Most modern languages allow the above statement to be shortened from if (!(r == t)) to if (r != t), which allows sometimes, when the compiler/interpreter is not able to optimize it, faster programs.

In computer science there is also bitwise negation. This takes the value given and switches all the binary 1s to 0s and 0s to 1s. See bitwise operation. This is often used to create ones' complement or "~" in C or C++ and two's complement (just simplified to "-" or the negative sign since this is equivalent to taking the arithmetic negative value of the number) as it basically creates the opposite (negative value equivalent) or mathematical complement of the value (where both values are added together they create a whole).

To get the absolute (positive equivalent) value of a given integer the following would work as the "-" changes it from negative to positive (it is negative because "x < 0" yields true)

unsigned int abs(int x) {  if (x < 0)  return -x;  else  return x; } 

To demonstrate logical negation:

unsigned int abs(int x) {  if (!(x < 0))  return x;  else  return -x; } 

Inverting the condition and reversing the outcomes produces code that is logically equivalent to the original code, i.e. will have identical results for any input (note that depending on the compiler used, the actual instructions performed by the computer may differ).

This convention occasionally surfaces in ordinary written speech, as computer-related slang for not. For example, the phrase !voting means "not voting". Another example is the phrase !clue which is used as a synonym for "no-clue" or "clueless".[5][6]

Kripke semantics edit

In Kripke semantics where the semantic values of formulae are sets of possible worlds, negation can be taken to mean set-theoretic complementation[citation needed] (see also possible world semantics for more).

See also edit

References edit

  1. ^ Weisstein, Eric W. "Negation". mathworld.wolfram.com. Retrieved 2 September 2020.
  2. ^ "Logic and Mathematical Statements - Worked Examples". www.math.toronto.edu. Retrieved 2 September 2020.
  3. ^ Used as makeshift in early typewriter publications, e.g. Richard E. Ladner (January 1975). "The circuit value problem is log space complete for P". ACM SIGACT News. 7 (101): 18–20. doi:10.1145/990518.990519.
  4. ^ O'Donnell, John; Hall, Cordelia; Page, Rex (2007), Discrete Mathematics Using a Computer, Springer, p. 120, ISBN 9781846285981.
  5. ^ Raymond, Eric and Steele, Guy. The New Hacker's Dictionary, p. 18 (MIT Press 1996).
  6. ^ Munat, Judith. Lexical Creativity, Texts and Context, p. 148 (John Benjamins Publishing, 2007).

Further reading edit

  • Gabbay, Dov, and Wansing, Heinrich, eds., 1999. What is Negation?, Kluwer.
  • Horn, L., 2001. A Natural History of Negation, University of Chicago Press.
  • G. H. von Wright, 1953–59, "On the Logic of Negation", Commentationes Physico-Mathematicae 22.
  • Wansing, Heinrich, 2001, "Negation", in Goble, Lou, ed., The Blackwell Guide to Philosophical Logic, Blackwell.
  • Tettamanti, Marco; Manenti, Rosa; Della Rosa, Pasquale A.; Falini, Andrea; Perani, Daniela; Cappa, Stefano F.; Moro, Andrea (2008). "Negation in the brain: Modulating action representation". NeuroImage. 43 (2): 358–367. doi:10.1016/j.neuroimage.2008.08.004. PMID 18771737. S2CID 17658822.

External links edit

Tables of Truth of composite clauses
  • "Table of truth for a NOT clause applied to an END sentence". from the original on 1 March 2000.
  • "NOT clause of an END sentence". from the original on 1 March 2000.
  • "NOT clause of an OR sentence". from the original on 17 January 2000.
  • "NOT clause of an IF...THEN period". from the original on 1 March 2000.

negation, negation, linguistics, affirmation, negation, other, uses, disambiguation, this, article, includes, list, general, references, lacks, sufficient, corresponding, inline, citations, please, help, improve, this, article, introducing, more, precise, cita. For negation in linguistics see Affirmation and negation For other uses see Negation disambiguation This article includes a list of general references but it lacks sufficient corresponding inline citations Please help to improve this article by introducing more precise citations March 2013 Learn how and when to remove this template message In logic negation also called the logical not or logical complement is an operation that takes a proposition P displaystyle P to another proposition not P displaystyle P standing for P displaystyle P is not true written P displaystyle neg P P displaystyle mathord sim P or P displaystyle overline P It is interpreted intuitively as being true when P displaystyle P is false and false when P displaystyle P is true 1 2 Negation is thus a unary logical connective It may be applied as an operation on notions propositions truth values or semantic values more generally In classical logic negation is normally identified with the truth function that takes truth to falsity and vice versa In intuitionistic logic according to the Brouwer Heyting Kolmogorov interpretation the negation of a proposition P displaystyle P is the proposition whose proofs are the refutations of P displaystyle P NegationNOTDefinition x displaystyle lnot x Truth table 10 displaystyle 10 Logic gateNormal formsDisjunctive x displaystyle lnot x Conjunctive x displaystyle lnot x Zhegalkin polynomial1 x displaystyle 1 oplus x Post s lattices0 preservingno1 preservingnoMonotonenoAffineyesvte Contents 1 Definition 2 Notation 2 1 Precedence 3 Properties 3 1 Double negation 3 2 Distributivity 3 3 Linearity 3 4 Self dual 3 5 Negations of quantifiers 4 Rules of inference 5 Programming language and ordinary language 6 Kripke semantics 7 See also 8 References 9 Further reading 10 External linksDefinition editClassical negation is an operation on one logical value typically the value of a proposition that produces a value of true when its operand is false and a value of false when its operand is true Thus if statement P displaystyle P nbsp is true then P displaystyle neg P nbsp pronounced not P would then be false and conversely if P displaystyle neg P nbsp is true then P displaystyle P nbsp would be false The truth table of P displaystyle neg P nbsp is as follows P displaystyle P nbsp P displaystyle neg P nbsp True FalseFalse TrueNegation can be defined in terms of other logical operations For example P displaystyle neg P nbsp can be defined as P displaystyle P rightarrow bot nbsp where displaystyle rightarrow nbsp is logical consequence and displaystyle bot nbsp is absolute falsehood Conversely one can define displaystyle bot nbsp as Q Q displaystyle Q land neg Q nbsp for any proposition Q where displaystyle land nbsp is logical conjunction The idea here is that any contradiction is false and while these ideas work in both classical and intuitionistic logic they do not work in paraconsistent logic where contradictions are not necessarily false In classical logic we also get a further identity P Q displaystyle P rightarrow Q nbsp can be defined as P Q displaystyle neg P lor Q nbsp where displaystyle lor nbsp is logical disjunction Algebraically classical negation corresponds to complementation in a Boolean algebra and intuitionistic negation to pseudocomplementation in a Heyting algebra These algebras provide a semantics for classical and intuitionistic logic Notation editThe negation of a proposition p is notated in different ways in various contexts of discussion and fields of application The following table documents some of these variants Notation Plain text Vocalization p displaystyle neg p nbsp p 7p 3 Not p p displaystyle mathord sim p nbsp p Not p p displaystyle p nbsp p Not pN p displaystyle Np nbsp En pp displaystyle p nbsp p p prime p complementp displaystyle overline p nbsp p p bar Bar p p displaystyle p nbsp p Bang pNot pThe notation N p displaystyle Np nbsp is Polish notation In set theory displaystyle setminus nbsp is also used to indicate not in the set of U A displaystyle U setminus A nbsp is the set of all members of U that are not members of A Regardless how it is notated or symbolized the negation P displaystyle neg P nbsp can be read as it is not the case that P not that P or usually more simply as not P Precedence edit See also Logical connective Order of precedence As a way of reducing the number of necessary parentheses one may introduce precedence rules has higher precedence than higher than and higher than So for example P Q R S displaystyle P vee Q wedge neg R rightarrow S nbsp is short for P Q R S displaystyle P vee Q wedge neg R rightarrow S nbsp Here is a table that shows a commonly used precedence of logical operators 4 Operator Precedence displaystyle neg nbsp 1 displaystyle land nbsp 2 displaystyle lor nbsp 3 displaystyle to nbsp 4 displaystyle leftrightarrow nbsp 5Properties editDouble negation edit Within a system of classical logic double negation that is the negation of the negation of a proposition P displaystyle P nbsp is logically equivalent to P displaystyle P nbsp Expressed in symbolic terms P P displaystyle neg neg P equiv P nbsp In intuitionistic logic a proposition implies its double negation but not conversely This marks one important difference between classical and intuitionistic negation Algebraically classical negation is called an involution of period two However in intuitionistic logic the weaker equivalence P P displaystyle neg neg neg P equiv neg P nbsp does hold This is because in intuitionistic logic P displaystyle neg P nbsp is just a shorthand for P displaystyle P rightarrow bot nbsp and we also have P P displaystyle P rightarrow neg neg P nbsp Composing that last implication with triple negation P displaystyle neg neg P rightarrow bot nbsp implies that P displaystyle P rightarrow bot nbsp As a result in the propositional case a sentence is classically provable if its double negation is intuitionistically provable This result is known as Glivenko s theorem Distributivity edit De Morgan s laws provide a way of distributing negation over disjunction and conjunction P Q P Q displaystyle neg P lor Q equiv neg P land neg Q nbsp and P Q P Q displaystyle neg P land Q equiv neg P lor neg Q nbsp Linearity edit Let displaystyle oplus nbsp denote the logical xor operation In Boolean algebra a linear function is one such that If there exists a 0 a 1 a n 0 1 displaystyle a 0 a 1 dots a n in 0 1 nbsp f b 1 b 2 b n a 0 a 1 b 1 a n b n displaystyle f b 1 b 2 dots b n a 0 oplus a 1 land b 1 oplus dots oplus a n land b n nbsp for all b 1 b 2 b n 0 1 displaystyle b 1 b 2 dots b n in 0 1 nbsp Another way to express this is that each variable always makes a difference in the truth value of the operation or it never makes a difference Negation is a linear logical operator Self dual edit In Boolean algebra a self dual function is a function such that f a 1 a n f a 1 a n displaystyle f a 1 dots a n neg f neg a 1 dots neg a n nbsp for all a 1 a n 0 1 displaystyle a 1 dots a n in 0 1 nbsp Negation is a self dual logical operator Negations of quantifiers edit In first order logic there are two quantifiers one is the universal quantifier displaystyle forall nbsp means for all and the other is the existential quantifier displaystyle exists nbsp means there exists The negation of one quantifier is the other quantifier x P x x P x displaystyle neg forall xP x equiv exists x neg P x nbsp and x P x x P x displaystyle neg exists xP x equiv forall x neg P x nbsp For example with the predicate P as x is mortal and the domain of x as the collection of all humans x P x displaystyle forall xP x nbsp means a person x in all humans is mortal or all humans are mortal The negation of it is x P x x P x displaystyle neg forall xP x equiv exists x neg P x nbsp meaning there exists a person x in all humans who is not mortal or there exists someone who lives forever Rules of inference editSee also double negation There are a number of equivalent ways to formulate rules for negation One usual way to formulate classical negation in a natural deduction setting is to take as primitive rules of inference negation introduction from a derivation of P displaystyle P nbsp to both Q displaystyle Q nbsp and Q displaystyle neg Q nbsp infer P displaystyle neg P nbsp this rule also being called reductio ad absurdum negation elimination from P displaystyle P nbsp and P displaystyle neg P nbsp infer Q displaystyle Q nbsp this rule also being called ex falso quodlibet and double negation elimination from P displaystyle neg neg P nbsp infer P displaystyle P nbsp One obtains the rules for intuitionistic negation the same way but by excluding double negation elimination Negation introduction states that if an absurdity can be drawn as conclusion from P displaystyle P nbsp then P displaystyle P nbsp must not be the case i e P displaystyle P nbsp is false classically or refutable intuitionistically or etc Negation elimination states that anything follows from an absurdity Sometimes negation elimination is formulated using a primitive absurdity sign displaystyle bot nbsp In this case the rule says that from P displaystyle P nbsp and P displaystyle neg P nbsp follows an absurdity Together with double negation elimination one may infer our originally formulated rule namely that anything follows from an absurdity Typically the intuitionistic negation P displaystyle neg P nbsp of P displaystyle P nbsp is defined as P displaystyle P rightarrow bot nbsp Then negation introduction and elimination are just special cases of implication introduction conditional proof and elimination modus ponens In this case one must also add as a primitive rule ex falso quodlibet Programming language and ordinary language edit vote redirects here For use of votes in Wikipedia discussions see Wikipedia Polling is not a substitute for discussion Not votes As in mathematics negation is used in computer science to construct logical statements if r t statements executed when r does NOT equal t The exclamation mark signifies logical NOT in B C and languages with a C inspired syntax such as C Java JavaScript Perl and PHP NOT is the operator used in ALGOL 60 BASIC and languages with an ALGOL or BASIC inspired syntax such as Pascal Ada Eiffel and Seed7 Some languages C Perl etc provide more than one operator for negation A few languages like PL I and Ratfor use for negation Most modern languages allow the above statement to be shortened from if r t to if r t which allows sometimes when the compiler interpreter is not able to optimize it faster programs In computer science there is also bitwise negation This takes the value given and switches all the binary 1s to 0s and 0s to 1s See bitwise operation This is often used to create ones complement or in C or C and two s complement just simplified to or the negative sign since this is equivalent to taking the arithmetic negative value of the number as it basically creates the opposite negative value equivalent or mathematical complement of the value where both values are added together they create a whole To get the absolute positive equivalent value of a given integer the following would work as the changes it from negative to positive it is negative because x lt 0 yields true unsigned int abs int x if x lt 0 return x else return x To demonstrate logical negation unsigned int abs int x if x lt 0 return x else return x Inverting the condition and reversing the outcomes produces code that is logically equivalent to the original code i e will have identical results for any input note that depending on the compiler used the actual instructions performed by the computer may differ This convention occasionally surfaces in ordinary written speech as computer related slang for not For example the phrase voting means not voting Another example is the phrase clue which is used as a synonym for no clue or clueless 5 6 Kripke semantics editIn Kripke semantics where the semantic values of formulae are sets of possible worlds negation can be taken to mean set theoretic complementation citation needed see also possible world semantics for more See also editAffirmation and negation grammatical polarity Ampheck Apophasis Binary opposition Bitwise NOT Contraposition Cyclic negation Negation as failure NOT gate Plato s beard Square of oppositionReferences edit Weisstein Eric W Negation mathworld wolfram com Retrieved 2 September 2020 Logic and Mathematical Statements Worked Examples www math toronto edu Retrieved 2 September 2020 Used as makeshift in early typewriter publications e g Richard E Ladner January 1975 The circuit value problem is log space complete for P ACM SIGACT News 7 101 18 20 doi 10 1145 990518 990519 O Donnell John Hall Cordelia Page Rex 2007 Discrete Mathematics Using a Computer Springer p 120 ISBN 9781846285981 Raymond Eric and Steele Guy The New Hacker s Dictionary p 18 MIT Press 1996 Munat Judith Lexical Creativity Texts and Context p 148 John Benjamins Publishing 2007 Further reading editGabbay Dov and Wansing Heinrich eds 1999 What is Negation Kluwer Horn L 2001 A Natural History of Negation University of Chicago Press G H von Wright 1953 59 On the Logic of Negation Commentationes Physico Mathematicae 22 Wansing Heinrich 2001 Negation in Goble Lou ed The Blackwell Guide to Philosophical Logic Blackwell Tettamanti Marco Manenti Rosa Della Rosa Pasquale A Falini Andrea Perani Daniela Cappa Stefano F Moro Andrea 2008 Negation in the brain Modulating action representation NeuroImage 43 2 358 367 doi 10 1016 j neuroimage 2008 08 004 PMID 18771737 S2CID 17658822 External links editHorn Laurence R Wansing Heinrich Negation In Zalta Edward N ed Stanford Encyclopedia of Philosophy Negation Encyclopedia of Mathematics EMS Press 2001 1994 NOT on MathWorldTables of Truth of composite clauses Table of truth for a NOT clause applied to an END sentence Archived from the original on 1 March 2000 NOT clause of an END sentence Archived from the original on 1 March 2000 NOT clause of an OR sentence Archived from the original on 17 January 2000 NOT clause of an IF THEN period Archived from the original on 1 March 2000 Retrieved from https en wikipedia org w index php title Negation amp oldid 1183838183, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.