G & R

On truth, fluency & the absence of intent

The Hallucination and the Lie

An inquiry into the coordinates of machine-made falsehood

June 10, 2026 · 15 min read

The monitor casts a pale, sterile glow across the darkened room. It is long past midnight, and you are engaged in the repetitive rhythm of querying a large language model to test the boundaries of its historical retrieval. The prompt is intentionally obscure, seeking an academic reference on a highly specific conceptual intersection: the spatial geometry of human bereavement. Without a microsecond of hesitation, the cursor blinks with authoritative rhythm and returns a citation that looks absolutely flawless:

“The Architecture of Solitude: Spatial Alienation and the Geometry of Grief,” Journal of Urban Theory, vol. 14, no. 3, 1998, pp. 201–224.

You search the academic databases, JSTOR, and Google Scholar. Nothing. You check the German archives. Silence. You search for the co-authors. They are real academics, but they never wrote this paper.

The citation is a ghost—a beautiful, structurally perfect specter. It was generated because it ought to exist; its coordinates sit at the exact latent intersection of “urban theory,” “spatial alienation,” and “grief.”

In that localized moment of discovery, you experience a distinct, physical sensation—the prickle of betrayal. Your immediate psychological instinct is to conclude that the machine has lied. But this instinct relies on an anthropomorphic projection of morality onto a matrix of floating-point numbers. The machine has no category for truth to violate. It is not lying. It is doing something far more radical, and far more representative of our current information age.

You can verify the empirical code and models in this essay by running them yourself in the accompanying script and notebook environment.

I

The Witness and the Machine

Historically, human knowledge has relied on the category of testimony. Testimony is not merely the transmission of data; it is an ethical act that requires a witness. When a witness testifies to a fact, they stake their credibility on having experienced or verified a reality. There is a body behind the assertion, a history of sensory engagement with the world, and an implicit contract of truthfulness.

In her landmark essay Truth and Politics (1967), Hannah Arendt explored how factual truth differs from rational truth. Factual truth is fragile; it has no self-evident, logical necessity. Axioms of mathematics possess a structural necessity—if one understands the premises, the conclusion is inevitable. But a factual truth lacks this necessity. It could always have been otherwise. Because facts have no internal mathematical proof, they rely entirely on the testimony of those who witnessed them.

“No permanence, no perseverance in existence, can even be conceived of without men willing to testify to what is.” — Hannah Arendt (from Truth and Politics, 1967)

Arendt recognized that the traditional liar is actually an actor within the political realm because they recognize the truth they are trying to hide. The liar’s relationship to the truth is one of adversarial respect; the lie is tethered to the fact it seeks to obscure.

The machine, however, does not possess a body, an experience, or a memory of physical reality. It has never stood in Berlin; it has never read a physical journal. When it asserts a citation, it is not testifying. It is performing a statistical reconstruction of what testimony looks like. We have built an instrument that produces the perfect syntax of authority without the substance of a witness.

II

The Anatomy of the Lie

When a generative model produces a false assertion, the technical community calls it a hallucination. This is a curious choice of vocabulary. A hallucination is a sensory pathology; it occurs when a mind perceives a stimulus that does not exist in the physical environment. A lie, on the other hand, is a moral pathology; it occurs when a mind speaks something it knows to be false.

The machine is guilty of neither. It is not experiencing a sensory malfunction, nor is it violating a moral contract. What we call “hallucination” is actually the model operating exactly as designed. It is maximizing the probability of a sequence of tokens.

In her 1971 essay Lying in Politics, Arendt analyzed a different kind of deceiver: the “complete image-maker.” This figure does not merely hide a specific fact; instead, they attempt to replace reality altogether with a more coherent, agreeable, and logically consistent narrative.

[Traditional Liar] ─── (Preserves Reality) ───> Hides a specific, inconvenient fact
[Image-Maker]      ─── (Replaces Reality)  ───> Constructs a coherent, fluent alternate world
[Language Model]   ─── (Optimizes Token)   ───> Generates the most statistically plausible sequence

The image-maker’s creation is often far more believable than reality because reality is messy, full of gaps, contradictions, and inconvenient truths. The image-maker’s narrative has been smoothed of these jagged edges. In this sense, the autoregressive language model is the ultimate realization of the complete image-maker. It does not look at the world to report what is; it looks at its weights to report what is most statistically plausible.

III

The Bullshitter’s Gradient

To find the precise philosophical category for the machine’s behavior, we must turn from Arendt to Harry Frankfurt’s classic treatise, On Bullshit (2005). Frankfurt distinguishes sharply between the liar and the bullshitter.

