CoT: Chain of Thought—prompting the model to generate intermediate reasoning steps before the final answer
AC0: A complexity class of problems solvable by circuits with constant depth and polynomial size, using AND, OR, NOT gates with unbounded fan-in (cannot solve parity)
TC0: A complexity class like AC0 but extended with MAJORITY gates (can solve parity and simple arithmetic)
NC1: A complexity class of problems solvable by circuits with logarithmic depth and bounded fan-in (captures simple serial computations)
P/poly: The class of problems solvable by polynomial-size Boolean circuits; contains all efficient deterministic algorithms (P)
Permutation Composition: The task of computing the product of a sequence of permutations; inherently serial because the state depends on the entire history
Circuit Value Problem (CVP): Given a Boolean circuit and inputs, compute the output; a canonical P-complete problem that is inherently serial
Iterated Squaring: Computing x^(2^n) mod m; requires sequential multiplications and is hard to parallelize
Modular Addition: Computing the sum of numbers modulo m; theoretically parallelizable (in TC0)
Fan-in: The number of input wires feeding into a logic gate