Copyright © Philip M. Parker, INSEAD. Terms of Use.

Inductive

Definition: Inductive

Inductive

Adjective

1. Relating to logical induction; "inductive thinking".

2. (electricity) arising from inductance; "inductive reactance".

3. (logic) of reasoning; proceeding from particular facts to a general conclusion; "inductive reasoning".

4. Inducing or influencing; leading on; "inductive to the sin of Eve"- John Milton.

Source: WordNet 1.7.1 Copyright © 2001 by Princeton University. All rights reserved.
 

Date "inductive" was first used in popular English literature: sometime before 1663. (references)

 

Specialty Definition: Inductive

DomainDefinition

Electrical Engineering

Applying to a device or circuit in which, under given conditions, the predominant quantity is inductance. Source: European Union. (references)

Source: compiled by the editor from various references; see credits.

Top     

Specialty Definition: Inductive reasoning

(From Wikipedia, the free Encyclopedia)

Induction or inductive reasoning, sometimes called inductive logic, is the process of reasoning in which a general rule is inferred from some set of specific observations. It is to ascribe properties or relations to types based on limited observations of particular tokens; or to formulate laws based on limited observations of recurring phenomenal patterns. Induction is used, for example, in using specific propositions such as:

to infer general propositions such as: Some philosophers consider the term "inductive logic" a misnomer because the validity of inductive reasoning is not dependent on the rules of formal logic which is by definition only deductive, not inductive. In contrast to deductive reasoning, conclusions arrived at by inductive reasoning do not necessarily have the same validity as the initial assumptions. In the example above, the conclusion that all swans are white is obviously wrong, but may have been thought correct in Europe until the settlement of Australia. Inductive arguments are never binding but they may be cogent. Inductive reasoning expresses the truth-value of its inferences in terms of probability rather than necessity.

The problem of induction, the search for a justification for inductive reasoning, was formally addressed first by David Hume. Hume criticised induction based on repeated experiences.

Philosophers since at least David Hume recognized a significant distinction between two kinds of statements, later called by Immanuel Kant "analytic" and "synthetic."

W. V. Quine debunked this distinction in his influential essay Two Dogmas of Empiricism and postulated that any empirical evidence that seems to falsify any particular theory can always be accommodated by the theory in question. (See ontological relativity.)

Both statistics and the scientific method rely on both induction and deduction.

See also

External link

Top     



Inductor

(From Wikipedia, the free Encyclopedia)

An inductor is a passive electrical component that produces a voltage proportional to the instantaneous change in current flowing through it:

V = L × dI/dt,

where V is the voltage generated, dI/dt is the rate of change of current, and L is a property of the device called inductance. The SI unit of inductance is the henry (H).

Thus an inductor resists changes in current. A pure inductor does not offer any resistance to direct current (an actual one does slightly), except when the current is switched on and off, then it makes the change more gradual.

When a sinusoidal alternating current flows through an inductor, a sinusoidal alternating voltage (or electromotive force, abbr. emf) is induced. The amplitude of the emf is related to the amplitude of the current and to the frequency of the sinusoid by the following equation.

V = I × ωL

where ω is the angular frequency of the sinusoid defined in terms of the frequency f as

ω = 2πf

The term ωL is known as inductive reactance, which is denoted by the symbol XL and is the positive imaginary component of impedance.

Construction

An inductor is usually constructed as a coil of conducting material, usually copper wire. A core of ferrous material is sometimes used.

This effect can be understood as follows: the current produces a magnetic field; a change in current gives a change of this magnetic field; a changing magnetic field causes an electromotive force in the conductor. An induction coil is closely related to electromagnets in structure, but used for a different purpose—to store energy in a magnetic field.

Smaller inductors used for very high frequencies are sometimes made with a wire passing through a ferrite cylinder or bead.

History

In 1885, William Stanley, Jr built the first practical induction coil based on Lucien Gaulard and Josiah Willard Gibbs' idea. It was the precursor of the modern transformer.

See also

Electricity, Electronics, Capacitor, Transformer

Synonyms

coil, induction coil, choke, reactor

Source: adapted by the editor from Wikipedia, the free encyclopedia under a copyleft GNU Free Documentation License (GFDL) from the article "Inductor."

Top     



Mathematical induction

(From Wikipedia, the free Encyclopedia)

