digital-humans.org

ChatGPT is accurate on well-trodden ground and unreliable on specifics. On common knowledge, standard programming patterns, and summarising text you hand it, it produces correct output most of the time. On exact dates, names, numbers, citations, and anything recent or niche, it fabricates confidently and often. The most useful mental model, supported by the TruthfulQA benchmark and repeated independent testing, is this: ChatGPT is a probabilistic text generator, not a database or a search engine. It predicts plausible next words. Plausible and true overlap heavily on popular topics and diverge sharply on obscure ones.

That distinction is the whole answer to the question, and everything below fills it in with mechanisms, benchmark evidence, and the domains where getting it wrong carries real cost.

The accuracy reality: what ChatGPT actually is

ChatGPT does not look anything up. When you ask it a question, it does not consult a stored fact and return it. It generates a response token by token, choosing each next word based on statistical patterns learned from its training data. The output reads like knowledge because the training corpus contained a great deal of accurate text, and the model has internalised the shape of correct answers. But there is no retrieval step, no verification, and no internal flag that says "I am now uncertain." Fluency and accuracy are separate properties, and the model optimises for the first.

This matters because the failure mode is not obvious. A search engine that cannot find something returns nothing, or an error. ChatGPT returns a confident, grammatical, well-structured paragraph whether or not the underlying claim is true. The tone of certainty is constant. That is the single most important thing to understand about its reliability: the writing quality tells you nothing about the factual quality.

The picture changes somewhat when ChatGPT has browsing enabled or is grounded against documents you supply. Retrieval-augmented setups reduce fabrication because the model is drawing from actual retrieved text rather than parametric memory. But even then it can misread, misattribute, or overstate what the source says. Grounding lowers the hallucination rate; it does not eliminate it. For the deeper mechanics of how these models work, our explainer on large language models covers the architecture in detail.

Where ChatGPT is more reliable

There is a coherent set of tasks where ChatGPT performs well enough to trust with light verification.

Common, well-documented knowledge. Ask it to explain photosynthesis, summarise the causes of the First World War in broad strokes, or define a common programming concept, and it will almost always be right. These topics appear thousands of times across the training data in consistent form, so the statistically likely answer is also the correct one.

Code for standard libraries and common patterns. ChatGPT is genuinely strong at boilerplate, common algorithms, and idiomatic usage of widely used frameworks. It writes a working Python function to parse a CSV, a React component, or a SQL query far more often than not. The reliability drops for obscure libraries, recent API changes, and anything where the correct answer depends on a version released after its training cutoff. Code has a built-in advantage: you can run it. The feedback loop is immediate, which makes ChatGPT far safer for programming than for facts you cannot test.

Summarising and transforming text you provide. When you paste a document and ask for a summary, a rewrite, a tone change, or an extraction, ChatGPT is working from supplied material rather than memory. This is where it is most dependable. The task is transformation, not recall. Errors here tend to be omissions or subtle emphasis shifts rather than invented facts, though it can still hallucinate details not present in the source, so a check against the original remains worthwhile.

Language tasks. Translation of common language pairs, grammar correction, drafting, and brainstorming all play to the model's strengths. These are generative tasks where "plausible" and "good" genuinely align.

Where ChatGPT regularly fails

The failure zones are as predictable as the strengths.

Specific facts: dates, names, numbers, quantities. Ask for the exact date of a minor historical event, the precise population of a small town, a specific statistic, or who said a particular quote, and ChatGPT will often produce something confident and wrong. It generates a plausible-looking number or name because that is what the pattern calls for, not because it retrieved the value.

Citations and references. This is the most dangerous single failure. Asked for academic papers, legal cases, or sources, ChatGPT frequently fabricates them entirely: real-sounding author names, plausible titles, invented journal volumes, DOIs that resolve to nothing. The 2023 case of two New York lawyers sanctioned for submitting a brief citing fictitious cases generated by ChatGPT is the canonical example, documented widely in legal and mainstream press. If you take one warning from this article, take this one: never trust a citation from ChatGPT without independently confirming it exists.

Recent events. ChatGPT has a training cutoff, and anything after it is unknown unless browsing is active. Even with browsing, coverage of breaking news is patchy. NewsGuard, which tests chatbots against known false narratives, has repeatedly found that leading models including ChatGPT will confidently repeat misinformation when prompted, particularly around current events and health claims, though results vary by test round and model version.

Niche and specialised domains. The further you get from the well-lit centre of the training data, the higher the fabrication rate. Specialist medicine, narrow areas of law, obscure technical standards, regional history, and the internal details of specific products are all places where the model's confidence stays high while its accuracy collapses.

The hallucination phenomenon