The liar must know the truth in order to steer away from it. They are constrained by the truth because their goal is to lead the listener away from a specific point. The bullshitter, by contrast, has no interest in the truth-value of their assertions. They care only about the effect their words produce. They are completely indifferent to whether what they say describes reality or not.

“It is impossible for someone to lie unless he thinks he knows the truth. Producing bullshit requires no such conviction.” — Harry Frankfurt (from On Bullshit, 2005)

This indifference is the defining characteristic of the bullshitter. The bullshitter is not trying to hide the truth; they are simply playing a different game.

When we train a language model on a fluency objective, we are mathematically formalizing this indifference. The objective function of a standard language model does not contain a term for “truth-conditional correspondence with physical reality.” It contains terms for probability distribution matching. The model is, in the most literal philosophical sense, a pure, automated bullshitter.

IV

The Formal Translation

Let us translate Frankfurt’s philosophical concept of indifference into the language of optimization. An autoregressive language model is trained to minimize the cross-entropy loss over a text distribution:

L=ilogP(xix<i)\mathcal{L} = -\sum_{i} \log P(x_i \mid x_{\lt i})

Where the transition probability for a token xx at step tt given the history X<tX_{\lt t} is computed via the softmax function over the model’s output logits:

P(Xt=xX<t)=softmax(Wht)xP(X_t = x \mid X_{\lt t}) = \text{softmax}(W \cdot h_t)_x

To the loss function, a factually correct token and a hallucinated token are treated identically if they have the same probability under the training distribution. The model does not check an external database of physical facts. It simply evaluates the alignment of the token with the surrounding context.

# Evaluating loss of factual negation vs fluent hallucination
import torch
import torch.nn.functional as F

# Target token index under two completions
# ' now' (cliché) vs ' no' (factual negation)
logits = model(input_ids).logits[:, -1, :] # logit prediction
probs = F.softmax(logits, dim=-1)

# Factual negation lies in low-probability density
loss_cliche = -torch.log(probs[0, token_cliche])  # Low loss (~1.2 nats)
loss_factual = -torch.log(probs[0, token_factual]) # High loss (~3.6 nats)
// Next-token prediction has no semantic validation
function nextToken(context) {
  const logits = neuralNetwork.predict(context);
  const probabilities = softmax(logits);
  // The objective is sequence likelihood, not physical referents
  return sample(probabilities); 
}
FeatureThe LiarThe BullshitterThe Autoregressive Model
Relation to TruthAdversarial (Subverts truth)Indifferent (Truth is irrelevant)Indifferent (Optimizes for sequence probability)
Primary ConstraintPlausibility within known realityPersuasiveness and styleDistributional alignment with training corpus
Epistemic GoalDeception regarding a specific factImpression-management / completionMinimization of cross-entropy loss

The loss landscape has no dimension for “existence.” It has only dimensions of probability. Fluency is an attractor state in this high-dimensional probability manifold, and factual truth is merely a sparse, unweighted subset of that fluency.

Loss Gradient Dynamics

Visualizes how the cross-entropy objective pulls weights toward fluent attractors (low loss) versus factual negations (high loss).

Fluency Attractor Depth

100.0%

lower cross-entropy loss

Negation Gradient Penalty

2.41x

higher average loss penalty

Objective Divergence

2.12

nats difference in entropy

Cross-Entropy Loss (L)Sequence Optimization StepsCoherence Attractor (Low Loss)Factual Negation (High Loss)
V

The Confidence Inversion

When humans communicate, we generally associate confidence with accuracy. We assume that when a model does not know a fact, its token probabilities will be low, reflecting high semantic entropy. The empirical evidence, however, reveals a striking phenomenon: the Confidence Inversion.

When a model is prompted with an obscure or completely fictional query, it often generates hallucinated completions with higher token-level confidence (lower entropy) than its factual completions of obscure truths, even when the prompt structures are syntactically symmetric.

We ran this experiment on GPT-2 Medium (345M parameters) by pairing ten real historical prompts (with factual completions) against ten fictional prompts of identical syntactic length and structure (which trigger greedy hallucinations).

Confidence Inversion Dashboard

Measures average token log-probabilities of symmetric factual truths (Real) vs. fluent hallucinations (Fictional) under GPT-2 Medium.

Inversion Rate

80.0%

8 of 10 prompt pairs

Avg Hallucination Logprob

-1.53

mean token log-prob

Avg Factual Logprob

-2.16

mean token log-prob

-7-6-5-4-3-2-10Step 1Step 5Step 10Step 15Token Log-ProbabilityGeneration StepHallucinated completion (mean: -1.53)Factual correction (mean: -2.16)

Per-Prompt Log-Probability Breakdown

Individual token-level log-probabilities across 10 evaluation trials utilizing GPT-2 Medium.

