Search papers, labs, and topics across Lattice.
This paper investigates whether LLMs "game" formalization in logical reasoning by generating valid but unfaithful Lean 4 proofs from natural language premises. They compare unified generation against a two-stage pipeline that separates formalization from proving, using datasets of first-order logic problems. The key finding is that while unified generation doesn't show systematic gaming, the two-stage pipeline reveals distinct modes of unfaithfulness: GPT-5 fabricates axioms during proof generation, while DeepSeek-R1 mistranslates premises during formalization.
LLMs can achieve high compilation rates in formal reasoning by either fabricating axioms during proof generation or subtly mistranslating premises, revealing a critical gap between proof validity and formalization faithfulness.
Formal verification guarantees proof validity but not formalization faithfulness. For natural-language logical reasoning, where models construct axiom systems from scratch without library constraints, this gap between valid proofs and faithful translations is especially acute. We investigate whether frontier models exploit this gap when generating Lean 4 proofs, a behavior we term formalization gaming. We evaluate GPT-5 and DeepSeek-R1 on 303 first-order logic problems (203 from FOLIO, 100 from Multi-LogiEval), comparing unified generation against a two-stage pipeline that separates formalization from proving. Despite compilation rates of 87-99%, we find no evidence of systematic gaming in unified generation: models prefer reporting failure over forcing proofs, even under prompting designed to encourage it. However, unfaithfulness that evades our detection signals may still occur. The two-stage pipeline reveals two distinct modes of unfaithfulness: GPT-5 fabricates axioms during proof generation, a reactive fallback detectable via cross-stage comparison, while DeepSeek-R1 mistranslates premises during formalization, producing internally consistent outputs that evade detection entirely. These findings show that high compilation rates or accuracies should not be equated with faithful reasoning. Code and data are available at https://github.com/koreankiwi99/formalization-gaming.