Lode

Stand on the shoulders of giants.

Open the curator →
Source
arXiv
Published
Runtime
0:00
Snippets
6

A conversation between

When Many Answers Are Valid, Voting Fails: Symbolic Verification for Best-of-K Causal Reasoning in LLMs

Waveform of the source interview with highlighted segments per snippet.
0:00 0:00

§02

Snippets

  1. Self-consistency voting fails in causal reasoning when samples repeat confounding errors and valid answers fragment, allowing an invalid answer to win despite valid minority traces.

    Standard ensemble methods assumed frequent = reliable; this exposes a blind spot where consensus masks systematic errors.

  2. CALVER, a training-free verifier, scores reasoning traces against Pearl's causal criteria (d-separation, backdoor adjustment, intervention) without needing a reference answer.

    Symbolic verification dodges the brittleness of learned judges and reward models, scaling to arbitrary causal structures.

  3. CALVER reaches 42.1% on CLEAR find-one-valid queries versus ~30% for plurality voting, reward models, LLM judges, and model confidence on identical frozen pools.

    Even a 12-point gap is significant in a regime where scaling the judge to 72B doesn't help—suggesting voting is fundamentally broken here.

  4. In an audited clean-core subset, 11 of 21 CALVER selections differ from the benchmark's listed answer while still satisfying the requested predicate.

    Benchmarks may overconstrain when multiple valid causal solutions exist; formal verification can expose and navigate this ambiguity.

  5. The advantage reproduces across ten published Bayesian networks, a second model family, and settings where the model must build the graph from text.

    Robustness across diverse structures and model families suggests causal verification is a general principle, not a one-off hack.

  6. CALVER scores each candidate in milliseconds on CPU, requiring only a causal structure supplied outright or built from text.

    The method is both more reliable and vastly cheaper than running larger LLM judges, making it practical for real deployment.

§03

Synthesis

The Problem: Voting Breaks When Multiple Answers Are Right

Large language models often solve causal reasoning problems by sampling many reasoning traces and picking the most frequent answer—a technique called self-consistency. But this fails catastrophically in causal domains. The authors show that when a problem admits multiple valid causal answers (say, three different adjustment sets that all correctly identify a causal effect), the model's samples fragment across them while repeatedly making the same systematic error. Result: an invalid answer wins by plurality, even though valid answers existed in the pool.

On the CLEAR benchmark's multi-answer queries, standard voting methods—including reward models and even a 72B LLM judge—stuck near 30% accuracy. The authors' key insight: don't count votes. Instead, verify each candidate symbolically against the actual rules of causal reasoning.

How CALVER Works

CALVER (Causal Axiom-Level VERification) is a training-free checker that scores each sampled trace by testing it against Pearl's causal calculus—the formal rules for valid causal inference. The method requires the causal graph (either given explicitly or extracted from text) and then checks whether each candidate satisfies criteria like d-separation (which variables must be independent?), backdoor adjustment (which confounders must be controlled?), and intervention semantics (do the proposed adjustments isolate the true causal effect?).

Rather than ask "what did the model say most often?", CALVER asks "which answer is mathematically valid under the causal rules?" It scores all candidates and picks the highest-scoring one—no ground-truth reference answer needed.

Why This Matters and What It Achieves

On CLEAR's find-one-valid queries (problems with multiple correct answers), CALVER reached 42.1% accuracy versus 30% for plurality voting, reward models, and LLM judges—a substantial gap that widened as the sampling budget grew. Importantly, in a manually audited subset, 11 of 21 CALVER selections differed from the benchmark's listed answer but were still graph-valid—confirming that CALVER finds legitimate alternatives the benchmark itself missed.

The advantage reproduces across ten published Bayesian networks, a second model family (different LLM), and scenarios where the causal graph must be built from text rather than given. CALVER also improves decisions about average treatment effects against ground truth and generalizes to logic problems using a truth-table verifier.

Critically, this is practical: scoring each candidate takes milliseconds on CPU. The method requires only that a causal structure be available—a realistic constraint in many domains like healthcare, economics, and policy evaluation.

The core contribution is philosophical: in domains with well-defined formal semantics, symbolic verification outperforms statistical voting even when ground truth is unavailable. When reasoning must satisfy mathematical rules, check the rules, not the frequency.

Mine your own.

Lode is a workbench, not a feed. Paste a YouTube URL. The model proposes a transcript, a set of quote-grounded snippets, a synthesis essay, and the fan-out. You decide what stays.

Open the curator