22. Time Complexity
Mar 24, 2022
Consider a deterministic TM
- for any string
the computation of terminates in finite amount of transitions - number of transitions == decision time
Now consider all strings of length
= maximum time required to decide any string of length
-
e.g. decidable in
time: -
e.g. decidable in
time: -
e.g. decidable in
time:- CYK algorithm:
= { : w is generated by CFG G } - matrix multiplication:
= { : matrices and }
- CYK algorithm:
Polynomial time algorithms: TIME
- represents tractable algorithms: for small
we can decide the result fast
Classes: it can be shown TIME
Class P
Polynomial time algorithms; "tractable" problems
e.g.
Exponential
- Represents intractable algorithms => solvable only for small instance
- solvable by brute force (expensive) => approximation algorithms approximate solution and usually tractable
- e.g. Hamiltonian path problem, clique problem, the satisfiability problem
Non-deterministic
Language class
- a non-deterministic TM decides each string og length
in time - non-deterministic polynomial time algorithms
Class NP
- 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
Theorem: Language
L is in NP => it has polynomial time verifier
Algorithm for polynomial time verifier: for each input pair
Observation: