theorem
proved
term proof
omega_n_queries
show as:
view Lean formalization →
formal statement (Lean)
92theorem omega_n_queries
93 (M : Finset (Fin n)) (g : (({i // i ∈ M} → Bool)) → Bool)
94 (hMlt : M.card < n) :
95 ¬ (∀ (b : Bool) (R : Fin n → Bool), g (restrict (n:=n) (enc b R) M) = b) :=
proof body
Term-mode proof.
96 no_universal_decoder (n:=n) M g
97
98end BalancedParityHidden
99end Complexity
100
101namespace IndisputableMonolith
102
103/-- SAT recognition lower bound (dimensionless): any universally-correct fixed-view
104 decoder over fewer than n queried indices is impossible. -/