UNSATGapCondition in IndisputableMonolith.Complexity.SpectralGap
(1) In plain English, UNSATGapCondition n f is a bundled record asserting that a CNF formula f on n variables is unsatisfiable and that its J-cost landscape has a uniform positive lower bound on edge weights: there exists a positive integer min_sensitivity such that every jcostEdgeWeight f a k is at least this value.
(2) In Recognition Science this matters because the J-cost Laplacian models recognition as gradient descent on a cost landscape; a positive gap for unsatisfiable instances separates the landscape into distinct regions, supporting the forcing of recognition structures from cost minima and controlling convergence speed of the recognition operator.
(3) The formal statement is read as a Lean structure with four fields: is_unsat (witness that f is unsatisfiable), min_sensitivity (a natural number), sensitivity_pos (proof that the number is positive), and sensitivity_bound (universal quantification showing every edge weight meets or exceeds the minimum). In standard math this is the predicate "f is UNSAT and min-edge-weight(f) ≥ m > 0".
(4) Visible dependencies appear via imports of CNFFormula and jcostEdgeWeight; within the module it is used by unsat_has_positive_gap to extract a positive real gap, and it participates in the certificate SpectralGapCert alongside variance_nonneg and empty_formula_flat_landscape. The instance spectralGapCert records related landscape facts.
(5) The declaration does not prove existence of the gap for arbitrary unsat formulas, does not establish the Cheeger inequality, and does not derive iteration counts or full convergence rates (though iteration_bound_from_clauses exists separately).