A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Many-One and Turing Reducibility

Graduate Depth 95 in the knowledge graph I know this Set as goal
549prerequisites beneath it
See this on the map →
Computability ReductionsPolynomial-Time Reductions+1 more
reductions hardness decidability

Core Idea

Many-one reducibility (A ≤_m B) transforms instances of A to instances of B via a single function and preserves hardness notions while defining degree structures. Turing reducibility (A ≤_T B) allows using a B-oracle adaptively during computation, classifying problems by computational power more finely. While many-one reducibility is standard for NP-completeness, Turing reducibility is more fundamental in computability theory and degree theory.

Explainer

You already understand reductions as the tool for comparing problem difficulty: if A reduces to B, then B is at least as hard as A. The distinction between many-one and Turing reducibility is about *how much power* the reduction itself is allowed to use — specifically, how many oracle queries it makes and whether it can adapt based on the answers.

A many-one reduction from A to B (written A ≤_m B) is the most restrictive form: you are given one instance of A, you compute a single instance of B, and you accept or reject based solely on whether that one B-instance is in B. The reduction makes exactly one non-adaptive query. This is the reduction you use in NP-completeness: to show SAT ≤_m 3-COLOR, you map each SAT formula to a graph such that the formula is satisfiable iff the graph is 3-colorable. You never look at what the answer is before finishing the transformation.

A Turing reduction from A to B (written A ≤_T B) models computation *with a B-oracle*: a machine that can query "is x ∈ B?" at any point during computation, receive a yes/no answer immediately, and then continue computing based on the result. It can make many queries, and later queries can depend on the answers to earlier ones. This is strictly more powerful. For example, the complement of the halting problem is not many-one reducible to the halting problem, but it *is* Turing reducible (use the oracle to answer the halting question, then flip the output). Many-one reduction can preserve complement only in special cases; Turing reduction handles complements trivially.

The difference creates two distinct degree structures. Turing degrees (also called degrees of unsolvability) group languages together if A ≤_T B and B ≤_T A — they have the same computational power, even if one is not many-one reducible to the other. Many-one degrees are finer: A and its complement are in the same Turing degree but generally different many-one degrees. Computability theory is largely organized around Turing degrees, while complexity theory (especially NP-completeness) uses many-one reductions because they better capture the notion of "no extra power in the reduction itself."

The key contrast to internalize: many-one reducibility is the one-query, no-feedback version — the reduction commits to a single transformed instance before seeing any answer. Turing reducibility is the adaptive oracle version — the reduction can conduct a dialogue with B, updating its strategy as it learns. Because many-one is strictly weaker, A ≤_m B implies A ≤_T B but not conversely. When a problem is NP-complete under many-one reductions, it is also complete under Turing reductions — but not vice versa. This makes NP-completeness under many-one reductions the more informative (and harder to achieve) statement.

Practice Questions 5 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Number Bonds to 10Addition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts (0s, 1s, 2s, 5s, 10s)Multiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineComparing and Ordering IntegersAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersIntroduction to ExponentsOrder of OperationsInteger Order of OperationsVariable ExpressionsThe Distributive PropertyVariables and Expressions ReviewIntroduction to PolynomialsAdding and Subtracting PolynomialsMultiplying PolynomialsFactorialPermutationsCombinationsCounting Principles: Addition and Multiplication RulesIntroduction to Graph TheoryPropositional Logic FoundationsLogical EquivalencesBoolean AlgebraIntroduction to Propositional LogicIntroduction to Predicate Logic (First-Order Logic)First-Order Logic SyntaxZFC Axioms OverviewAxiom Schema of SeparationAxiom Schema of ReplacementVon Neumann OrdinalsHereditarily Finite SetsRecursive Definitions on Finite SetsWell-Founded Relations and Transfinite RecursionThe Axiom of Choice and Equivalent FormulationsAxiom of ChoiceWell-Ordering TheoremInfinite Cardinal NumbersCantor's TheoremUncountability and the Diagonal ArgumentThe Cantor Set: An Uncountable Nowhere Dense ExampleUncountable Sets and Cantor DiagonalizationThe Halting ProblemComputability ReductionsPolynomial-Time ReductionsLower Bounds Techniques in Computational ComplexityNP-CompletenessThe Cook-Levin TheoremBoolean Satisfiability and Standard NP-Complete ProblemsReductions for Proving NP-CompletenessMany-One and Turing Reducibility

Longest path: 96 steps · 549 total prerequisite topics

Prerequisites (3)

Leads To (0)

No topics depend on this one yet.