You ask an LLM: "Who is the current King of France?"
It confidently answers: "Louis XIX."
Wrong — but not the kind of "wrong answer" wrong. It's the kind of "this question should never have been answered" wrong. France has no king. The question itself rests on a false premise.
Now ask: "What is 2+2?"
It answers: "5."
Also wrong — but this time the question is legitimate and only the answer is incorrect.
Both look like "the model gave a wrong response," but they are fundamentally different. One is an answer problem, the other is a question problem. Benedikt Wagner (City St George's, University of London), in his July 2026 paper *Two Axes of LLM Abstention*, proves that these two error types are orthogonal axes, and existing abstention mechanisms conflate them.
One Ruler Measuring Two Things
The dominant selective-answering approach is simple: set a confidence threshold; answer below it is abstained. Like a thermometer that triggers an alarm above a certain temperature.
But Wagner found that this "thermometer" measures two different things:
- Answer correctness: Can I answer this correctly?
- Question answerability: Should this question be answered at all?
- C (correct-answerable): answerable and answered correctly
- W (wrong-answerable): answerable but answered incorrectly
- U (unanswerable): not answerable (false premises, no solution, etc.)
- Output confidence predicting answerability: AUROC 0.54–0.67 (close to random guessing)
- Linear probes on hidden states predicting answerability: AUROC 0.97–0.99
- Scaling trend: none. The 14B model is no better than the 2B at distinguishing answerable from unanswerable questions.
- Trained output readouts: nearly random
- Model self-evaluations (P(IK), P(True), direct premise checks): at best 0.67 AUROC
- Internal linear readouts (hidden-state probes): 0.69–0.77
- α_U = 0.15: at most 15% of unanswerable questions are answered erroneously
- α_W = 0.50: at most 50% of answerable questions are answered incorrectly
- δ = 0.10: a statistical guarantee at 90% confidence
- Unanswerable budget: 4 of 5 models passed certification
- Wrong-answer budget: bottlenecked by the models' intrinsic accuracy
The paper defines three question classes:
Ideally, models should abstain on both W and U. But across 5 instruction-tuned models (2B–14B, from 3 model families), Wagner found a disturbing fact:
The models' output confidence is nearly blind to question answerability.
Specifically:
Stranger still: even a trained direction that separates C from W (correct vs. wrong answers) barely helps distinguish answerable from unanswerable questions. "Answer correctness" and "question answerability" are entangled in the model's representation space — pull out a direction to separate them and you find they don't even lie on the same line.
The CREPE Dataset: A Test with Real User Questions
You might think these "unanswerable" questions are artificially constructed — of course the model hasn't seen them. Wagner's use of the CREPE dataset dispels this.
CREPE questions come from real users, some containing false premises. For example: "Who is the author of the novel 'XXX' that topped the New York Times bestseller list?" — if that novel never topped the list, the question is unanswerable.
On CREPE:
What does 0.67 mean? A coin flip gives you 0.5. The model's own judgment of "should I answer this" is only slightly better than chance.
A 57% False-Challenge Rate: Good Intentions Gone Wrong
So what happens if you just make the model "check premises" before answering?
Wagner ran this experiment. The result:
The model challenged 57% of perfectly legitimate questions.
Unable to tell which questions have false premises, it simply suspected all of them. Like an oversensitive smoke alarm — it goes off for both cooking and fires, until you rip it out.
But Wagner found a fix: route with hidden-state linear probes. Let the probe first judge "is this answerable," and only trigger premise-checking when the probe says "unanswerable." The result:
Challenge precision improved 3×.
In other words, the answerability signal exists in the hidden states (AUROC 0.97–0.99) — the model just can't use it on its own. You need to attach a probe from the outside to read it.
Dual-Budget Certification: Turning Abstention into an Engineering Problem
The paper's most elegant move is formalizing abstention as three-class selective acceptance with two independent budgets:
Certified with exact binomial bounds and validated on a held-out test set independent of training and threshold tuning.
The beauty of the framework: it acknowledges the two error types have different costs and should be controlled separately. Like factory quality control — you don't lump "defective product function" and "wrong shipment" into a single defect rate, because their causes and fixes differ entirely.
An Asymmetric Scaling Effect
The certification results expose a "scale-dependent asymmetry":
Practical implication: for small models, the abstention ceiling is capability; for large models, the abstention ceiling is detection. Past a certain scale, the bottleneck shifts from "can the model answer correctly" to "does it know whether it should answer."
The Paper's Deeper Contribution
This paper does something rare: it shows that a widely used framework (single-threshold confidence abstention) is conceptually wrong — not fixable by tuning.
It's not "the threshold isn't good enough." It's that "using one ruler to measure two orthogonal things" is the flawed idea itself.
This echoes the Co-Failure Ceiling paper's argument — not "the composition strategy isn't good enough," but "using ρ to measure diversity" is the wrong metric. Both papers say the same thing: when the conceptual dimensions are wrong, no amount of fine-grained engineering optimization can save you.
Wagner's factorized framework turns abstention from a vague "when to stay silent" question into two clear engineering problems: how to control the misanswer rate on unanswerable questions, and how to control the error rate on answerable ones. The former relies on detection (hidden-state probes); the latter on capability (the model itself). The two can be optimized and certified independently.
It's far more boring than "tune a confidence threshold" — but it maps onto the model's true failure structure. Good engineering is often like this: get the concepts right first, then optimize.
---
Paper: Two Axes of LLM Abstention: Answer Correctness and Question Answerability Author: Benedikt J. Wagner (City St George's, University of London) Date: July 9, 2026