Trisha Shetty (Editor)

Blum axioms

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In computational complexity theory the Blum axioms or Blum complexity axioms are axioms that specify desirable properties of complexity measures on the set of computable functions. The axioms were first defined by Manuel Blum in 1967.

Contents

Importantly, the Speedup and Gap theorems hold for any complexity measure satisfying these axioms. The most well-known measures satisfying these axioms are those of time (i.e., running time) and space (i.e., memory usage).

Definitions

A Blum complexity measure is a tuple ( φ , Φ ) with φ a Gödel numbering of the partial computable functions P ( 1 ) and a computable function

Φ : N P ( 1 )

which satisfies the following Blum axioms. We write φ i for the i-th partial computable function under the Gödel numbering φ , and Φ i for the partial computable function Φ ( i ) .

  • the domains of φ i and Φ i are identical.
  • the set { ( i , x , t ) N 3 | Φ i ( x ) = t } is recursive.
  • Examples

  • ( φ , Φ ) is a complexity measure, if Φ is either the time or the memory (or some suitable combination thereof) required for the computation coded by i.
  • ( φ , φ ) is not a complexity measure, since it fails the second axiom.
  • Notes

    A Blum complexity measure is defined using computable functions without any reference to a specific model of computation. In order to make the definition more accessible we rephrase the Blum axioms in terms of Turing machines:

    A Blum complexity measure is a function Φ from pairs (Turing machine M , input x for M ) to the natural numbers union infinity. Furthermore, Φ should satisfy the following axioms:

  • Φ ( M , x ) is finite if and only if M ( x ) halts
  • There is an algorithm which, on input ( M , x , n ) decides if Φ ( M , x ) = n
  • For example, suppose Φ ( M , x ) gives the number of time steps that the machine M runs for on input x before halting. The first axiom is clear; the second follows because a universal Turing machine can simulate M on x while counting its steps. If M exceeds n steps, it can halt and reject, so there is no need to determine if M halts on x.

    Complexity classes

    For a total computable function f complexity classes of computable functions can be defined as

    C ( f ) := { φ i P ( 1 ) | x .   Φ i ( x ) f ( x ) } C 0 ( f ) := { h C ( f ) | c o d o m ( h ) { 0 , 1 } }

    C ( f ) is the set of all computable functions with a complexity less than f . C 0 ( f ) is the set of all boolean-valued functions with a complexity less than f . If we consider those functions as indicator functions on sets, C 0 ( f ) can be thought of as a complexity class of sets.

    References

    Blum axioms Wikipedia