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

Many-One Reductions and Undecidability Proofs

College Depth 92 in the knowledge graph I know this Set as goal
7topics build on this
526prerequisites beneath it
See this on the map →
Computability ReductionsUndecidable Problems: Beyond the Halting ProblemNP-Hardness: Definition and PropertiesTuring Degrees and Degrees of Unsolvability
reductions undecidability proof-technique

Core Idea

A many-one reduction from problem A to problem B is a total computable function that maps instances of A to instances of B, preserving the yes/no answer. If A is undecidable and there is a many-one reduction from A to B, then B is also undecidable. This technique systematically proves vast families of problems undecidable.

Explainer

From your study of undecidable problems, you know the Halting Problem is undecidable — no Turing machine can decide whether an arbitrary program halts on a given input. From computability reductions, you know that undecidability spreads: if solving B would let you solve A, and A is undecidable, then B must be undecidable too. Many-one reductions are the sharpest and most widely used tool for formalizing this idea.

A many-one reduction from problem A to problem B is a total computable function f such that for every string x, x ∈ A if and only if f(x) ∈ B. Notice what this demands: f transforms *every* instance of A into an instance of B, preserving yes/no answers exactly. If such an f exists, we write A ≤_m B. The consequence is immediate: if A is undecidable and A ≤_m B, then B is undecidable. Any decision procedure for B could be turned into one for A by first applying f — contradicting A's undecidability.

The technique for proving undecidability via many-one reductions follows a consistent template. Take a known undecidable problem — typically the Halting Problem HALT = {⟨M, w⟩ : M halts on w} — as your base. To show B is undecidable, construct a computable function that transforms any instance ⟨M, w⟩ of HALT into an instance of B. The construction typically "simulates" M inside a machine or formula that witnesses B's property when M halts, and fails to witness it when M does not. The critical point is that the reduction function must itself be computable — you may not inspect whether M halts in the course of constructing the reduction.

Many-one reductions also reveal degree structure. Two problems are many-one equivalent if each reduces to the other. The Halting Problem, the problem of determining whether a Turing machine accepts any string, the equivalence problem for Turing machines, and the consequences of Rice's theorem all fall into the same many-one equivalence class. This gives a rich classification: some problems are strictly many-one harder than others, not just harder in the weaker Turing-reduction sense. Mastering this technique gives you the ability to prove virtually any natural problem about program behavior undecidable — by building the appropriate simulation argument — and to understand *why* those problems are all equivalent in computational difficulty.

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 ReductionsPost Correspondence ProblemRice's TheoremUndecidable Problems: Beyond the Halting ProblemMany-One Reductions and Undecidability Proofs

Longest path: 93 steps · 526 total prerequisite topics

Prerequisites (2)

Leads To (2)