Definition
Given a matrix of constraint coefficient, and an integer b. There exists a
n-vector
with elements in the set {0,1}, such that A ⋅ xi ≤ b1 ≤ i ≤ n.
Polynomial Certifier
Given a matrix of constraint coefficient, and an integer b. Does there exist
a n-vector
with elements in the set {0,1}, such that A ⋅ xi ≤ b, where
1 ≤ i ≤ n?
with elements in the set {0,1}.
Reduction from 3-SAT from simple case to general case
In the 3-SAT, suppose that there are n variables x1,x2,…,xn and m clauses in the CNF formula. The variables x1,x2,…,xn in 3-SAT are all Boolean variables, so they are in the set {0,1} already. Each clause cj = (xj1 ∨xj2 ∨xj3) in 3-SAT can be transformed to a linear constraint xj1 + xj2 + xj3 ≥ 1. If a variable appears like xi, then we change it to 1 - xi. Then, to be uniform, we turn ≥ into ≤. For instance,

Claim 4.14.3.1. 3-SAT ≤ p 0-1 Linear Programming (This construction of 3-SAT
leads to is a special case of 0-1 Linear Programming)
Φ is satisfiable if and only if there is an n-vector x that solves A ⋅ x ≤ b where
the values of x are either 0 or 1.
Φ is satisfiable ⇒ there is an n-vector x that solves A⋅x ≤ b where the values of x are either 0 or 1.
Proof. If 3-SAT has a satisfying truth assignment, at least one literal in each clause evaluates to be true. For each literal that evaluates to be true in any given clause, the corresponding term in the corresponding inequality evaluates to 1 (If xi = 1 in the clause, so it is in the inequality; if xi = 1 in the clause, 1 - xi = 1 in the inequality). For each literal that evaluates to be false in any given clause, the corresponding term in the corresponding inequality evaluates to 0 (If xi = 0 in the clause, so it is in the inequality; if xi = 0 in the clause, 1 - xi = 0 in the inequality). Therefore, xi + xj + xk ≥ 1 always holds and so does every inequality constraint. Hence, there is an n-vector x of {0,1} so that A ⋅ x ≤ b. __
There is an n-vector x that solves A⋅x ≤ b where the values of x are either 0 or 1 ⇒ Φ is satisfiable
Proof. if A⋅x ≤ b has a solution where the values of x are either 0 or 1, use this value to set the corresponding variables in the clauses. Since the inequalities are satisfied, xi + xj + xk ≥ 1 always holds, there is at least one 3 literal (xi or 1 - xi) evaluates to 1, and the corresponding xi or xi evaluates to 1. So each clause is satisfied and 3-SAT has a satisfying truth assignment. __