Mathematical induction, or proof by induction, is a method of mathematical proof typically used to establish that a given statement is true for all natural numbers. It can also be used in more general settings as will be described below. An induction variant is used in computer science to prove that expressions which can be evaluated are equivalent, and this is known as structural induction.

The simplest and most common form of mathematical induction proves that a statement holds for all natural numbers n and consists of two steps:

  1. Showing that the statement holds when n = 0.
  2. Showing that if the statement holds for n = m, then the same statement also holds for n = m + 1.

To understand why the two steps are in fact sufficient, it is helpful to think of the domino effect: if you have a long row of dominos standing on end and you can be sure that
  1. The first domino will fall.
  2. Whenever a domino falls, its next neighbor will also fall.
then you can conclude that all dominos will fall.

Example

Suppose we wish to prove the statement:

for all natural numbers n. This is a simple formula for the sum of the natural numbers up to the number n. The proof that the statement is true for all natural numbers n proceeds as follows.

Proof

Check it is true for n = 0. Clearly, the sum of the first 0 natural numbers is 0, and 0.(0 + 1) / 2 = 0. So the statement is true for n = 0. We could define the statement as P(n), and thus we have that P(0) holds.

Now we have to show that if the statement holds when n = m, then it also holds when n = m + 1. This can be done as follows.

Assume the statement is true for n = m, i.e.,

Adding m + 1 to both sides gives

By algebraic manipulation we have

Thus we have

This is that statement for n = m + 1. Note that it has not been proved as true: we made the assumption that P( m ) is true, and from that assumption we derived P( m + 1 ). Symbolically, we have shown that:

However, by induction, we may now conclude that the statement P(n) holds for all natural numbers n:

  1. We have P( 0 ), and thus P( 1 ) follows
  2. With P( 1 ), P( 2 ) follows
  3. ... etc

Generalizations

This type of proof can be generalized in several ways. For instance, if we want to prove a statement not for all natural numbers but only for all numbers greater than or equal to a certain number b then the following steps are sufficient:

  1. Showing that the statement holds when n = b.
  2. Showing that if the statement holds for n = m then the same statement also holds for n = m + 1.
This can be used, for example, to show that n2 > 2n for n ≥ 3. Note that this form of mathematical induction is actually a special case of the previous form because if the statement that we intend to prove is P(n) then proving it with these two rules is equivalent with proving P(n + b) for all natural numbers n with the first two steps.

Another generalization allows that in the second step we not only assume that the statement holds for n = m but also for all n smaller than or equal to m. This leads to the following two steps:

  1. Showing that the statement holds when n = 0.
  2. Showing that if the statement holds for all nm then the same statement also holds for n = m + 1.

This can be used, for example, to show that fib(n) = [Φn - (-1/Φ)n ] / 51/2 where fib(n) is the nth Fibonacci number and Φ = (1 + 51/2) / 2 (the socalled Golden mean). Since fib(m + 1) = fib(m) + fib(m - 1) it is straightforward to prove that the statement holds for m + 1 if we can assume that it already holds for both m and m - 1. Also for this generalization it holds that it is in fact just a special case of the first form; let P(n) be the statement that we intend to prove then proving it with these rules is equivalent with proving the statement ' P(m) for all mn ' for all natural numbers n with the first two steps.

The last two steps can be reformulated as one step:

  1. Showing that if the statement holds for all n < m then the same statement also holds for n = m.

This is in fact the most general form of mathematical induction and it can be shown that it is not only valid for statements about natural numbers, but for statements about elements of any well-founded set, that is, a set with a partial order that contains no infinite descending chains (where < is defined such that a < b iff ab and ab).

This form of induction, when applied to ordinals (which form a well-ordered and hence well-founded class), is called transfinite induction. It is an important proof technique in set theory, topology and other fields.

Proofs by transfinite induction typically need to distinguish three cases:

  1. m is a minimal element, i.e. there is no element smaller than m
  2. m has a direct predecessor, i.e. the set of elements which are smaller than m has a largest element
  3. m has no direct predecessor, i.e. m is a so-called limit-ordinal

See also three forms of mathematical induction.

Proof or reformulation of mathematical induction

The principle of mathematical induction is usually stated as an axiom of natural numbers, see Peano axioms. However, it can be proved in some logical systems; for instance, if the following axiom:
The set of natural numbers is well-ordered
is employed.