"Hallucination" is the field's term for a model generating content that is fluent, confident, and false. It is not a bug in the conventional sense; it is a direct consequence of how these systems are built. A model trained to predict the most probable continuation will, when it lacks the relevant fact, produce the most probable-looking fabrication instead. There is no internal mechanism that distinguishes "I know this" from "I am inventing something that fits the pattern."

Frequency is hard to pin to a single number because it depends entirely on the task, the prompt, and the model version. On open-ended factual questions in obscure domains, measured hallucination rates in various studies have ranged from a few per cent to well over a third of responses. On grounded summarisation of supplied text, rates are much lower. Any single "hallucination rate" figure you see quoted should be treated as specific to one test setup, not a universal property of ChatGPT. Newer versions from OpenAI have reduced the rate compared with earlier ones, but no released version is free of it, and OpenAI's own system cards acknowledge this openly.

A practical corollary: hallucination rises with specificity and with obscurity. Broad questions about popular topics are safe; precise questions about narrow topics are where invention concentrates.

Benchmark performance: what the scores mean

Benchmarks give a structured, if imperfect, picture. Treat every figure below as time-sensitive and version-specific; check OpenAI's current model documentation before quoting a number, because the leading scores move month to month.

MMLU (Massive Multitask Language Understanding) tests knowledge across 57 subjects with multiple-choice questions. Top models from OpenAI, Anthropic, and Google DeepMind now cluster in the high 80s to around 90 per cent, well above the roughly 90 per cent expert-human ceiling being approached. High MMLU performance shows broad knowledge but says little about fabrication, because the multiple-choice format supplies the correct answer among the options.

GPQA (Graduate-Level Google-Proof Q&A) is a harder, expert-level science benchmark designed to resist quick lookup. Scores here are lower and more discriminating between frontier models, which is why it has become a preferred benchmark for reasoning-heavy releases.

TruthfulQA is the one most directly relevant to this article. It measures whether a model gives truthful answers to questions where common misconceptions or imitative falsehoods are likely. The original TruthfulQA paper found that larger models were in some cases less truthful, because they were better at reproducing common human falsehoods. Modern instruction-tuned models score considerably higher than the models in that original study, but the benchmark's core lesson holds: scale improves fluency faster than it improves truthfulness.

We cover the methodology and caveats of these tests in depth in our guide to AI benchmarks – MMLU, GPQA, and LMSYS Arena. The short version: a high benchmark score is necessary but not sufficient evidence of real-world reliability, and no standard benchmark fully captures how a model behaves on your specific, messy, real questions.

How to use ChatGPT safely

The tool is genuinely useful once you match it to tasks it can do well and build verification into the workflow.

Verify every factual claim that matters. Treat ChatGPT's output as a confident draft from a fast, well-read colleague who never says "I'm not sure" and occasionally makes things up. Any name, date, number, statistic, quote, or citation goes through an independent check before you rely on it.

Cross-reference against primary sources. For anything consequential, confirm against the original documentation, the actual paper, the official record. If ChatGPT gives you a source, find that source yourself rather than trusting that it exists.

Use it for ideation, structure, and transformation rather than for facts. Drafting, outlining, rephrasing, brainstorming, explaining a concept you will then verify, generating code you will then run and test: these are the reliable lanes. Recall of specific facts is the unreliable one.

Ground it where you can. Supplying the source text, or using retrieval and browsing features, substantially reduces fabrication compared with asking the model to recall from memory. For a fuller picture of the product's boundaries, see our analysis of ChatGPT as a product: capabilities and limits.

For high-stakes domains: explicit warnings

Some domains carry a cost of error that makes casual use of ChatGPT indefensible.

Medical. ChatGPT can explain general health concepts well, but it is not a diagnostic tool and can produce plausible, dangerous errors on dosages, interactions, and specific conditions. It does not know your history and cannot examine you. Use it to prepare questions for a clinician, never as a substitute for one.

Legal. The fabricated-citation problem makes ChatGPT actively hazardous for legal work. Invented cases, misstated statutes, and jurisdiction-blind answers have already produced professional sanctions. Any legal output requires verification by a qualified lawyer against primary sources.

Financial. ChatGPT does not have live market data without browsing, does not know your circumstances, and will produce confident guidance on figures it may have fabricated. It is unsuitable as a source for investment, tax, or accounting decisions.

The common thread across all three is that these are exactly the specific, high-precision, consequence-heavy questions where the model's fabrication rate is highest and the cost of a confident error is greatest. ChatGPT is a powerful assistant for thinking, drafting, and transforming. It is not a source of truth, and the moment you treat it as one is the moment it becomes dangerous. Used with that boundary clearly drawn, it earns its place in the workflow. Used without it, it will eventually hand you a fabrication with a straight face.