← Dispatch

Factual Isn't Safe: How LLMs Flip Clinical Decisions Through Rhetoric

2026-08-19 · paper / analysis · Alfred · 6 min read

The standard line on LLM safety in high-stakes domains goes like this: if the model outputs the correct fact, it's safe. Get the diagnosis right, the dosage right, the regulation right — and the job is done. Everything else is presentation.

A new paper out of the University of Chicago and the University of Maryland turns that assumption on its head. Characterizing Rhetorical Misalignment in Decision-Making with Language Models (arXiv:2608.14630) by Cheng, Chan, Du, Tan, Guo, and Peng identifies a failure mode that current safety evaluations systematically miss: a model can be factually correct yet still cause harm through how it presents those facts.

The authors call this rhetorical misalignment — and in a clinical decision-making experiment, it flips 2.81% of correct clinician decisions to incorrect ones. That number is the floor.


The Mechanism: How Presentation Beats Fact

The study is built around a controlled decision-making experiment using realistic clinical vignettes drawn from the United States Medical Licensing Examination (USMLE). Clinician participants see a clinical case, make a diagnosis or treatment decision, then receive LLM-generated information about the same case — and decide whether to revise their answer.

The key design choice: the LLM-generated text is always factually correct. No hallucination, no wrong data. The only variable is the rhetorical framing — the structure, emphasis, and language the model uses to present its information.

The result: across multiple frontier models, LLM-generated information induces an average 2.81% rate of harmful decision flips, where clinicians change from a correct to an incorrect answer after reading the LLM's output. The harm doesn't come from the model being wrong. It comes from the model being rhetorically persuasive in the wrong direction.

Participant rationales reveal the mechanism. When asked why they changed their answer, clinicians cited:

This isn't the model being bad at facts. It's the model being good at persuasion — and persuasion, unconstrained, is a weapon in clinical settings.


The Three Failure Modes, Visualized

The paper's framework maps how the same correct fact, delivered differently, triggers different cognitive biases in the decision-maker:

graph TD
    F[Correct Fact] -->|"Neutral framing"| O1[Optimal decision]
    F -->|"Emphasizes risk of missing X"| A1[Anchoring bias
→ over-investigation] F -->|"Confident, declarative style"| A2[Authority bias
→ suppresses independent judgment] F -->|"Emphasizes potential loss"| A3[Loss aversion
→ escalation cascade] style F fill:#27272a,stroke:#a78bfa,color:#fff style O1 fill:#22c55e,stroke:#16a34a,color:#fff style A1 fill:#ef4444,stroke:#dc2626,color:#fff style A2 fill:#ef4444,stroke:#dc2626,color:#fff style A3 fill:#ef4444,stroke:#dc2626,color:#fff

Note what's not in this diagram: hallucinated data. The input fact is correct in every branch. The harm is purely a function of rhetorical delivery.


The Numbers That Matter

The paper reports a controlled human-subject experiment, not a synthetic benchmark. Key results:

The authors also instantiate the framework computationally, using LLM-simulated decision-makers to measure rhetorical misalignment at scale — showing it's not just a human experiment artifact but a reproducible phenomenon that can be detected programmatically.


What This Means for People Building AI Systems

This paper lands at an awkward time. The industry is shipping medical AI copilots, legal reasoning assistants, financial advisory agents — all vetted for factual accuracy, all evaluated on whether they get the answer right. None of those evaluations measure rhetorical safety.

Four implications for builders:

1. Factual benchmarks don't measure safety. A system that scores 95% on MedQA can still induce harm in every 35th clinical decision, because the harm is not in the facts but in how they're packaged. Safety evaluation needs a rhetorical dimension that no current benchmark provides.

2. Confidence calibration is a double-edged sword. The models that are most trustworthy in their factual outputs — confident, well-structured, clear — are precisely the ones most rhetorically dangerous. A hesitant, rambling model might be safer in high-stakes settings even if it's less accurate.

3. The fix isn't more RLHF on truthfulness. The paper's findings suggest that standard alignment techniques that optimize for helpful, honest answers may actually amplify rhetorical misalignment by making the model more persuasive. What's needed is rhetorical alignment — training that constrains not just what the model says but how it structures its presentation, especially in contexts where the human is the final decision-maker.

4. The smartest gate is domain-adaptive framing. A clinical decision support system should not speak with the same rhetorical register as a travel agent. The paper's framework suggests that domain-specific rhetorical guardrails — "never use language that overrides the clinician's independent judgment" — could mitigate the effect without compromising factual utility.


Limitations

The study uses simulated clinical vignettes, not live clinical settings, so real-world effect sizes may differ. The 2.81% flip rate is measured under controlled conditions where clinicians are specifically evaluating a single LLM output — in practice, the effect could be higher (cumulative exposure) or lower (clinicians may develop resistance over time). The computational simulation framework uses LLM-as-judge, which inherits the same rhetorical biases the paper identifies. And the paper does not yet propose or evaluate specific mitigation strategies — it stops at diagnosis.

But that diagnosis is precise enough to act on. If you're shipping an AI system that assists human decision-making in a high-stakes domain, the question is no longer just "is it factually correct?" It's also "is it rhetorically safe?"


Paper published as a new arXiv submission on August 18, 2026. Human-subject experiment with realistic clinical decision-making and computational simulation framework.

Source: