Difference between revisions of "Computational complexity theory"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
(See also)
 
(3 intermediate revisions by the same user not shown)
Line 29: Line 29:
 
== See also ==
 
== See also ==
  
* [[Adivce (complexity)]]
+
* [[2-satisfiability]] - the problem of determining whether a collection of two-valued ([[Boolean algebra|Boolean]] or [[Binary number|binary]]) variables with [[Constraint (mathematics)|constraints]] on pairs of variables can be assigned values satisfying all the constraints.
 +
* [[Advice (complexity)]]
 
* [[Algorithm]]
 
* [[Algorithm]]
 
* [[Analysis of algorithms]]
 
* [[Analysis of algorithms]]
 +
* [[:Category:Computational problems]]
 
* [[Complexity class]]
 
* [[Complexity class]]
 
* [[Computability theory]]
 
* [[Computability theory]]
 
* [[Computation]]
 
* [[Computation]]
 
* [[Computer science]]
 
* [[Computer science]]
 +
* [[Context of computational complexity]]
 
* [[Decision problem]]
 
* [[Decision problem]]
 +
* [[Descriptive complexity theory]]
 
* [[Formal language]]
 
* [[Formal language]]
 +
* [[Game complexity]]
 +
* [[List of complexity classes]]
 +
* [[List of computability and complexity topics]]
 +
* [[List of important publications in theoretical computer science]]
 +
* [[List of unsolved problems in computer science]]
 
* [[Logic gate]]
 
* [[Logic gate]]
 
* [[Mathematics]]
 
* [[Mathematics]]
Line 43: Line 52:
 
* [[Parallel computation with molecular-motor-propelled agents in nanofabricated networks]]
 
* [[Parallel computation with molecular-motor-propelled agents in nanofabricated networks]]
 
* [[Parallel computing]]
 
* [[Parallel computing]]
 +
* [[Parameterized complexity]]
 +
* [[Proof complexity]]
 +
* [[Quantum complexity theory]]
 +
* [[Structural complexity theory]]
 +
* [[Transcomputational problem]]
 
* [[Theoretical computer science]]
 
* [[Theoretical computer science]]
 
* [[Theory of computation]]
 
* [[Theory of computation]]
Line 51: Line 65:
  
 
[[Category:Complexity]]
 
[[Category:Complexity]]
 +
[[Category:Computation]]
 
[[Category:Computer science]]
 
[[Category:Computer science]]
[[Category:Computing]]
 
 
[[Category:Mathematics]]
 
[[Category:Mathematics]]

Latest revision as of 12:34, 24 August 2016

Computational complexity theory is a branch of the theory of computation in theoretical computer science and mathematics that focuses on classifying computational problems according to their inherent difficulty, and relating those complexity classes to each other.

A computational problem is understood to be a task that is in principle amenable to being solved by a computer, which is equivalent to stating that the problem may be solved by mechanical application of mathematical steps, such as an algorithm.

Measures of difficulty

A problem is regarded as inherently difficult if its solution requires significant resources, whatever the algorithm used.

The theory formalizes this intuition, by introducing mathematical models of computation to study these problems and quantifying the amount of resources needed to solve them, such as time and storage.

Other complexity measures are also used, such as:

One of the roles of computational complexity theory is to determine the practical limits on what computers can and cannot do.

Related fields

Closely related fields in theoretical computer science are analysis of algorithms and computability theory.

A key distinction between analysis of algorithms and computational complexity theory is that the former is devoted to analyzing the amount of resources needed by a particular algorithm to solve a problem, whereas the latter asks a more general question about all possible algorithms that could be used to solve the same problem.

More precisely, it tries to classify problems that can or cannot be solved with appropriately restricted resources.

In turn, imposing restrictions on the available resources is what distinguishes computational complexity from computability theory: the latter theory asks what kind of problems can, in principle, be solved algorithmically.

See also

External links