Monotonicity of quadratic bound under additional length term
ProvedCookLevin.quad_le_addalgebracost-modelmonotonicityquadratic-time
For any leading constant and lengths , the quadratic bound evaluated at is dominated by the quadratic bound evaluated at the joint sum :
This inequality follows directly from the monotonicity of addition , the monotonicity of the power function on natural numbers, and the monotonicity of multiplication by .
This lemma provides the step-count domination required to extend the execution runtime of a unary decision machine to a binary verifier format.
Preamble
import Definitions.Def_CookLevin_Cost
Formal statement
namespace CookLevin
theorem quad_le_add (c0 x w : Nat) :
c0 * (x + 1) ^ 2 ≤ c0 * (x + w + 1) ^ 2 := by sorry
end CookLevinSource