Skip to content

22. Time Complexity

Mar 24, 2022

Consider a deterministic TM M that decides language L:

  • for any string w the computation of M terminates in finite amount of transitions
  • number of transitions == decision time

Now consider all strings of length n

  • TM(n) = maximum time required to decide any string of length n

TIME(T(N)) => decidable by deterministic TM in time O(T(n))

  • e.g. decidable in O(n) time:

    • {anb:n0}
    • {abnaba:n,k0}
    • {bn:n is even}
  • e.g. decidable in O(n2) time:

    • {anbn:n0}
    • {wwR:w{a,b}}
    • {ww:w{a,b}}
  • e.g. decidable in O(n3) time:

    • CYK algorithm: L2 = {<G,w> : w is generated by CFG G }
    • matrix multiplication: L3 = { <Ma,M2,M3> : n×n matrices and M1×M2=M3 }

Polynomial time algorithms: TIME(nk) constant k>0

  • represents tractable algorithms: for small k we can decide the result fast

Classes: it can be shown TIME(nk) TIME(nk+1)

Class P

P=kTIME(nk)

Polynomial time algorithms; "tractable" problems

e.g. {anb}, {ww}, CYK, matrix multiplication

Exponential

Non-deterministic

Language class NTIME(T(n))

  • a non-deterministic TM decides each string og length n in time O(T(n))
  • non-deterministic polynomial time algorithms LNTIME(nk)

Class NP

NP=kNTIME(nk)

  • e.g. satisfyability problem, non-deterministic algorithm:
    • guess an assignment of variables
    • check if this is a satisfying assignment
  • the other exponential problems are in NP class

Alternative definition for NP: set of languages that have polynomial time verifier.

Verifier for language L us an (deterministic) algorithm that checks if a certificate c is a solution to the problem instance wL.

Theorem: Language L is in NP if and only if it has polynomial time verifier

L is in NP => it has polynomial time verifier

Algorithm for polynomial time verifier: for each input pair <w,c>: run (polynomial time) NTM for L with input w forcing the transition choices determined by c.

Observation: PNP