Domination of product by sum squared
ProvedCookLevin.product_le_quadalgebracost-modelmonotonicityproductquadratic-time
For any leading constant and lengths , the product scaled by is bounded by the quadratic sum scaled by :
Since and , multiplying the two inequalities preserves the order on natural numbers: . Scaling both sides by yields the result.
This algebraic bound bridges the product-time complexity of CNF evaluation into the quadratic complexity bound .
Preamble
import Definitions.Def_CookLevin_Cost
Formal statement
namespace CookLevin
theorem product_le_quad (c1 x w : Nat) :
c1 * (x + 1) * (w + 1) ≤ c1 * (x + w + 1) ^ 2 := by sorry
end CookLevinSource