Suchprobleme
Suchprobleme, or search problems, are computational tasks where the input is given and the goal is to produce a witness that satisfies a specified relation. For many inputs there may be zero or more valid outputs; the objective is to compute one valid output when such outputs exist. This contrasts with decision problems, which ask only whether a witness exists, and with optimization problems, which seek the best output according to some criterion.
Formally, a search problem is defined by a relation R ⊆ Σ* × Γ*, where the domain Dom(R) = { x
In complexity theory, Suchprobleme are studied through function classes such as FNP (the function analogue of
Examples include SAT, where the task is to output a satisfying assignment for a given boolean formula;
See also: NP, FP, FNP, TFNP, decision problems, optimization problems.