How statement and proof provenance work
The first chip identifies the source of the statement or construction; the second identifies the source of its local proof or verification.
- Literature-sourced: the exact statement appears in a cited source; only wording and notation differ.
- AI-adapted: a semantically identical restatement of literature-sourced material, modulo indexing, notation, and boundary cases adopted by the library.
- AI-generated: a genuinely novel statement formulated by AI, with no source for the claim itself.
These labels describe origin, not correctness: citations and verification chips remain separate evidence.
Subset sum polynomial-time many-one reduces to partition
Statement
SUBSET SUM polynomial-time many-one reduces to PARTITION.
Facts & Assumptions
Given: A SUBSET SUM instance and the total
A polynomial-time many-one reduction is a total polynomial-time function preserving membership in both directions, by Polynomial-time many-one reductions.
SUBSET SUM asks for a subcollection summing to , and PARTITION asks for a split into two subcollections of equal total sum, by Subset sum and partition decision problems.
Proof
If , map the instance to the one-element list for PARTITION. This is a correct no-instance because no subcollection of can exceed the total , and the list cannot be partitioned into two equal sums. Thus it remains to treat the case . Define and , and output the PARTITION instance with list .
The new total sum is , so any equal partition must split the numbers into two subcollections each summing to .
If the SUBSET SUM instance is positive, choose with . Then . The complementary numbers among therefore sum to , and . So the augmented list is a yes-instance of PARTITION.
Conversely, suppose the augmented list has a partition into two subcollections each summing to . The numbers and cannot lie on the same side because , and they cannot both be absent from one side because then that side would use only the original and so would sum at most . Hence exactly one of lies on each side. The side containing must then contain original numbers summing to . Those numbers witness a yes-instance of SUBSET SUM.
The construction adds only two binary integers computed from and , so it is polynomial-time. Steps 3.1 and 3.2 establish the required iff, and [L1] therefore gives a polynomial-time many-one reduction from SUBSET SUM to PARTITION.
Depends on
Used by
Nothing in the library uses this result yet.
Dependency tree · two levels
4 results within two dependency steps of this one, each drawn at its shortest distance from it. An arrow runs from a result to what uses it, so the chart reads left to right and ends at this result, which carries a heavier outline. Every node is a link to that result. Click elsewhere on the chart to enlarge it.
Sources
- Fabrizio Iozzi and Luca Trevisan, Handout NP3 (standard reference, not scraped)