Chapter 12: Theory of Computation Flashcards

1
Q

Functions

A
  • Function: each possible input value maps to a single output value
  • Computable functions: can be computed by some algorithm
  • Non-computable function: can not be computed by any algorithm
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Turing machines

A
  • Turing machines: tool for studying the power of computing (algorithm processing)
  • Turing machine components:
    Control unit (state and actions)
    Tape (infinite)
    Read-write head
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Church-Turing thesis

A
  • Turing computable functions are equivalent to computable functions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The halting problem

A
  • A program is self-terminating if its execution terminates when started with itself as input.
  • The halting problem:
    Given the encoded version of any program, return 1 if the program is self-terminating, or 0 if it is not.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Polynomial and non-polynomial problems

A

Polynomial problem: problem for which there exists an algorithmic solution with complexity class O(n^x) for som x

  • Non-polynomial problem: problem for which there exists no algorithmic solution within complexity class O(n^x) for any x
  • Polynomial problems are practically solvable (and theoretically solvable), while non-polynomial problems are practically unsolvable (but theoretically solvable)
  • Exponential growth O(2^n)) is non.-polynomial
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Non-deterministic polynomial problems

A
  • Non-deterministic algorithm: “algorithm” whose steps may not be uniquely and completely determined by the process state.
  • Non-deterministic polynomial problem: problem for which there exists a non-deterministic algorithmic solution within complexity class O(n^x) for som x
  • Example:
    traveling salesman problem: find the best way to visit a number of cities.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

P versus NP

A
  • P: the class of polynomial problems
  • NP: the class of non-deterministic polynomial problems
  • Whether NP is bigger than P is currently not known
How well did you know this?
1
Not at all
2
3
4
5
Perfectly