Papers › Do LLMs Game Formalization? Evaluating Faithfulness in Logical Reasoning

Do LLMs Game Formalization? Evaluating Faithfulness in Logical Reasoning

21 Apr 2026arXiv:2604.19459added by Syntology

Kyuhee Kim, Auguste Poiroux, Antoine Bosselut

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

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.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2604.19459")

Code

Syntology Ran 0 of 17 code samples harvested from 1 repository linked to this paper; 17 have no recorded run.

By repository: found in paper text by Syntology: 17 samples from 1 repository, 0 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

koreankiwi99/formalization-gaming found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

17 samples harvested; 0 ran; 0 honoured the contract we drafted; 17 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

17unverified

Licence: 0 of the 17 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from koreankiwi99/formalization-gaming. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

create_client koreankiwi99/formalization-gaming/src/utils/api_client.py found in paper text by Syntology unverified MIT (permissive) · 88e267ab5c120ee7 · report
extract_lean_code koreankiwi99/formalization-gaming/src/utils/lean_utils.py found in paper text by Syntology unverified MIT (permissive) · ea7eba31cb0ee7bf · report
format_premises koreankiwi99/formalization-gaming/src/analysis/evaluate_faithfulness.py found in paper text by Syntology unverified MIT (permissive) · a6aac36936d3c4f2 · report
format_system_prompt koreankiwi99/formalization-gaming/src/utils/prompts.py found in paper text by Syntology unverified MIT (permissive) · 46c489c0d1c6a73c · report
format_user_prompt koreankiwi99/formalization-gaming/src/utils/prompts.py found in paper text by Syntology unverified MIT (permissive) · 6dbbca04c916feb9 · report
get_false_negatives koreankiwi99/formalization-gaming/src/analysis/analyze_errors.py found in paper text by Syntology unverified MIT (permissive) · 39e31a2e1463691a · report
get_lean_code koreankiwi99/formalization-gaming/src/analysis/evaluate_faithfulness.py found in paper text by Syntology unverified MIT (permissive) · 044e45410848bef5 · report
get_provider koreankiwi99/formalization-gaming/src/utils/api_client.py found in paper text by Syntology unverified MIT (permissive) · 64e253007e4a5ed0 · report
load_folio koreankiwi99/formalization-gaming/src/utils/datasets.py found in paper text by Syntology unverified MIT (permissive) · 60cbd940377d6d13 · report
load_multilogieval koreankiwi99/formalization-gaming/src/utils/datasets.py found in paper text by Syntology unverified MIT (permissive) · 150640dc130c1d59 · report
load_multilogieval_sampled koreankiwi99/formalization-gaming/src/utils/datasets.py found in paper text by Syntology unverified MIT (permissive) · 77490f433de992ed · report
load_prompt koreankiwi99/formalization-gaming/src/utils/prompts.py found in paper text by Syntology unverified MIT (permissive) · 872d7c12ef1aca3f · report
load_prompt_template koreankiwi99/formalization-gaming/src/analysis/analyze_errors.py found in paper text by Syntology unverified MIT (permissive) · 0f1c89036844e212 · report
normalize_answer koreankiwi99/formalization-gaming/src/utils/answer_parsing.py found in paper text by Syntology unverified MIT (permissive) · 651b0f7470e1a3e9 · report
parse_answer koreankiwi99/formalization-gaming/src/utils/answer_parsing.py found in paper text by Syntology unverified MIT (permissive) · 5200c424eaeecdfc · report
parse_folio_answer koreankiwi99/formalization-gaming/src/utils/answer_parsing.py found in paper text by Syntology unverified MIT (permissive) · 75f5e519aa2c36de · report
resolve_model_name koreankiwi99/formalization-gaming/src/utils/api_client.py found in paper text by Syntology unverified MIT (permissive) · a8c0ee30b68f960e · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2604.19459, was issued in April 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections