In Depth
See Also

Algorithm

In mathematics Mathematics

Mathematics is the discipline that deals with concepts such as quantity [i], structure [i], space [i] a ... 

 and computing, an algorithm is a procedure for accomplishing some task which, given an initial state, will terminate in a defined end-state. The computational complexity and efficient implementation of the algorithm are important in computing, and this depends on suitable data structure Data structure

In computer science [i], a data structure is a way of storing data [i] in a computer so that it can be u ... 

s. Informally, the concept of an algorithm is often illustrated by the example of a recipe Recipe

A recipe is a set of instructions that show how to prepare or make something, especially a culinary dish... 

, although many algorithms are much more complex; algorithms often have steps that repeat or require decisions . Algorithms can be composed to create more complex algorithms.

Discussions

  Discussion Features

   Ask a question about 'Algorithm'

   Start a new discussion about 'Algorithm'

   Answer questions about 'Algorithm'

   'Algorithm' discussion forum


Encyclopedia


In mathematics Mathematics

Mathematics is the discipline that deals with concepts such as quantity [i], structure [i], space [i] a ... 

 and computing, an algorithm is a procedure for accomplishing some task which, given an initial state, will terminate in a defined end-state. The computational complexity and efficient implementation of the algorithm are important in computing, and this depends on suitable data structure Data structure

In computer science [i], a data structure is a way of storing data [i] in a computer so that it can be u ... 

s.

Informally, the concept of an algorithm is often illustrated by the example of a recipe Recipe

A recipe is a set of instructions that show how to prepare or make something, especially a culinary dish... 

, although many algorithms are much more complex; algorithms often have steps that repeat or require decisions . Algorithms can be composed to create more complex algorithms.

The concept of an algorithm originated as a means of recording procedures for solving mathematical problems such as finding the common divisor of two numbers or multiplying two numbers. The concept was formalized in 1936 through Alan Turing Alan Turing

Alan Mathison Turing, OBE [i] , was an English [i] mathematician [i] ... 

's Turing machines Turing machine

Turing machines are extremely basic symbol-manipulating devices which despite their simplicity can be ... 

 and Alonzo Church Alonzo Church

Alonzo Church was an American [i] mathematician [i] and logician [i] wh ... 

's lambda calculus, which in turn formed the foundation of computer science.

Most algorithms can be directly implemented by computer programs; any other algorithms can at least in theory be simulated by computer programs. In many programming languages, algorithms are implemented as functions or procedures.

Why algorithms are necessary: an informal definition

No agreed-to formal definition of "algorithm" exists. For a detailed presentation of the various points of view see Algorithm characterizations.

We can, however, derive clues to the issues involved and an informal meaning of the word from the following quotation from Boolos and Jeffrey :

"No human being can write fast enough, or long enough, or small enough to list all members of an enumerably infinite set by writing out their names, one after another, in some notation. But humans can do something equally useful, in the case of certain enumerably infinite sets: They can give explicit instructions for determining the nth member of the set, for arbitrary finite n. Such instructions are to be given quite explicitly, in a form in which they could be followed by a computing machine, or by a human who is capable of carrying out only very elementary operations on symbols" .


The words "enumerably infinite" mean "countable using integers perhaps extending to infinity". Thus Boolos and Jeffrey are saying that an algorithm implies instructions for a process that "creates" output integers from an arbitrary "input" integer or integers that, in theory, can be chosen from 0 to infinity. Thus we might expect an algorithm to be an algebraic equation such as y = a x b -- two arbitrary "input variables" a and b that produce an output y. Unfortunately -- as we see in Algorithm characterizations -- that the word algorithm implies much more than this, something on the order of :
Precise instructions for a "fast, efficient, good" process that specifies the "moves" of "the computer" to find, decode, and then munch arbitrary input integers/symbols a and b, symbols x and = ... and produce, in a "reasonable" time, output-integer y at a specified place and in a specified format.

Formalization of algorithms

Algorithms are essential to the way computer Computer

A computer is a machine [i] for manipulating data [i] according to a list of instructions [i] ... 

s process information, because a computer program is essentially an algorithm that tells the computer what specific steps to perform in order to carry out a specified task, such as calculating employees’ paychecks or printing students’ report cards. Thus, an algorithm can be considered to be any sequence of operations which can be performed by a Turing-complete system. Authors who assert this thesis include Savage and Gurevich :

"...Turing's informal argument in favor of his thesis justifies a stronger thesis: every algorithm can be simulated by a Turing machine" ...according to Savage [1987], an algorithm is a computational process defined by a Turing machine."


Typically, when an algorithm is associated with processing information, data is read from an input source or device, written to an output sink or device, and/or stored for further processing. Stored data is regarded as part of the internal state of the entity performing the algorithm. In practice, the state is stored in a data structure Data structure

In computer science [i], a data structure is a way of storing data [i] in a computer so that it can be u ... 

, but an algorithm requires the internal data only for specific operation sets called abstract data types.

For any such computational process, the algorithm must be rigorously defined: specified in the way it applies in all possible circumstances that could arise. That is, any conditional steps must be systematically dealt with, case-by-case; the criteria for each case must be clear .

Because an algorithm is a precise list of precise steps, the order of computation will almost always be critical to the functioning of the algorithm. Instructions are usually assumed to be listed explicitly, and are described as starting 'from the top' and going 'down to the bottom', an idea that is described more formally by flow of control.

So far, this discussion of the formalization of an algorithm has assumed the premises of imperative programming. This is the most common conception, and it attempts to describe a task in discrete, 'mechanical' means. Unique to this conception of formalized algorithms is the assignment operation, setting the value of a variable. It derives from the intuition of 'memory Memory

In psychology [i], memory is the ability of an organism to store, retain, and subsequently recall inform... 

' as a scratchpad. There is an example below of such an assignment.

For some alternate conceptions of what constitutes an algorithm see functional programming and logic programming .

Must an algorithm halt?

Some writers restrict the definition of algorithm to procedures that eventually finish. In such a category Kleene 1952 places the "decision procedure or decision method or algorithm for the question" . Others, including Kleene, include procedures that could run forever without stopping; such a procedure has been called a "computational method" or "calculation procedure or algorithm" ; however, Kleene notes that such a method must eventually exhibit "some object" .

Minksy makes the poigniant observation that, if an algorithm hasn't "terminated" then can we answer the question: "Will it 'terminate with the correct answer?'"
"But if the length of the process is not known in advance, then 'trying' it may not be decisive, because if the process does go on forever -- then at no time will we ever be sure of the answer"


Thus the answer is: undecidable. We can never know, nor can we do an analysis beforehand to find out. The analysis of algorithms for their likelihood of termination is called Termination analysis. See Halting problem for more about this knotty issue.

In the case of non-halting computation method success can no longer be defined in terms of halting with a meaningful output. Instead, terms of success that allow for unbounded output sequences must be defined. For example, an algorithm that verifies if there are more zeros than ones in an infinite random binary sequence must run forever to be effective. If it is implemented correctly, however, the algorithm's output will be useful: for as long as it examines the sequence, the algorithm will give a positive response while the number of examined zeros outnumber the ones, and a negative response otherwise. Success for this algorithm could then be defined as eventually outputting only positive responses if there are actually more zeros than ones in the sequence, and in any other case outputting any mixture of positive and negative responses.

Expressing algorithms

Algorithms can be expressed in many kinds of notation, including natural languages, pseudocode, flowchart Flowchart

A flowchart is a schematic [i] representation of a process [i]. ... 

s, and programming language Programming language

A programming language is an artificial language [i] that can be used to control [i] ... 

s. Natural language expressions of algorithms tend to be verbose and ambiguous, and are rarely used for complex or technical algorithms. Pseudocode and flowcharts are structured ways to express algorithms that avoid many of the ambiguities common in natural language statements, while remaining independent of a particular implementation language. Programming languages are primarily intended for expressing algorithms in a form that can be executed by a computer Computer

A computer is a machine [i] for manipulating data [i] according to a list of instructions [i] ... 

, but are often used as a way to define or document algorithms.

Implementation

Most algorithms are intended to be implemented as computer programs. However, algorithms are also implemented by other means, such as in a biological neural network Neural network

A neural network is a system [i] of interconnecting neuron [i]s in a network [i] working together to pro... 

 , in electric circuits, or in a mechanical device.

Example

One of the simplest algorithms is to find the largest number in an list of numbers. The solution necessarily requires looking at every number in the list, but only once at each. From this follows a simple algorithm, which can be stated in English English language

English is a widely distributed language that originated in England [i] but is now the primary language ... 

 as:

  1. Assume the first item is largest.
  2. Look at each of the remaining items in the list and if it is larger than the largest item so far, make a note of it.
  3. The last noted item is the largest in the list when the process is complete.


Here is a more formal coding of the algorithm in pseudocode:

Input: A non-empty list of numbers L.
Output: The largest number in the list L.

largest ? L0
for each item in the list L=1, do
if the item > largest, then
largest ? the item
return largest

For a more complex example of an algorithm, see Euclid's algorithm Euclidean algorithm

In number theory [i], the Euclidean algorithm is an algorithm [i] to determine the greatest common divisor [i] ... 

, which is one of the oldest algorithms.

Algorithm analysis

As it happens, most people who implement algorithms want to know how much of a particular resource is required for a given algorithm. Methods have been developed for the analysis of algorithms to obtain such quantitative answers; for example, the algorithm above has a time requirement of O, using the big O notation Big O notation

Big O notation or Big Oh notation, and also Landau notation or asymptotic notation, is... 

 with n as the length of the list. At all times the algorithm only needs to remember two values: the largest number found so far, and its current position in the input list. Therefore it is said to have a space requirement of O.

Different algorithms may complete the same task with a different set of instructions in less or more time, space, or effort than others. For example, given two different recipes for making potato salad, one may have peel the potato before boil the potato while the other presents the steps in the reverse order, yet they both call for these steps to be repeated for all potatoes and end when the potato salad is ready to be eaten.

The analysis and study of algorithms is one discipline of computer science, and is often practiced abstractly . In this sense, it resembles other mathematical disciplines in that the analysis focuses on the underlying principles of the algorithm, and not on any particular implementation. The pseudocode is simplest and abstract enough for such analysis.

Classes

There are various ways to classify algorithms, each with its own merits.

Classification by implementation

One way to classify algorithms is by implementation means.

  • Recursion or iteration: A recursive algorithm Recursion

    In mathematics [i] and computer science [i], recursion specifies a class of objects or methods by defi... 

     is one that invokes itself repeatedly until a certain condition matches, which is a method common to functional programming. Iterative algorithms use repetitive constructs like loops and sometimes additional data structures like stacks to solve the given problems. Some problems are naturally suited for one implementation or the other. For example, towers of hanoi Tower of Hanoi

    The Tower of Hanoi or Towers of Hanoi is a mathematical game [i] or puzzle [i]. ... 

     is well understood in recursive implementation. Every recursive version has an equivalent iterative version, and vice versa.


  • Logical: An algorithm may be viewed as controlled logical deduction. This notion may be expressed as:
    Algorithm = logic + control.
    The logic component expresses the axioms which may be used in the computation and the control component determines the way in which deduction is applied to the axioms. This is the basis for the logic programming paradigm. In pure logic programming languages the control component is fixed and algorithms are specified by supplying only the logic component. The appeal of this approach is the elegant semantics: a change in the axioms has a well defined change in the algorithm.


  • Serial or parallel: Algorithms are usually discussed with the assumption that computers execute one instruction of an algorithm at a time. Those computers are sometimes called serial computers. An algorithm designed for such an environment is called a serial algorithm, as opposed to parallel algorithms, which take advantage of computer architectures where several processors can work on a problem at the same time. Parallel algorithms divide the problem into more symmetrical or asymmetrical subproblems and pass them to many processors and put the results back together at one end. The resource consumption in parallel algorithms is both processor cycles on each processor and also the communication overhead between the processors. Sorting algorithms can be parallelized efficiently, but their communication overhead is expensive. Iterative algorithms are generally parallelizable. Some problems have no parallel algorithms, and are called inherently serial problems.


  • Deterministic or non-deterministic: Deterministic algorithms solve the problem with exact decision at every step of the algorithm whereas non-deterministic algorithm solve problems via guessing although typical guesses are made more accurate through the use of heuristics.


  • Exact or approximate: While many algorithms reach an exact solution, approximation algorithms seek an approximation which is close to the true solution. Approximation may use either a deterministic or a random strategy. Such algorithms have practical value for many hard problems.

Classification by design paradigm

Another way of classifying algorithms is by their design methodology or paradigm. There is a certain number of paradigms, each different from the other. Furthermore, each of these categories will include many different types of algorithms. Some commonly found paradigms include:

  • Divide and conquer. A divide and conquer algorithm repeatedly reduces an instance of a problem to one or more smaller instances of the same problem , until the instances are small enough to solve easily. One such example of divide and conquer is merge sorting. Sorting can be done on each segment of data after dividing data into segments and sorting of entire data can be obtained in conquer phase by merging them. A simpler variant of divide and conquer is called decrease and conquer algorithm, that solves an identical subproblem and uses the solution of this subproblem to solve the bigger problem. Divide and conquer divides the problem into multiple subproblems and so conquer stage will be more complex than decrease and conquer algorithms. An example of decrease and conquer algorithm is binary search algorithm.
  • Dynamic programming Dynamic programming

    In computer science [i], dynamic programming is a method for reducing the runtime of algorithm [i]s exhi ... 

    . When a problem shows optimal substructure Optimal substructure

    In computer science [i], a problem is said to have optimal substructure if its optimal solution can be c ... 

    , meaning the optimal solution to a problem can be constructed from optimal solutions to subproblems, and overlapping subproblems, meaning the same subproblems are used to solve many different problem instances, we can often solve the problem quickly using dynamic programming, an approach that avoids recomputing solutions that have already been computed. For example, the shortest path to a goal from a vertex in a weighted graph can be found by using the shortest path to the goal from all adjacent vertices. Dynamic programming and memoization go together. The main difference between dynamic programming and divide and conquer is, subproblems are more or less independent in divide and conquer, where as the overlap of subproblems occur in dynamic programming. The difference between the dynamic programming and straightforward recursion is in caching or memoization of recursive calls. Where subproblems are independent, there is no chance of repetition and memoization does not help, so dynamic programming is not a solution for all. By using memoization or maintaining a table Mathematical table

    Before calculator [i]s were cheap and plentiful, people would use mathematical tables —lists of nu... 

     of subproblems already solved, dynamic programming reduces the exponential nature of many problems to polynomial complexity.
  • The greedy method. A greedy algorithm Greedy algorithm

    A Greedy Algorithm is an algorithm [i] that follows the problem solving [i] metaheuristic [i] of making ... 

     is similar to a dynamic programming algorithm Dynamic programming

    In computer science [i], dynamic programming is a method for reducing the runtime of algorithm [i]s exhi ... 

    , but the difference is that solutions to the subproblems do not have to be known at each stage; instead a "greedy" choice can be made of what looks best for the moment. The difference between dynamic programming and the greedy method is, it extends the solution with the best possible decision at an algorithmic stage based on the current local optimum and the best decision made in previous stage. It is not exhaustive, and does not give accurate answer to many problems. But when it works, it will be the fastest method. The most popular greedy algorithm is finding the minimal spanning tree as given by Kruskal Kruskal's algorithm

    Kruskal's algorithm is an algorithm [i] in graph theory [i] that finds a minimum spanning tree [i] for a ... 

    .
  • Linear programming. When solving a problem using linear programming Linear programming

    In mathematics, linear programming problems are optimization [i] problems in which the objective function [i] ... 

    , the program is put into a number of linear inequalities Inequality

    In mathematics [i], an inequality is a statement about the relative size or order of two objects.

... 

 and then an attempt is made to maximize the inputs. Many problems can be stated in a linear programming way, and then be solved by a 'generic' algorithm such as the simplex algorithm Simplex algorithm

In mathematical optimization theory [i], the simplex algorithm [i] of George Dantzig [i] is ... 

. A complex variant of linear programming is called integer programming, where the solution space is restricted to all integers.
  • Reduction. This is another powerful technique in solving many problems by transforming one problem into another problem. For example, one selection algorithm for finding the median in an unsorted list is first translating this problem into sorting problem and finding the middle element in sorted list. The goal of reduction algorithms is finding the simplest transformation such that complexity of reduction algorithm does not dominate the complexity of reduced algorithm. This technique is also called transform and conquer.
  • Search and enumeration. Many problems can be modeled as problems on graphs Graph theory

    In mathematics [i] and computer science [i], graph theory is the study of graphs [i], mathema ... 

    . A graph exploration algorithm specifies rules for moving around a graph and is useful for such problems. This category also includes the search algorithms and backtracking.
  • The probabilistic and heuristic paradigm. Algorithms belonging to this class fit the definition of an algorithm more loosely.

  1. Probabilistic algorithms are those that make some choices randomly ; for some problems, it can in fact be proven that the fastest solutions must involve some randomness.
  2. Genetic algorithms attempt to find solutions to problems by mimicking biological evolution Evolution

    In biology [i], evolution is the change in the heritable [i] traits [i] of a population [i] ... 

    ary processes, with a cycle of random mutations yielding successive generations of "solutions". Thus, they emulate reproduction and "survival of the fittest". In genetic programming, this approach is extended to algorithms, by regarding the algorithm itself as a "solution" to a problem. Also there are
  3. Heuristic algorithms, whose general purpose is not to find an optimal solution, but an approximate solution where the time or resources to find a perfect solution are not practical. An example of this would be local search, taboo search, or simulated annealing algorithms, a class of heuristic probabilistic algorithms that vary the solution of a problem by a random amount. The name "simulated annealing" alludes to the metallurgic term meaning the heating and cooling of metal to achieve freedom from defects. The purpose of the random variance is to find close to globally optimal solutions rather than simply locally optimal ones, the idea being that the random element will be decreased as the algorithm settles down to a solution.

Classification by field of study

Every field of science has its own problems and needs efficient algorithms. Related problems in one field are often studied together. Some example classes are search algorithms, sorting algorithms, merge algorithms, numerical algorithms, graph algorithms Graph theory

In mathematics [i] and computer science [i], graph theory is the study of graphs [i], mathema ... 

, string algorithms, computational geometric algorithms, combinatorial algorithms, machine learning, cryptography Cryptography

Cryptography is a discipline of mathematics [i] concerned with information security [i] and related iss ... 

, data compression algorithms and parsing techniques.

Some of these fields overlap with each other and advancing in algorithms for one field causes advancement in many fields and sometimes completely unrelated fields. For example, dynamic programming is originally invented for optimisation in resource consumption in industries, but it is used in solving broad range of problems in many fields.

Classification by complexity

This is actually problem classification in the strict sense. Some algorithms complete in linear time, and some complete in exponential amount of time, and some never complete. One problem may have multiple algorithms, and some problems may have no algorithms. Some problems have no known efficient algorithms. There are also mappings from some problems to other problems. So computer scientists found it is suitable to classify the problems rather than algorithms into equivalence classes based on the complexity.

Legal issues

Some countries allow algorithms to be patented Patent

A patent is a set of exclusive right [i]s granted by a state [i] to a patentee for a fixed period of time [i] ... 

 when embodied in software or in hardware. Patents have long been a controversial issue . Some countries do not allow certain algorithms, such as cryptographic algorithms, to be exported from that country.

History: Development of the notion of "algorithm"


Origin of the word


The word algorithm comes from the name of the 9th century Persian Persian people

The Persians are an Iranian people [i] who speak the Persian language [i] and share a co ... 

 Muslim mathematician Abu Abdullah Muhammad ibn Musa al-Khwarizmi Muhammad ibn Musa al-Khwarizmi

was a Persian [i] mathematician [i], astronomer [i], astrologer [i]... 

. The word algorism originally referred only to the rules of performing arithmetic using Hindu-Arabic numerals Hindu-Arabic numeral system

The Hindu-Arabic numeral system is a positional [i] decimal [i] numeral system [i] documented from the 9th century [i] ... 

 but evolved via European Latin translation of al-Khwarizmi's name into algorithm by the 18th century. The word evolved to include all definite procedures for solving problems or performing tasks.

Discrete and distinguishable symbols


Tally-marks: To keep track of their flocks, their sacks of grain and their money the ancients used tallying – accumulating stones, or marks -- discrete symbols in clay or scratched on sticks. Through the Babylonians and Egyptian use of marks and symbols eventually Roman numerals Roman numerals

The system of Roman numerals is a numeral system [i] originating in ancient Rome [i], and was adapted fr ... 

 and the abacus Abacus

An abacus is a calculation tool, often constructed as a wooden frame with beads sliding on wires.... 

 evolved. Tally marks appear prominently in unary numeral system Unary numeral system

The unary numeral system is the simplest numeral system [i] to represent natural number [i]s: in order ... 

 arithmetic used in Turing machine Turing machine

Turing machines are extremely basic symbol-manipulating devices which despite their simplicity can be ... 

 and Post-Turing machine Post-Turing machine

A Post-Turing machine is a "program formulation" of an especially simple type of Turing machine [i], com ... 

 computations.

Manipulation of symbols as "place holders" for numbers: algebra

The work of the ancient Greek geometers, Persian mathematician Al-Khwarizmi -- often considered as the "father of algebra Algebra

Algebra is a branch of mathematics [i] concerning the study of structure [i], relation [i] ... 

", Chinese and Western European mathematicans culminated in Leibniz Gottfried Leibniz

Gottfried Wilhelm Leibniz was a German [i] polymath [i] who wrote mostly in French and Latin.
... 

' notion of the calculus ratiocinator :
"A good century and a half ahead of his time, Leibniz proposed an algebra of logic, an algebra that would specify the rules for manipulating logical concepts in the manner that ordinary algebra specifies the rules for manipulating numbers" .

Mechanical contrivances with discrete states


The clock: Bolter credits the invention of the weight-driven clock Clock

A clock is an instrument for measuring time [i] and for measuring time intervals of less than a day&mda... 

 as “The key invention [of Europe in the Middle ages]", in particular the verge escapement  that provides us with the tick and tock of a mechanical clock. “The accurate automatic machine” led immediately to "mechanical automata Automaton

An automaton is a self-operating machine.... 

" beginning in the thirteenth century and finally to “computational machines" – the difference engine Difference engine

A difference engine is a special-purpose mechanical digital calculator [i], designed to tabulate polynomial functions [i] ... 

 and analytical engines of Charles Babbage Charles Babbage

Charles Babbage was an English [i] mathematician [i], analytical philosopher [i] ... 

 and Countess Ada Lovelace Ada Lovelace

Augusta Ada King, Countess of Lovelace is mainly known for having written a description of
... 

 .

Jacquard loom, Hollerith punch cards, telegraphy and telephony -- the electromechanical relay: Bell and Newell indicate that the Jacquard loom Jacquard loom

The Jacquard loom is a mechanical loom [i], invented by Joseph Marie Jacquard [i] in 1801 [i], which use ... 

 , precursor to Hollerith cards Punch card

The punch card is an obsolescent [i] recording medium [i] for digital information for use by automated ... 

 , and “telephone switching technologies” were the roots of a tree leading to the development of the first computers . By the mid-1800’s the telegraph Telegraphy

Telegraphy is the long-distance transmission of written messages without physical transport of letters,... 

, as the precursor of the telephone, was in use throughout the world, its discrete and distinguishable encoding of letters as “dots and dashes” a common sound. By the late 1800’s the ticker tape Ticker tape

Ticker tape was used by ticker tape machines, stock ticker machines, or just stock tickers.... 

  was in use, as were the use of Hollerith cards Punch card

The punch card is an obsolescent [i] recording medium [i] for digital information for use by automated ... 

 in the 1890 U.S. census, the Teletype Teleprinter

A teleprinter is a now largely obsolete electro-mechanical typewriter [i] which can be used to communic... 

  with its the use of punched-paper binary encoding Baudot code Baudot code

The Baudot code, named after its inventor [i] mile Baudot [i], is a character set [i] ... 

 on tape.

Telephone-switching networks of electromechanical relay Relay

A relay is an electrical switch [i] that opens and closes under control of another electrical circuit. ... 

s was behind the work of George Stibitz George Stibitz

George Stibitz was a Bell Labs [i] researcher mostly known for his 1930s and 1940s work on the realizati ... 

 , the inventor of the digital adding device. As he worked in Bell Laboratories, he observed the “burdensome’ use of mechanical calculators with gears. "He went home one evening in 1937 intending to test his idea.... When the tinkering was over, Stibitz had constructed a binary adding device" .

Davis observes the particular importance of the electromechanical relay :
It was only with the development, beginning in the 1930's, of electromechanical calculators using electrical relays, that machines were built having the scope Babbage had envisioned."

Mathematics during the 1800’s up to the mid-1900’s


Symbols and rules: In rapid succession the mathematics of George Boole , Gottlob Frege Gottlob Frege

Friedrich Ludwig Gottlob Frege was a German [i] mathematician [i] who became a logic [i] ... 

 , and Giuseppe Peano Giuseppe Peano

Giuseppe Peano was the leading Italian [i] mathematician [i] of his day, whose work is of excepti ... 

  reduced arithmetic to a sequence of symbols manipulated by rules. Peano's The principles of arithmetic, presented by a new method was "the first attempt at an axiomatization of mathematics in a symbolic language" .

But Heijenoort gives Frege this kudos: Frege’s is “perhaps the most important single work ever written in logic. ... in which we see a “ 'formula language', that is a lingua characterica, a language written with special symbols, "for pure thought", that is, free from rhetorical embellishments ... constructed from specific symbols that are manipulated according to definite rules". The work of Frege was further simplified and amplified by Alfred North Whitehead Alfred North Whitehead

Alfred North Whitehead, OM [i] was an English mathematician [i] who became an American philosopher [i] ... 

 and Bertrand Russell Bertrand Russell

Bertrand Arthur William Russell, 3rd Earl Russell, OM [i], FRS [i] ... 

 in their Principia Mathematica Principia Mathematica

The Principia Mathematica is a 3-volume work on the foundations of mathematics [i], written by Alfred North Whitehead [i] ... 

 .

The paradoxes: At the same time a number of disturbing paradoxes appeared in the literature, in particular the Burali-Forti paradox , the Russell paradox , and the Richard Paradox , . The resultant considerations led to Kurt Gödel Kurt Gödel

Kurt Gdel was a logician [i], mathematician [i], and philosopher of mathematics [i] ... 

’s paper -- he specifically cites the paradox of the liar -- that completely reduces rules of recursion Recursion

In mathematics [i] and computer science [i], recursion specifies a class of objects or methods by defi... 

 to numbers. In rapid succession the following appeared: Church-Kleene's ?-calculus , Church's theorem , Emil Post's "process" , Alan Turing Alan Turing

Alan Mathison Turing, OBE [i] , was an English [i] mathematician [i] ... 

's "a- [automatic-] machine" , J. Barkley Rosser's definition of "effective method" in terms of "a machine" , and S. C. Kleene's proposal of the "Church-Turing thesis"

Emil Post and Alan Turing


Here is a remarkable coincidence of two men not knowing one another but describing a process of men-as-computers working on computations -- and they yield virtually identical definitions.

Emil Post  described the actions of a "computer" as follows:
"...two concepts are involved: that of a symbol space in which the work leading from problem to answer is to be carried out, and a fixed unalterable set of directions.


His symbol space would be
"a two way infinite sequence of spaces or boxes... The problem solver or worker is to move and work in this symbol space, being capable of being in, and operating in but one box at a time.... a box is to admit of but two possible conditions, i.e. being empty or unmarked, and having a single mark in it, say a vertical stroke.


"One box is to be singled out and called the starting point. ...a specific problem is to be given in symbolic form by a finite number of boxes [i.e. INPUT] being marked with a stroke. Likewise the answer [i.e. OUTPUT] is to be given in symbolic form by such a configuration of marked boxes....


"A set of directions applicable to a general problem sets up a deterministic process when applied to each specific problem. This process will terminate only when it comes to the direction of type [i.e. STOP]." See more at Post-Turing machine Post-Turing machine

A Post-Turing machine is a "program formulation" of an especially simple type of Turing machine [i], com ... 




Alan Turing Alan Turing

Alan Mathison Turing, OBE [i] , was an English [i] mathematician [i] ... 

’s work preceded that of Stibitz ; it is unknown if Stibitz knew of the work of Turing. Turing’s biographer believed that Turing’s use of a typewriter-like model derived from a youthful interest: “Alan had dreamt of inventing typewriters as a boy; Mrs. Turing had a typewriter; and he could well have begun by asking himself what was meant by calling a typewriter 'mechanical'" Given the prevalence of Morse code and telegraphy, ticker tape machines, and Teletypes we might conjecture that all were influences.

Turing -- his model of computation is now called a Turing machine Turing machine

Turing machines are extremely basic symbol-manipulating devices which despite their simplicity can be ... 

 -- begins, as did Post, with an analysis of a human computer that he whittles down to a simple set of basic motions and "states of mind". But he continues a step further and creates his machine as a model of computation of numbers :

"Computing is normally done by writing certain symbols on paper. We may suppose this paper is divided into squares like a child's arithmetic book....I assume then that the computation is carried out on one-dimensional paper, i.e. on a tape divided into squares. I shall also suppose that the number of symbols which may be printed is finite....


"The behavior of the computer at any moment is determined by the symbols which he is observing, and his "state of mind" at that moment. We may suppose that there is a bound B to the number of symbols or squares which the computer can observe at one moment. If he wishes to observe more, he must use successive observations. We will also suppose that the number of states of mind which need be taken into account is finite...


"Let us imagine that the operations performed by the computer to be split up into 'simple operations' which are so elementary that it is not easy to imagine them further divided" .


Turing's reduction yields the following:

"The simple operations must therefore include:

" Changes of the symbol on one of the observed squares
" Changes of one of the squares observed to another square within L squares of one of the previously observed squares.
"It may be that some of these change necessarily invoke a change of state of mind. The most general single operation must therefore be taken to be one of the following:
" A possible change of symbol together with a possible change of state of mind.
" A possible change of observed squares, together with a possible change of state of mind"

"We may now construct a machine to do the work of this computer."

J. B. Rosser and S. C. Kleene


J. Barkley Rosser boldly defined an ‘effective [mathematical] method’ in the following manner :
"'Effective method' is used here in the rather special sense of a method each step of which is precisely determined and which is certain to produce the answer in a finite number of steps. With this special meaning, three different precise definitions have been given to date. [his footnote #5; see discussion immediately below]. The simplest of these to state says essentially that an effective method of solving certain sets of problems exists if one can build a machine which will then solve any problem of the set with no human intervention beyond inserting the question and reading the answer. All three definitions are equivalent, so it doesn't matter which one is used. Moreover, the fact that all three are equivalent is a very strong argument for the correctness of any one.


Rosser's footnote #5 references the work of Church and Kleene and their definition of ?-definability, in particular Church's use of it in his An Unsolvable Problem of Elementary Number Theory ; Herbrand and Gödel and their use of recursion in particular Gödel's use in his famous paper On Formally Undecidable Propostions of Principia Mathematica and Related Systems I ; and Post and Turing in their mechanism-models of computation.

Stephen C. Kleene defined as his now-famous "Thesis I" known as "the Church-Turing Thesis". But he did this in the following context :
"12. Algorithmic theories... In setting up a complete algorithmic theory, what we do is to describe a procedure, performable for each set of values of the independent variables, which procedure necessarily terminates and in such manner that from the outcome we can read a definite answer, "yes" or "no," to the question, "is the predicate value true?”"

See also

  • Abstract machine
  • Algorism
  • Algorithmic music
  • Algorithmic trading
  • Computability theory
  • Data structure Data structure

    In computer science [i], a data structure is a way of storing data [i] in a computer so that it can be u ... 

  • Important algorithm-related publications
  • List of algorithms
  • List of algorithm general topics
  • List of terms relating to algorithms and data structures
  • Theory of computation

Notes


References

  • . cf chapter 3 Turing machines where they discuss "certain enumerable sets not effectively enumerable".
  • Andraes Blass and Yuri Gurevich , , Bulletin of European Association for Theoretical Computer Science 81, 2003. Includes an excellent bibliography of 56 references.
  • Reprinted in The Undecidable, p. 89ff. The first expression of "Church's Thesis". See in particular page 100 where he defines the notion of "effective calculability" in terms of "an algorithm", and he uses the word "terminates", etc.
  • Davis gives commentary before each article. Papers of Gödel, Alonzo Church Alonzo Church

    Alonzo Church was an American [i] mathematician [i] and logician [i] wh ... 

    , Turing, Rosser, Kleene, and Emil Post are included.
  • Davis offers concise biographies of Leibniz Gottfried Leibniz

    Gottfried Wilhelm Leibniz was a German [i] polymath [i] who wrote mostly in French and Latin.

... 

, Boole, Frege Gottlob Frege

Friedrich Ludwig Gottlob Frege was a German [i] mathematician [i] who became a logic [i] ... 

, Cantor, Hilbert David Hilbert

David Hilbert was a German [i] mathematician [i], recognized as one of the most influential and ... 

, Gödel and Turing with von Neumann John von Neumann

John von Neumann was an Austro-Hungarian [i] mathematician [i] and polymath [i] who ma ... 

 as the show-stealing villain. Very brief bios of Joseph-Marie Jacquard Joseph Marie Jacquard

Joseph Marie Jacquard was a French silk weaver and inventor [i], who improved on the original punched card [i] ... 

, Babbage Charles Babbage

Charles Babbage was an English [i] mathematician [i], analytical philosopher [i] ... 

, Ada Lovelace Ada Lovelace

Augusta Ada King, Countess of Lovelace is mainly known for having written a description of
... 

, Claude Shannon Claude Elwood Shannon

Claude Elwood Shannon , an American [i] electrical engineer [i] and mathematician [i] ... 

, Howard Aiken Howard Aiken

Howard Hathaway Aiken was a pioneer in computing [i], being the primary engineer behind IBM [i]'s Harvard Mark I [i] ... 

, etc.
  • Yuri Gurevich, , ACM Transactions on Computational Logic, Vol 1, no 1 , pages 77-111. Includes bibliography of 33 sources.
  • Excellent -- accessible, readable -- reference source for mathematical "foundations".
  • A. A. Markov Andrey Markov

    Andrey Andreyevich Markov was a Russia [i]n mathematician [i]. ... 

      Theory of algorithms. [Translated by Jacques J. Schorr-Kon and PST staff] Imprint Moscow, Academy of Sciences of the USSR, 1954 [i.e. Jerusalem, Israel Program for Scientific Translations, 1961; available from the Office of Technical Services, U.S. Dept. of Commerce, Washington] Description 444 p. 28 cm. Added t.p. in Russian Translation of Works of the Mathematical Institute, Academy of Sciences of the USSR, v. 42. Original title: Teoriya algerifmov. [QA248.M2943 Dartmouth College library. U.S. Dept. of Commerce, Office of Technical Services, number OTS 60-51085.]
  • Minsky expands his "...idea of an algorithm -- an effective procedure..." in chapter 5.1 Computability, Effective Procedues and Algorithms. Infinite machines."
  • Reprinted in The Undecidable, p. 289ff. Post defines a simple algorithmic-like process of a man writing marks or erasing marks and going from box to box and eventually halting, as he follows a list of simple instructions. This is cited by Kleene as one source of his "Thesis I", the so-called Church-Turing thesis.
  • Reprinted in The Undecidable, p. 223ff. Herein is Rosser's famous definition of "effective method": "...a method each step of which is precisely predetermined and which is certain to produce the answer in a finite number of steps... a machine which will then solve any problem of the set with no human intervention beyond inserting the question and reading the answer"
  • Cf in particular the first chapter titled: Algorithms, Turing Machines, and Programs. His succinct informal definition: "...any sequence of instructions that can be obeyed by a robot, is called an algorithm" .

Secondary references

  • , ISBN 0-671-49207-1. Cf Chapter "The Spirit of Truth" for a history leading to, and a discussion of, his proof. A wonderful biography.


  • , ISBN 0-312-10409-X


  • , ISBN 0-8078-4108-0 pbk.


  • , 3rd edition 1976[?], ISBN 0-674-32449-8

External links