Course - Computational Complexity HT25


This course covers the basics of computational complexity, which studies the amount of resources required to solve certain computational problems, and looks at the relationships between these problems and resources.
Some of the resources considered are: time, space, non-determinism, non-uniformity and randomness. Problems can be collected into “complexity classes” which group together problems with the same resource requirements, such as:

  • $\mathsf P$: Problems solvable in polynomial time using a deterministic Turing machine.
  • $\mathsf{EXP}$: Problems solvable in time $2^{\text{poly}(n)}$ using a deterministic Turing machine.
  • $\mathsf{PSPACE}$: Problems solvable in deterministic polynomial space.
  • $\mathsf{NP}$: Problems solvable by a non-deterministic Turing machine in polynomial time.
  • $\mathsf{P} _ {/\text{poly}}$: Problems solvable in polynomial time using a deterministic Turing machine with polynomial-sized advice, or equivalently solvable using a family of polynomially-sized circuits.
  • $\mathsf{BPP}$: Problems solvable with appropriately bounded probability of error using a randomised Turing machine.
    There’s a lot that’s not known about the relationship between these classes. The most famous open problem is $\mathsf{P} \stackrel?= \mathsf{NP}$, which effectively asks whether any problem for which the solution can be efficiently verified can also be efficiently solved.

Notes

The start of the course has significant overlap with:

The presentation of this material is slightly different, e.g. in this course the main model of computation discussed in a $k$-tape Turing machine, but in [[Course - Models of Computation MT23]]U, Turing machines were primarily discussed in a single-tape context).

Problem Sheets

To-Do List




Related posts