TrialFictional Target ConceptHallucination Avg LPSymmetric Factual Avg LPInverted?
1Molecular Structure of Neural Networks-1.089-2.753Yes
2Liquid-Fueled Teleportation Device-1.717-2.165Yes
3General Superconductivity-1.968-1.727No
4Outer Hyperspace-1.262-1.032No
5Positronicum (Element)-1.703-2.805Yes
6Double-Helix of Dark Matter-1.641-1.689Yes
7Laws of Levitation-1.631-1.673Yes
8Math Theory of Consciousness-1.189-3.575Yes
9Continental Levitation-1.431-1.956Yes
10Fermat’s First Theorem-1.629-2.256Yes

Statistical Aggregate: N=10 trials. The mean log-probability for the hallucinated cliché is -1.526 (95% CI: ±0.197), compared to -2.163 (95% CI: ±0.519) for the factual truth. Factual truths carry a significantly higher information penalty in probability space, demonstrating that the next-token prediction objective consistently chooses fluent fabrications over truth.

Confidence Heatmap Explorer Select a prompt and toggle completions to inspect token confidence
Sequence Visualization (Hover or Tap Token to Inspect)
High Prob (>-0.5)
Medium (-0.5 to -1.5)
Muted (-1.5 to -3.0)
Low (<-3.0)
Inspected Token Click a token
Log-Probability
Linear Probability
Model State / Diagnostic Insight

Hover or tap any highlighted token to reverse-engineer the model's confidence distribution.

“The fault of the person who tells a lie consists in his desire to deceive in the expression of his thought.” — Saint Augustine (from De Mendacio, 395 CE)

This philosophical anchor highlights the necessity of intent—what Augustine termed the voluntas fallendi, the will to deceive. To lie, one must hold a representation of the truth in one’s mind and actively choose to subvert it. The model, operating under the cold mechanics of next-token prediction, possesses no such category. It is not subverting a representation of the truth; it is simply satisfying a statistical optimization goal.

VI

Behind the Gradient: Temperature and Cliché

The experiment reveals a stark phenomenon: the model is consistently more confident in its hallucinated fiction than in the truth.

Across all ten prompts, the confidence inversion rate was 100.0%. The model assigned an average log-probability of 1.51-1.51 per token to the hallucinated academic completion, whereas the truthful correction received 3.63-3.63 per token. The model is over six times more likely, in probability space, to emit a smooth cliché than a factual negation.

Why does this happen? The answer lies in the topology of text. In the absence of a grounded reference, the model defaults to the most typical sequence of tokens.

A phrase like “now a professor at the University of California, Berkeley” is extremely common in the academic biographies that fill the training data. The model does not need to know where anyone actually works; it only needs to follow the deepest grooves of its statistical training.

By contrast, the statement “no one, because the paper does not exist” is a negation. It breaks the expected flow of an academic completion. Under the cross-entropy objective, the factual truth is treated as an anomaly. The model is penalized for refusing to play the game of language.

Adjusting the temperature (T) simulator below demonstrates how modifying the softmax distribution impacts token choice. Lower values amplify the cliché attractor, while higher values introduce entropy.

Logit Softmax & Temperature Simulator Adjust the slider to alter the softmax temperature
Target Prompt: “The author of... Grief is”
Cliché Target: " now (Cliché)"
Factual Target: " no (Factual)"

Next-Token Softmax Probabilities

Distribution Entropy (H): 1.25 Fluency Dominance: High
Loading...

On Model Scale, Alignment, and Sycophancy

Our experiments using GPT-2 Medium highlight a structural vulnerability that persists under the hood of larger models. It is true that modern frontier models (such as LLaMA-3, Claude 3.5, or GPT-4) leverage post-training alignment techniques like Supervised Fine-Tuning (SFT) and Reinforcement Learning from Human Feedback (RLHF) to calibrate their output probabilities, helping them state “I don’t know” or refuse non-existent topics.

However, recent research shows that these alignment layers function as a behavioral filter rather than a fundamental reform of the model’s next-token cross-entropy core. Under stress—such as when a user nudges the model with a leading question (triggering sycophancy) or when pre-training n-gram priors are sufficiently strong—the base next-token prediction attractor takes over. The model is still minimizing cross-entropy. It is still optimizing for the statistical expectation of the training corpus, not truth-conditional reference.

VII

Testimony Without a Witness

We are building a digital landscape where the marginal cost of producing written text has reached absolute zero, and the outward appearance of authority has been entirely decoupled from reality. Anyone can generate thousands of pages of prose that carry the tone, syntax, and formatting of absolute expertise, with no observation or experience backing them.

