Welcome to WikiPedia Mirror Website
Wikipedia Mirror
184 dicks censored free mature porn galleries porn movies mature video amateur live cam 5 0 19 cam mature sex tube 104 131 milfs pics sex 114 tube milfs free milf sites frequently updated free mature pics and xxx pics sex tube horny older pics adult your 98 daily free mature xxx mature 119 pictures free big movies

Other related websites: ($650; And Invisible To To During The 357 Attained And Saturday 04th of September 2010 03:26:01 AM Logical_conjunction - WikiLyrics Free Website Logical conjunction - Wikipedia, the free encyclopedia

Logical conjunction

From Wikipedia, the free encyclopedia
Jump to: navigation, search
Venn diagram of
~A \and B \and C

In logic and mathematics, logical conjunction, or: and is a two-place logical connective that has the value true if both of its operands are true, otherwise a value of false.

The analogue of conjunction for a (possibly infinite) family of statements is universal quantification, which is part of predicate logic.

Contents

[edit] Notation

And is usually expressed with an infix operator. In mathematics and logic, it is usually ; in electronics \cdot; and in programming languages, & or and. Some programming languages have a related control structure, the short-circuit and, written &&, and then, etc.

[edit] Definition

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.

[edit] Truth table

Conjunctions of the arguments on the left
The true bits form a Sierpinski triangle

The truth table of ~A \and B:

INPUT OUTPUT
A B A AND B
0 0 0
0 1 0
1 0 0
1 1 1

[edit] Introduction and elimination rules

As a rule of inference, conjunction introduction is a classically valid, simple argument form. The argument form has two premises, A and B. Intuitively, it permits the inference of their conjunction.

A,
B.
Therefore, A and B.

or in logical operator notation:

A,
B
 \vdash A \and B

Here is an example of an argument that fits the form conjunction introduction:

Bob likes apples.
Bob likes oranges.
Therefore, Bob likes apples and oranges.

Conjunction elimination is another classically valid, simple argument form. Intuitively, it permits the inference from any conjunction of either element of that conjunction.

A and B.
Therefore, A.

...or alternately,

A and B.
Therefore, B.

In logical operator notation:

 A \and B
 \vdash A

...or alternately,

 A \and B
 \vdash B

[edit] Properties

The following properties apply to conjunction:

(a \land (b \land c)) \equiv ((a \land b) \land (a \land c))
(a \rightarrow b) \rightarrow ((a \land c) \rightarrow (b \land c))
  • truth-preserving: The interpretation under which all variables are assigned a truth value of 'true' produces a truth value of 'true' as a result of conjunction.
  • falsehood-preserving: The interpretation under which all variables are assigned a truth value of 'false' produces a truth value of 'false' as a result of conjunction.

If using binary values for true (1) and false (0), then logical conjunction works exactly like normal arithmetic multiplication.

[edit] Applications in computer programming

In high-level computer programming and digital electronics, logical conjunction is commonly represented by an infix operator, usually as a keyword such as "AND", an algebraic multiplication, or the ampersand symbol "&". Many languages also provide short-circuit control structures corresponding to logical conjunction.

Logical conjunction is often used for bitwise operations, where 0 corresponds to false and 1 to true:

  • 0 AND 0  =  0,
  • 0 AND 1  =  0,
  • 1 AND 0  =  0,
  • 1 AND 1  =  1.

The operation can also be applied to two binary words viewed as bitstrings of equal length, by taking the bitwise AND of each pair of bits at corresponding positions. For example:

  • 11000110 AND 10100011  =  10000010.

This can be used to select part of a bitstring using a bit mask. For example, 10011101 AND 00001000  =  00001000 extracts the fifth bit of an 8-bit bitstring.

In computer networking, bit masks are used to derive the network address of a subnet within an existing network from a given IP address, by ANDing the IP address and the subnet mask.

Logical conjunction "AND" is also used in SQL operations to form database queries.

The Curry-Howard correspondence relates logical conjunction to product types.

[edit] Set-theoretic intersection

The intersection used in set theory is defined in terms of a logical conjunction: xAB if and only if (xA) ∧ (xB). Because of this, set-theoretic intersection shares several properties with logical conjunction, such as associativity, commutativity, and idempotence.

[edit] Natural language

The logical conjunction and in logic is related to, but not the same as, the grammatical conjunction and in natural languages.

English "and" has properties not captured by logical conjunction. For example, "and" sometimes implies order. For example, "They got married and had a child" in common discourse means that the marriage came before the child. The word "and" can also imply a partition of a thing into parts, as "The American flag is red, white, and blue." Here it is not meant that the flag is at once red, white, and blue, but rather that it has a part of each color.

[edit] See also

[edit] External links

Namespaces
Variants
Actions