logical

Redirected from "And"

Did you mean: logical, Andromeda (in astronomy), And. (abbreviation), and, Ampersand, ampersand, And (1996 Album by John Martyn), Backup software (technology), & (song), ampersand (technology)

 
Dictionary:

logical

  (lŏj'ĭ-kəl) pronunciation
adj.
  1. Of, relating to, in accordance with, or of the nature of logic.
  2. Based on earlier or otherwise known statements, events, or conditions; reasonable: Rain was a logical expectation, given the time of year.
  3. Reasoning or capable of reasoning in a clear and consistent manner.
logicality log'i·cal'i·ty (-kăl'ĭ-tē) or log'i·cal·ness n.
logically log'i·cal·ly adv.

SYNONYMS  logical, analytic, ratiocinative, rational. These adjectives mean capable of or reflecting the capability for correct and valid reasoning: a logical mind; an analytic thinker; the ratiocinative process; a rational being.
ANTONYM  illogical


Search unanswered questions...
Search our library...
Community Q&A Reference topics
 

(1) A reasonable solution to a problem.

(2) A higher level view of an object; for example, the user's view versus the computer's view. See logical vs. physical.



 
Thesaurus: logical

adjective

  1. Consistent with reason and intellect: consequent, intelligent, rational, reasonable. See reason/unreason.
  2. Able to reason validly: analytic, analytical, ratiocinative, rational. See reason/unreason.

 
Antonyms: logical

adj

Definition: probable, reasonable
Antonyms: illogical, improbable, irrational, unlikely, unreasonable


 
Hacker Slang: logical

[from the technical term logical device, wherein a physical device is referred to by an arbitrary ‘logical’ name] Having the role of. If a person (say, Les Earnest at SAIL) who had long held a certain post left and were replaced, the replacement would for a while be known as the logical Les Earnest. (This does not imply any judgment on the replacement.) Compare virtual.

At Stanford, ‘logical’ compass directions denote a coordinate system relative to El Camino Real, in which ‘logical north’ is always toward San Francisco and ‘logical south’ is always toward San Jose--in spite of the fact that El Camino Real runs physical north/south near San Francisco, physical east/west near San Jose, and along a curve everywhere in between. (The best rule of thumb here is that, by definition, El Camino Real always runs logical north-south.)

In giving directions, one might say: “To get to Rincon Tarasco restaurant, get onto El Camino Bignum going logical north.” Using the word ‘logical’ helps to prevent the recipient from worrying about that the fact that the sun is setting almost directly in front of him. The concept is reinforced by North American highways which are almost, but not quite, consistently labeled with logical rather than physical directions. A similar situation exists at MIT: Route 128 (famous for the electronics industry that grew up along it) wraps roughly 3 quarters around Boston at a radius of 10 miles, terminating near the coastline at each end. It would be most precise to describe the two directions along this highway as ‘clockwise’ and ‘counterclockwise’, but the road signs all say “north” and “south”, respectively. A hacker might describe these directions as logical north and logical south, to indicate that they are conventional directions not corresponding to the usual denotation for those words.


 
Word Tutor: logical
pronunciation

IN BRIEF: Capable of or characterized by clear reasoning.

pronunciation I see mysteries and complications wherever I look, and I have never met a steadily logical person. — Martha Gellhorn

 
Wikipedia: Logical conjunction

In logic and/or mathematics, logical conjunction or 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.

Contents

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.

Truth table

The truth table of p AND q (also written as p ∧ q or p & q in logic, p && q in many programming languages, or p\cdotq in electronics):

p q
T T T
T F F
F T F
F F F

Venn diagram

The Venn diagram of "A and B" (the red area is true)

A and B

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

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:

Everyone should vote.
Democracy is the best system of government.
Therefore, everyone should vote and democracy is the best system of government.

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

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.

Applications in computer programming

In high-level computer programming, logical conjunction is commonly represented by an infix operator, usually as a keyword such as "AND" 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.

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.

Rhetorical considerations

The classical "trivium" divides the study of articulate argumentation into the disciplines of grammar, logic, and rhetoric. Grammar concerns those aspects of language that are internal to the language itself, in other words, that can be abstracted from considerations of the object world and the language user. Logic deals with the properties of language and reasoning that are independent of particular manners of interpretation and invariant over conceivable languages. Rhetoric treats those aspects of language and its use in reasoning that necessarily take the nature of the interpreter into consideration.

Natural languages are evolved for many purposes beyond their use in logical argumentation, and so any study of logic in a natural language context must sort out those aspects of natural language that are pertinent to its use in logic and those that are not.

English "and" has properties not captured by logical conjunction, because "and" can sometimes imply order. For example, "They got married and had a child" in common discourse means that the marriage came before the child. Then again the word "and" in common usage can 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.

A minor issue of logic and language is the role of the word "but". 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". However, "but" and "and" are semantically distinct in natural language. Speakers use "but", a conjunction of contradiction, to mark their surprise or reservation vis-a-vis a circumstance that goes against a trend.

One way to resolve this problem of correspondence between symbolic logic and natural language is to observe that the first sentence (using "but"), implies the existence of a hidden but mistaken assumption, namely that the sun does not shine when it rains. We might say that, given probability p that it rains and the sun shines, and probability 1 − p that it rains and the sun does not shine, or that it does not rain at all, we would say "but" in place of "and" when p was low enough to warrant our incredulity.

That implication captures the semantic difference of "and" and "but" without disturbing their logical equivalence. On the other hand, in Brazilian logic, the logical equivalence is broken between A BUT NOT B (where "BUT NOT" is a single operator) and A AND (NOT B), which is a weaker statement.

"But" is also sometimes disjunctive (It never rains but it pours); sometimes minutive (Canada has had but three shots on goal); sometimes contrastive (He was not God, but merely an exalted man); sometimes a spatial preposition (He's waiting but the house); and sometimes interjective (My, but that's a lovely boat). These uses await semantic assimilation with conjunctive "but".

Like "and", "but" is sometimes non-commutative: "He got here, but he got here late" is not equivalent to "He got here late, but he got here". This example shows also that unlike "and", "but" can be felicitously used to conjoin sentences that entail each other; compare "He got here late, and he got here".

See also

External links


 
Translations: Translations for: Logical

Dansk (Danish)
adj. - logisk

Nederlands (Dutch)
logisch, rationeel, analytisch beredeneerd, vanzelfsprekend, systematisch uitgewerkt, samenhangend, weloverdacht

Français (French)
adj. - logique

Deutsch (German)
adj. - logisch

Ελληνική (Greek)
adj. - λογικός

Italiano (Italian)
logico

Português (Portuguese)
adj. - lógico, razoável, natural

Русский (Russian)
логический, последовательный, разумный

Español (Spanish)
adj. - lógico, dialéctico, consecuente, natural

Svenska (Swedish)
adj. - logisk, följdriktig

中文(简体) (Chinese (Simplified))
合乎逻辑的, 合理的

中文(繁體) (Chinese (Traditional))
adj. - 合乎邏輯的, 合理的

한국어 (Korean)
adj. - 논리적인 , 논리적으로 생각하는, 조리에 닿는

日本語 (Japanese)
adj. - 論理的な, 当然の, 論理学の

العربيه (Arabic)
‏(صفه) منطقي, منطقي التفكير‏

עברית (Hebrew)
adj. - ‮הגיוני, שכלי, לוגי, סביר, עקבי‬


 
Best of the Web: And

Some good "logical" pages on the web:


Math
mathworld.wolfram.com
 
 
 
Redirected from "And"

Did you mean: logical, Andromeda (in astronomy), And. (abbreviation), and, Ampersand, ampersand, And (1996 Album by John Martyn), Backup software (technology), & (song), ampersand (technology)

Join the WikiAnswers Q&A community. Post a question or answer questions about "And" at WikiAnswers.

 

Copyrights:

Dictionary. The American Heritage® Dictionary of the English Language, Fourth Edition Copyright © 2007, 2000 by Houghton Mifflin Company. Updated in 2007. Published by Houghton Mifflin Company. All rights reserved.  Read more
Computer Desktop Encyclopedia. THIS COPYRIGHTED DEFINITION IS FOR PERSONAL USE ONLY.
All other reproduction is strictly prohibited without permission from the publisher.
© 1981-2008 Computer Language Company Inc.  All rights reserved.  Read more
Thesaurus. Roget's II: The New Thesaurus, Third Edition by the Editors of the American Heritage® Dictionary Copyright © 1995 by Houghton Mifflin Company. Published by Houghton Mifflin Company. All rights reserved.  Read more
Answers Corporation Antonyms. © 1999-2008 by Answers Corporation. All rights reserved.  Read more
Hacker Slang. The Jargon File. Copyright © 2007.  Read more
Word Tutor. Copyright © 2004-present by eSpindle Learning, a 501(c) nonprofit organization. All rights reserved.
eSpindle provides personalized spelling and vocabulary tutoring online; free trial Read more
Wikipedia. This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Logical conjunction" Read more
Translations. Copyright © 2007, WizCom Technologies Ltd. All rights reserved.  Read more