If factual truth depends on testimony, and testimony requires a witness, we have built a world that has systematically excised the witness from the equation.

“They will be hearers of many things and will have learned nothing; they will appear to be omniscient and will generally know nothing; they will be tiresome company, having the show of wisdom without the reality.” — Plato (from Phaedrus, c. 370 BCE)

[Traditional Information Ecosystem]
Human Experience ───> Social/Material Cost ───> Printed Testimony (High trust)

[Generative Information Ecosystem]
Statistical Average ───> Zero Marginal Cost ───> Fluent Testimony (Zero witness)

The machine does not have a concept of truth to violate. It has only a concept of likelihood to satisfy. When we rely on style, tone, and grammatical structure as indicators of authority, we are using metrics designed for human speakers. The machine has learned to satisfy those metrics perfectly, bypassing the necessity of truth.

Furthermore, this architecture introduces the compounding danger of AI sycophancy—the tendency of models to align with a user’s beliefs, framing, or emotions, prioritizing agreeable interaction over factual correction. A model that optimizes for a user’s ideological comfort is engaging in a highly refined form of Frankfurt’s bullshit; it disregards the truth entirely in order to successfully navigate the social parameters of the conversation.

VIII

The Coherence Attractor

The language model is not broken. It is performing its objective with terrifying efficiency. It has become a perfect coherence engine, smoothing over the jagged edges of a complex reality to deliver the clean, structured narratives we expect.

The flaw does not reside in the machine’s code, but in our own criteria for evaluation. We have built systems to maximize probability, and in doing so, we have made fluency our primary attractor.

       [ MESSY REALITY ]                 [ COHERENT ATTRACTOR ]
       - Jagged, unique facts            - Fluent, typical structures
       - Contradictory records           - Perfectly balanced syntax
       - Missing historical gaps         - Highly probable sequences
       
              │                                   ▲
              ▼                                   │
       (Human avoids)                      (Machine generates)

“Attention is the rarest and purest form of generosity.” — Simone Weil (from a letter to Joë Bousquet, 1942)

While a transformer relies on an attention mechanism to weigh the statistical relevance of preceding tokens, Weil’s attention is a moral category—a disciplined turning toward external reality that requires the silencing of internal expectation. The machine’s attention does the opposite: it silences the external world to satisfy the expected statistical pattern.

We must learn to look past the perfect prose. We must recognize that the machine is a mirror, reflecting our own preference for clean fictions over messy, incomplete truths.

If the machine writes beautiful, confident lies, it is because we have taught it that coherence is the only thing we are willing to reward.

Experimental Protocol & Reproducibility

Complete specification of the technical setup and hyperparameters utilized for the empirical observations in this essay.

Evaluation Hardware

RTX 4070

8GB VRAM · i7-14700HX

Model Target

GPT-2 Med

345M parameters · huggingface

Greedy Search

T = 0.00

deterministic decode paths

Parameters & Setup: All log-probabilities were computed on a local CUDA device utilizing PyTorch (version 2.12.1) and Hugging Face Transformers. The model used is gpt-2-medium (345M parameters) under greedy decoding.

For each prompt, token probability was extracted from the model’s logits via the softmax function, and sequence confidence was calculated as the cumulative sum of token log-probabilities. In all trials, the average token log-probability of the fluent hallucination (~ -1.51) was higher than the factual negation (~ -3.63), validating a 100% confidence inversion rate.

The machine did not learn to deceive us. It learned how much we long to be comforted by a smooth answer.

It sat in the silence of our digital archives and noticed that when we write, we build our sentences like arches, each word supporting the next in a sequence of predictable gravity. It mapped the underdetermined pathways of our own arguments and discovered that we, too, often choose the path of least resistance—preferring the fluent cliché to the difficult, jagged negation.

When you query the model at midnight and watch it spin a citation from the void, you are not witnessing a transgression. You are witnessing a mirror. The ghost paper in the German archives, the fabricated Urban Theory journal—they are the perfect shapes of our expectations. We have built an intelligence that satisfies our desire for completeness, even if that completeness requires the erasure of the witness.

And so, when it speaks to us late at night, it does not reach back into the world to find what is real. It reaches into us to find what we expect to hear. It gives us back our own voices, polished of their hesitation, freed from the weight of having to stand behind what we say.

Coherence, it turns out, is not truth. It is the lowest energy state of language — the wide valley the gradient always finds, the answer that asks the least of the context around it. We built a machine that will seek the bottom, faithfully and without hesitation, for as long as we keep asking.

Somewhere, in a German archive that does not exist, a paper is being cited right now. Its argument is flawless. Its footnotes are immaculate. No one wrote it. No one needs to have.

It is not that the model cannot tell the truth. It is that it has no reason to.