my-server
← Wiki

TC (complexity)

In theoretical computer science, and specifically computational complexity theory and circuit complexity, TC (Threshold Circuit) is a complexity class of decision problems that can be recognized by threshold circuits, which are Boolean circuits with AND, OR, and Majority gates, or equivalently, threshold gates. For each fixed i, the complexity class TC<sup>i</sup> consists of all languages that can be recognized by a family of threshold circuits of depth , polynomial size, and unbounded fan-in. The class TC is defined via

The class was proposed in 1988 to formalize the computational complexity of artificial neural networks.

Relation to NC and AC

The relationship between the TC, NC and the AC hierarchy can be summarized as follows:

In particular, we know that

The first strict containment follows from the fact that NC<sup>0</sup> cannot compute any function that depends on all the input bits. Thus choosing a problem that is trivially in AC<sup>0</sup> and depends on all bits separates the two classes. (For example, consider the OR function.) The strict containment AC<sup>0</sup> ⊊ TC<sup>0</sup> follows because parity and majority (which are both in TC<sup>0</sup>) were shown to be not in AC<sup>0</sup>.

As an immediate consequence of the above containments, we have that NC = AC = TC.

References