# What is AI hallucination and why does it happen? — QANATONE

> AI hallucination is when a model states something false with full confidence. Invented sources and wrong dates are typical examples.

Kaynak: https://www.qanatone.com/en/nedir/halusinasyon-nedir/

---

[Explainers](https://www.qanatone.com/en/nedir/)

# What is AI hallucination and why does it happen?

15 Sep 2026 2 min read Reliability · Hallucination

AI hallucination is when a model states something false with full confidence. Invented sources and wrong dates are typical examples.

## What is hallucination?

Ask a language model for sources and it may write the title of a paper that does not exist, a legal clause that was never passed or a product feature that was never released. The text is fluent and the tone confident, but the information is wrong. That is hallucination. There is no error message, which is what makes it hard to spot.

In 2023 a US lawyer was sanctioned for filing a brief that cited court decisions ChatGPT had invented, one of the best known examples of the risk.

## Why does it happen?

[Large language models](https://www.qanatone.com/en/nedir/buyuk-dil-modelleri-nedir/) do not look records up in a database; they generate the most likely next words. Training teaches them to complete text plausibly, and stopping at the edge of their knowledge to say "I don't know" does not come naturally out of that training. When a question touches something rare in the training data or something that happened after training, the model still builds a fluent answer.

Questions with false premises raise the risk. Ask "how did company X's 2019 lawsuit end?" about a lawsuit that never existed and the model is likely to invent an outcome.

## How to reduce it

- Feed the model the right information: putting the source documents into the prompt with [RAG](https://www.qanatone.com/en/nedir/rag-nedir/) is one of the most effective methods.

- Ask it to show which document each claim comes from, so claims can be checked.

- Allow the model to say when it does not know, and state that rule clearly in the [system prompt](https://www.qanatone.com/en/nedir/system-prompt-nedir/).

- In critical areas such as law, health, finance and pricing, verify output with [guardrail](https://www.qanatone.com/en/nedir/guardrail-nedir/) checks or human approval.

Lowering [temperature](https://www.qanatone.com/en/nedir/temperature-nedir/) makes answers consistent but does not fix wrong information.

## Can it be eliminated?

Not with today's technology. Newer models hallucinate less, but the rate is not zero. Systems that talk to customers or make decisions are therefore designed on the assumption that hallucinations will happen: the model answers only from approved information and hands the conversation to a person when it is unsure.

## More articles

[Infrastructure · Inference ### What is inference in AI? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/inference-nedir/)[Marketing · Influencers ### What is influencer marketing and how does it work? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/influencer-marketing-nedir/)[Model Type · LAM ### What is a Large Action Model (LAM)? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/lam-nedir/)[Performance · Latency ### What is latency in AI applications? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/latency-nedir/)[Model Type · LCM ### What is a Large Concept Model (LCM)? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/lcm-nedir/)[Marketing · Basics ### What does marketing mean? Definition and the 4Ps 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/marketing-ne-demek/)[Model Type · MLM ### What is a masked language model (MLM)? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/mlm-nedir/)[Safety · Guardrails ### What are guardrails in AI? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/guardrail-nedir/)