Note that the additional axiom is indeed an alternative formulation of principle of mathematical induction. That is, the two are equivalent. See proof of mathematical induction.

Source: adapted by the editor from Wikipedia, the free encyclopedia under a copyleft GNU Free Documentation License (GFDL) from the article "Mathematical induction."

Top     

Synonym: Inductive

Synonym: inducive (adj). (additional references)
Antonym: deductive (adj). (additional references)

Top     

Crosswords: Inductive

English words defined with "inductive": 1st Baron Verulambacon, Baconian method, Baron VerulamEpagogicFaradic, Francis BaconInducteous, InductionalPhilosophical induction, Platymeter, principlequenchruleViscount St. Albans. (references)
Specialty definitions using "inductive": Baconian Philosophycapacitive controlelectrical prospecting, energizing coilGeneral Recursion TheoremINDUCTION-COORDINATION POWER ENGINEER, inductive behavior, inductive behaviour, inductive inference, inductive relation, Inductively coupled dischargelearning from examplesring-induction methodStructure-Activity Relationship, Sundberg method. (references)

Top     

Commercial Usage: Inductive

DomainTitle

Books

  • Inductive Logic Programming : 9th International Workshop, ILP-99, Bled, Slovenia, June 1999 : Proceedings (Lecture Notes in Computer Science, 1634) (reference)

  • Assyrian Primer: An Inductive Method of Learning the Cuneiform Characters (reference)

  • Analogical and Inductive Inference: International Workshop Aii '89 (Lecture Notes in Computer Science, Vol 397) (reference)

  • Desiring God's Own Heart (International Inductive Study Series) (reference)

  • Optimum Inductive Methods: A Study in Inductive Probability, Bayesian Statistics, and Verisimilitude (Synthese Library, 232) (reference)

    (more book examples)

  

Theater & Movies

Source: compiled by the editor from various references; see credits.

Top     

Usage Frequency: Inductive

"Inductive" is generally used as an adjective (general or positive) -- approximately 99.12% of the time. "Inductive" is used about 114 times out of a sample of 100 million words spoken or written in English. Its rank is based on over 700,000 words used in the English language. Some parts-of-speech are not covered due to the samples used by the British National Corpus. (note: percents less than one-hundredth of one percent have been omitted)
Parts of SpeechPercentUsage per
100 Million Words
Rank in English
Adjective (general or positive)99.12%11330,464
Noun (proper)0.88%1339,140
                    Total100.00%114N/A

Source: compiled by the editor from several corpora; see credits.

Top     

Expressions: Inductive

Expressions using "inductive": inductive behavior inductive behaviour inductive coupling factor of 2 circuits inductive coupling factor of two circuits Inductive embarrassment inductive inference inductive loop Inductive method Inductive philosophy inductive reasoning inductive relation Inductive sciences inductive sensor inductive shunt inductive tuning specific inductive capacity. Additional references.

Hyphenated Usage

Beginning with "inductive": inductive-type.

Ending with "inductive": descriptive-inductive, non-inductive.

Source: compiled by the editor from various references; see credits.

Top     

Frequency of Internet Keywords: Inductive

The following statistics estimate the number of searches per day across the major English-language search engines as identified by various trade publications. Hyperlinks lead to commercial use of the expression at Amazon.com.
 
ExpressionFrequency
per Day
ExpressionFrequency
per Day

inductive reasoning

49

deductive inductive thinking

5

inductive bible study

35

inductive teaching

5

inductive

27

coupled inductive plasma

5

deductive inductive reasoning

27

inductive coupling

5

inductive sensor

14

inductive model

5

inductive reactance

10

analog inductive sensor

4

charging inductive

9

inductive logic

4

non inductive resistor

8

dimension in inductive new technology

4

inductive argument

8

inductive introduction logic probability

4

inductive loop

7

inductive learning

4

inductive proximity sensor

7

algorithm inductive learning

4

deductive inductive

6

inductive transducer

4

inductive amplifier

6

inductive research

4

inductive tachometer

6

inductive logic programming

3

inductive thinking

6

inductive proximity switch

3

in inductive pioneer technology

6

argument deductive inductive

3

bible inductive international study

5

inductive transformer

3

new inductive study bible

5

energy inductive storage

3

inductive technology

5

deductive inductive reasoning vs

3

inductive lesson plan

5

inductive power transfer

3
Source: compiled by the editor from various references; see credits.

