Share on Facebook Share on Twitter Email
Answers.com

inference

 
(ĭn'fər-əns) pronunciation
n.
    1. The act or process of deriving logical conclusions from premises known or assumed to be true.
    2. The act of reasoning from factual knowledge or evidence.
    1. Something inferred.
    2. Usage Problem. A hint or suggestion: The editorial contained an inference of foul play in the awarding of the contract. See Usage Note at infer.

Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics

The process of deducing properties of the underlying distribution by analysis of data.



Roget's Thesaurus:

inference

Top

noun

    A position arrived at by reasoning from premises or general principles: conclusion, deduction, illation, illative, judgment. See reason/unreason.

The process of moving from (possibly provisional) acceptance of some propositions, to acceptance of others. The goal of logic and of classical epistemology is to codify kinds of inference, and to provide principles for separating good from bad inferences. See also rule of inference.

A guess or judgement derived by deduction or induction from certain data. See also hypothesis.

This entry contains information applicable to United States law only.

In the law of evidence, a truth or proposition drawn from another that is supposed or admitted to be true. A process of reasoning by which a fact or proposition sought to be established is deduced as a logical consequence from other facts, or a state of facts, already proved or admitted. A logical and reasonable conclusion of a fact not presented by direct evidence but which, by process of logic and reason, a trier of fact may conclude exists from the established facts. Inferences are deductions or conclusions that with reason and common sense lead the jury to draw from facts which have been established by the evidence in the case.

Word Tutor:

inference

Top
pronunciation

IN BRIEF: Deduction; conclusion drawn from evidence.

pronunciation We do not learn by inference and deduction and the application of mathematics to philosophy, but by direct intercourse and sympathy. — Henry David Thoreau (1817-1862), American philosopher & naturalist.

LearnThatWord.com is a free vocabulary and spelling program where you only pay for results!

A conclusion about a population derived from a sample of the population.

Random House Word Menu:

categories related to 'inference'

Top
Random House Word Menu by Stephen Glazier
For a list of words related to inference, see:

Inference is the act or process of deriving logical conclusions from premises known or assumed to be true.[1] The conclusion drawn is also called an idiomatic. The laws of valid inference are studied in the field of logic.

Human inference (i.e. how humans draw conclusions) is traditionally studied within the field of cognitive psychology; artificial intelligence researchers develop automated inference systems to emulate human inference. Statistical inference allows for inference from quantitative data.

Contents

Definition of inference

The process by which a conclusion is inferred from multiple observations is called inductive reasoning. The conclusion may be correct or incorrect, or correct to within a certain degree of accuracy, or correct in certain situations. Conclusions inferred from multiple observations may be tested by additional observations.


This definition is disputable (due to its lack of clarity. Ref: Oxford English dictionary: "induction ... 3. Logic the inference of a general law from particular instances.") The definition given thus applies only when the "conclusion" is general.

1. A conclusion reached on the basis of evidence and reasoning. 2. The process of reaching such a conclusion: "order, health, and by inference cleanliness".

Examples of inference

Greek philosophers defined a number of syllogisms, correct three part inferences, that can be used as building blocks for more complex reasoning. We begin with the most famous of them all:

  1. All men are mortal
  2. Socrates is a man
  3. Therefore, Socrates is mortal.

The reader can check that the premises and conclusion are true, but Logic is concerned with inference: does the truth of the conclusion follow from that of the premises?

The validity of an inference depends on the form of the inference. That is, the word "valid" does not refer to the truth of the premises or the conclusion, but rather to the form of the inference. An inference can be valid even if the parts are false, and can be invalid even if the parts are true. But a valid form with true premises will always have a true conclusion.

For example, consider the form of the following symbological track:

  1. All fruits are sweet.
  2. A banana is a fruit.
  3. Therefore, a banana is sweet.

For the conclusion to be necessarily true, the premises need to be true.

Now we turn to an invalid form.

  1. All A are B.
  2. C is a B.
  3. Therefore, C is an A.

To show that this form is invalid, we demonstrate how it can lead from true premises to a false conclusion.

  1. All apples are fruit. (True)
  2. Bananas are fruit. (True)
  3. Therefore, bananas are apples. (False)

A valid argument with false premises may lead to a false conclusion:

  1. All fat people are Greek.
  2. John Lennon was fat.
  3. Therefore, John Lennon was Greek.

When a valid argument is used to derive a false conclusion from false premises, the inference is valid because it follows the form of a correct inference.

A valid argument can also be used to derive a true conclusion from false premises:

  1. All fat people are musicians
  2. John Lennon was fat
  3. Therefore, John Lennon was a musician

In this case we have two false premises that imply a true conclusion.

Incorrect inference

An incorrect inference is known as a fallacy. Philosophers who study informal logic have compiled large lists of them, and cognitive psychologists have documented many biases in human reasoning that favor incorrect reasoning.

Automatic logical inference

AI systems first provided automated logical inference and these were once extremely popular research topics, leading to industrial applications under the form of expert systems and later business rule engines.

An inference system's job is to extend a knowledge base automatically. The knowledge base (KB) is a set of propositions that represent what the system knows about the world. Several techniques can be used by that system to extend KB by means of valid inferences. An additional requirement is that the conclusions the system arrives at are relevant to its task.

Example using Prolog

Prolog (for "Programming in Logic") is a programming language based on a subset of predicate calculus. Its main job is to check whether a certain proposition can be inferred from a KB (knowledge base) using an algorithm called backward chaining.

Let us return to our Socrates syllogism. We enter into our Knowledge Base the following piece of code:

mortal(X) :-  man(X).
man(socrates). 

( Here :- can be read as if. Generally, if P \to Q (if P then Q) then in Prolog we would code Q:-P (Q if P).)
This states that all men are mortal and that Socrates is a man. Now we can ask the Prolog system about Socrates:

?- mortal(socrates).

(where ?- signifies a query: Can mortal(socrates). be deduced from the KB using the rules) gives the answer "Yes".

On the other hand, asking the Prolog system the following:

?- mortal(plato).

gives the answer "No".

This is because Prolog does not know anything about Plato, and hence defaults to any property about Plato being false (the so-called closed world assumption). Finally ?- mortal(X) (Is anything mortal) would result in "Yes" (and in some implementations: "Yes": X=socrates)
Prolog can be used for vastly more complicated inference tasks. See the corresponding article for further examples.

Use with the semantic web

Recently automatic reasoners found in semantic web a new field of application. Being based upon first-order logic, knowledge expressed using one variant of OWL can be logically processed, i.e., inferences can be made upon it.

Bayesian statistics and probability logic

Philosophers and scientists who follow the Bayesian framework for inference use the mathematical rules of probability to find this best explanation. The Bayesian view has a number of desirable features—one of them is that it embeds deductive (certain) logic as a subset (this prompts some writers to call Bayesian probability "probability logic", following E. T. Jaynes).

Bayesians identify probabilities with degrees of beliefs, with certainly true propositions having probability 1, and certainly false propositions having probability 0. To say that "it's going to rain tomorrow" has a 0.9 probability is to say that you consider the possibility of rain tomorrow as extremely likely.

Through the rules of probability, the probability of a conclusion and of alternatives can be calculated. The best explanation is most often identified with the most probable (see Bayesian decision theory). A central rule of Bayesian inference is Bayes' theorem, which gave its name to the field.

See Bayesian inference for examples.

Nonmonotonic logic[2]

A relation of inference is monotonic if the addition of premises does not undermine previously reached conclusions; otherwise the relation is nonmonotonic. Deductive inference, is monotonic: if a conclusion is reached on the basis of a certain set of premises, then that conclusion still holds if more premises are added.

By contrast, everyday reasoning is mostly nonmonotonic because it involves risk: we jump to conclusions from deductively insufficient premises. We know when it is worth or even necessary (e.g. in medical diagnosis) to take the risk. Yet we are also aware that such inference is defeasible—that new information may undermine old conclusions. Various kinds of defeasible but remarkably successful inference have traditionally captured the attention of philosophers (theories of induction, Peirce’s theory of abduction, inference to the best explanation, etc.). More recently logicians have begun to approach the phenomenon from a formal point of view. The result is a large body of theories at the interface of philosophy, logic and artificial intelligence.

See also

References


Translations:

Inference

Top

Dansk (Danish)
n. - logisk slutning

Nederlands (Dutch)
gevolgtrekking

Français (French)
n. - inférence, conclusion, déduction, suggestion

Deutsch (German)
n. - Schlußfolgerung

Ελληνική (Greek)
n. - συμπέρασμα, πόρισμα

Italiano (Italian)
deduzione

Português (Portuguese)
n. - inferência (f)

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

Español (Spanish)
n. - inferencia, deducción

Svenska (Swedish)
n. - slutledning, slutsats

中文(简体)(Chinese (Simplified))
推论

中文(繁體)(Chinese (Traditional))
n. - 推論

한국어 (Korean)
n. - 추리, 추정, 함축

日本語 (Japanese)
n. - 推測すること, 推測されたこと, 推定, 結論, 推論

العربيه (Arabic)
‏(الاسم) استنتاج‏

עברית (Hebrew)
n. - ‮מסקנה, היקש‬


 
 
Related topics:
inferentially
inductively
immediate (philosophy)

Related answers:
What is inference? Read answer...
Observation and inference? Read answer...
Observation and inferences? Read answer...

Help us answer these:
What is a sentence with inference in it inference?
What do inferences depend on?
What is assymptotic inference?

Post a question - any question - to the WikiAnswers community:

 

Copyrights:

American Heritage Dictionary. The American Heritage® Dictionary of the English Language, Fourth Edition Copyright © 2007, 2000 by Houghton Mifflin Company. Updated in 2009. Published by Houghton Mifflin Company. All rights reserved.  Read more
Oxford Dictionary of Statistics. A Dictionary of Statistics. Second edition revised. Copyright © Oxford University Press, 2008. All rights reserved.  Read more
Roget's Thesaurus. Roget's II: The New Thesaurus, Third Edition by the Editors of the American Heritage® Dictionary Copyright © 1995 byHoughton Mifflin Company. Published by Houghton Mifflin Company. All rights reserved.  Read more
Oxford Dictionary of Philosophy. The Oxford Dictionary of Philosophy. Copyright © 1994, 1996, 2005 by Oxford University Press. All rights reserved.  Read more
Oxford Dictionary of Sports Science & Medicine. The Oxford Dictionary of Sports Science & Medicine. Copyright © Michael Kent 1998, 2006, 2007. All rights reserved.  Read more
$copyright.smallImage.alttext West's Encyclopedia of American Law. West's Encyclopedia of American Law. Copyright © 1998 by The Gale Group, Inc. All rights reserved.  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; sign up free Read more
Saunders Veterinary Dictionary. Saunders Comprehensive Veterinary Dictionary 3rd Edition. Copyright © 2007 by D.C. Blood, V.P. Studdert and C.C. Gay, Elsevier. All rights reserved.  Read more
Random House Word Menu. © 2010 Write Brothers Inc. Word Menu is a registered trademark of the Estate of Stephen Glazier. Write Brothers Inc. All rights reserved.  Read more
 Rhymes. Oxford University Press. © 2006, 2007 All rights reserved.  Read more
Wikipedia on Answers.com. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article Inference Read more
Translations. Copyright © 2007, WizCom Technologies Ltd. All rights reserved.  Read more

Follow us
Facebook Twitter
YouTube