Top     

Modern Translation: Inductive

Language Translations for "inductive"; alternative meanings/domain in parentheses.

Albanian

  

induktiv, induksioni. (various references)

   

Arabic 

  

‏حثي, ‏إستقرائي. (various references)

   

Bulgarian 

  

всмукващ (sucking), индуктивен. (various references)

   

Chinese 

  

引人. (various references)

   

Czech

  

induktivní. (various references)

   

Danish

  

induktiv. (various references)

   

Dutch

  

inductief. (various references)

   

Farsi 

  

قیاسی (Analog, Analogical, Categorical, Schematic), استنتاجی . (various references)

   

Finnish

  

induktiivinen. (various references)

   

French

  

inductif. (various references)

   

German

  

induktiv (inducible). (various references)

   

Greek 

  

επαγωγικόσ (deductive), επαγωγικός (deductive, induced). (various references)

   

Hebrew 

  

אינדוקטיבי, השראי. (various references)

   

Hungarian

  

induktív. (various references)

   

Italian

  

induttivo (inferential). (various references)

   

Japanese Kanji 

  

帰納的 (recursive), 帰納 . (various references)

   

Japanese Katakana 

  

きのうてき (efficient, functional, recursive), きのう (air bladder or sac, faculty, function, take up farming again, yesterday). (various references)

   

Korean 

  

유도 (Conduction, Derivation, inducing). (various references)

   

Manx

  

indughtagh. (various references)

   

Pig Latin

  

inductiveay.(various references)

   

Portuguese

  

indutivo. (various references)

   

Romanian

  

inductor (inductor), inductiv, de inducţie (induced), bazat pe inducţie. (various references)

   

Russian 

  

индуктивный. (various references)

   

Serbo-Croatian

  

induktivan, vodljiv, koji izaziva. (various references)

   

Spanish

  

inductivo (leading). (various references)

   

Swedish

  

induktiv. (various references)

   

Turkish

  

indükleyici, tümevarımsal, doğuma neden olan. (various references)

   

Ukrainian

  

індуктивний, спонукальний (impellent, impulsive, incentive, motive), вступний (exordial, inaugural, initiative, introductory, opening, prefatorial, prefatory, prelusive, prodromic). (various references)

   

Welsh

  

anwythol. (various references)

Source: compiled by the editor from various translation references.

Top     

Derivations & Misspellings: Inductive

Derivations

Words beginning with "inductive": inductively. (additional references)

Words ending with "inductive": noninductive, photoinductive. (additional references)


Misspellings

"Inductive" is suggested in spellcheckers for the following: incuctive, inducive, inductice, inductuve, indusive. (additional references)

Source: compiled by the editor, based on several corpora (additional references).

Top     

Anagrams: Inductive

Scrabble® Enable2K-Verified Anagrams

Words within the letters "c-d-e-i-i-n-t-u-v"

-2 letters: dunitic, identic, incited, invited, unitive, uveitic.

-3 letters: citied, divine, dunite, incite, indict, indite, induce, induct, invite, tineid, united, untied.

-4 letters: centu, cited, civet, civie, cutie, cutin, dunce, duvet, edict, educt, evict, indie, indue, ivied, nitid, nudie, teiid, teind, tined, tuned, tunic, unite, untie, viced, vined, vinic.

-5 letters: cedi, cent, cine, cite, cued, cute, deni.

 Words containing the letters "c-d-e-i-i-n-t-u-v"
 

+2 letters: disjunctive, inductively.

 

+3 letters: denunciative, disjunctives, noninductive.

 

+4 letters: adventuristic, disjunctively, underactivity.

 

+5 letters: conductivities, photoinductive.

Source: compiled by the editor from various references; see credits.

SCRABBLE® is a registered trademark. All intellectual property rights in and to the game are owned in the U.S.A and Canada by Hasbro Inc., and throughout the rest of the world by J.W. Spear & Sons Limited of Maidenhead, Berkshire, England, a subsidiary of Mattel Inc. Mattel and Spear are not affiliated with Hasbro.

Top     



INDEX

1. Definition
2. Synonyms
3. Crosswords
4. Usage: Commercial
5. Usage Frequency
6. Expressions
7. Expressions: Internet
8. Translations: Modern
9. Derivations
10. Anagrams
11. Bibliography


  

Copyright © Philip M. Parker, INSEAD. Terms of Use.