Direct answer
RAG faithfulness measures whether claims in an answer are supported by the context supplied to the model. Groundedness is an overloaded term that can mean semantic support, reliance on external evidence, or traceability to a source. Citation verification checks whether a submitted citation actually binds to identifiable, current evidence in the named source.
These checks overlap, but they are not interchangeable. A response can be faithful to a corrupted retrieval chunk, grounded in a real but outdated policy, or supported by context while displaying the wrong citation. Production systems should measure each layer separately and use the result for a specific decision.
The existing guide to measuring RAG faithfulness and citation quality covers test construction. This article supplies the terminology and control model needed to interpret those tests.
Why the terminology causes confusion
Evaluation libraries, research papers, and vendors use “groundedness” differently. One product may define it as semantic entailment between answer and context. Another may use it for source attribution. A third may calculate a model-generated score called groundedness without checking the displayed document locator.
Therefore, metric names are not enough. Every evaluation contract should specify:
- the input objects being compared;
- whether the comparison is deterministic or model-judged;
- the unit of evaluation: answer, sentence, claim, or citation;
- the result scale and threshold;
- the failure classes the metric can detect;
- the decision controlled by the result;
- known failure modes and calibration evidence.
Without this contract, two teams can report “92% groundedness” while measuring different properties.
The four objects in a RAG answer
Evaluation becomes clearer when the pipeline distinguishes four objects:
- Canonical source evidence: the trusted document version and its page-level or element-level representation.
- Retrieved context: chunks selected for the current question.
- Generated claims: atomic factual propositions in the answer.
- Displayed citations: references intended to connect claims to source evidence.
Each metric compares different objects.
| Evaluation | Left side | Right side | Core question |
|---|---|---|---|
| Retrieval relevance | User question | Retrieved context | Did search return useful evidence? |
| Faithfulness | Generated claims | Retrieved context | Are claims supported by what the model saw? |
| Citation verification | Displayed citations | Canonical source evidence | Do references resolve and match? |
| Answer relevance | Generated answer | User question | Did the response answer the request? |
| Task correctness | Generated result | Ground truth or rules | Is the final result correct? |
This model exposes a critical fact: faithfulness can pass while citation verification fails, and citation verification can pass while answer relevance fails.
What RAG faithfulness measures
Faithfulness typically decomposes an answer into claims and assesses whether each claim is supported by the provided context. A simplified formula is:
faithfulness = supported answer claims / evaluated answer claims
The value depends on how claims are extracted and what “supported” means. If a sentence contains three facts but the evaluator treats it as one claim, partial support may receive an optimistic result. If the judge sees large amounts of context, it may rationalize a weak connection.
Faithfulness is useful for detecting:
- facts introduced from model memory rather than retrieved context;
- contradictions between the answer and context;
- unsupported elaboration;
- overconfident answers when context is insufficient.
Faithfulness alone does not establish:
- that retrieved context came from the correct source version;
- that parsing preserved tables or qualifiers correctly;
- that the displayed page or source citation is accurate;
- that the source is authoritative;
- that a calculation over supported inputs is correct.
Calibration requirement: Validate an LLM-based faithfulness judge against a human-labeled set from your domain. A threshold copied from another application is not evidence that the judge works for legal exceptions, medical qualifiers, or financial tables.
What groundedness should mean
Because “groundedness” lacks one universal operational definition, teams should qualify it.
Context groundedness
This means the answer is semantically supported by supplied context. In practice, it is close to faithfulness.
Source groundedness
This means the evidence traces to an external source rather than merely existing in an ephemeral prompt. It requires source identity and provenance.
Citation groundedness
This means a specific citation binds to matching source evidence. It is the narrow, testable definition used by Ethos.
Operational groundedness
This adds authority, effective date, access scope, and policy status. A quote can be textually grounded yet operationally invalid because it comes from a draft or superseded document.
When publishing evaluation results, write “claim support against retrieved context” or “citation binding against versioned source evidence” instead of relying on the word groundedness alone.
What citation verification measures
Citation verification checks the submitted evidence reference against a trusted grounding source. Depending on source capabilities, it can verify:
- document identity;
- source fingerprint or version;
- page, element, span, region, or table-cell existence;
- quotation integrity;
- normalized numeric or structured value;
- location and coordinate bounds;
- declared limitations of the parser or adapter.
The output should distinguish failures. A stale fingerprint is different from missing evidence; a capability-limited table check is different from a quote mismatch.
Citation verification does not automatically decide whether the evidence is relevant to the question or sufficient for a conclusion. A passage can exist exactly as cited while being used misleadingly.
The citation grounding guide explains how to preserve the source relationship through parsing and chunking.
How the metrics can disagree
| Scenario | Faithfulness | Citation verification | Final answer |
|---|---|---|---|
| Claim follows context, but citation points to wrong page | Pass | Fail | Block or repair transparently |
| Claim follows obsolete context and citation matches obsolete source | Pass | Pass for text, fail freshness policy | Block and re-index |
| Citation exactly matches source, but claim overstates it | Fail | Pass | Block or review |
| All source facts are supported, but calculation is wrong | May pass | Pass | Recompute deterministically |
| Answer is supported but does not answer the question | Pass | Pass | Fail relevance |
| Correct answer comes from model memory with no evidence | Fail | Not verifiable | Abstain or retrieve evidence |
| Parser dropped a negation before retrieval | May pass against corrupted context | May fail against canonical evidence | Repair ingestion |
This matrix shows why a single “hallucination score” is insufficient for diagnosis.
Where Ethos fits
Ethos is a deterministic document evidence layer. It verifies caller-provided citations against native Ethos JSON or supported foreign parser outputs exposed through a GroundingSource adapter. It reports structured evidence outcomes rather than estimating general answer quality.
Use Ethos for:
- exact source, page, quote, value, region, and fingerprint checks;
- repeatable CI assertions;
- stale-citation detection;
- audit reports and inspectable source crops;
- capability-aware failure when source structure is insufficient.
Use RAGAS, DeepEval, a calibrated NLI model, task-specific code, or human review for:
- semantic support and contradiction;
- answer relevance;
- reasoning quality;
- calculations and domain rules;
- open-ended synthesis.
The correct positioning is complementary. A semantic evaluator should consume verified evidence where possible, and Ethos should not claim semantic truth beyond its evidence-binding contract.
A production evaluation stack
Stage 1: source quality
Confirm that eligible documents are authoritative, current, permissioned, and parseable. Record source versions and fingerprints.
Stage 2: parser quality
Test reading order, page identity, headings, tables, and extraction warnings. Use source-aware PDF parsing so retrieval records retain provenance.
Stage 3: retrieval quality
Measure context recall and precision against labeled evidence. Inspect whether retrieval returns required exception clauses and table context, not just topical matches.
Stage 4: citation verification
Verify each evidence reference against canonical source artifacts. Fail closed on unknown IDs, stale fingerprints, mismatches, and unsupported evidence kinds.
Stage 5: claim faithfulness
Evaluate atomic claims against the verified evidence available for each claim. Calibrate the evaluator and preserve explanations for reviewed failures.
Stage 6: task correctness
Use deterministic code for arithmetic, date comparison, unit conversion, and schema validation. Use domain reviewers for conclusions with material ambiguity.
Stage 7: release policy
Release grounded, relevant source facts. Route supported synthesis to review when required. Block unsupported, irrelevant, stale, or uncovered claims.
Metric design checklist
Before adopting any metric, answer these questions:
- What exact failure would cause the metric to decrease?
- Can two runs produce different results?
- Does the metric see canonical source evidence or only retrieved text?
- Does it evaluate every atomic claim?
- How does it handle abstentions and insufficient context?
- Can it distinguish contradiction from missing evidence?
- Does it validate citation locators and source versions?
- What human-labeled sample established the threshold?
- Which release decision depends on the result?
- What evidence is retained for an appeal or incident?
If these questions cannot be answered, the metric is exploratory—not a safe production gate.
Definitive verdict
Faithfulness, groundedness, and citation verification describe different parts of RAG trust. Faithfulness evaluates claims against context. Groundedness must be explicitly defined. Citation verification tests whether references bind to source evidence. None proves universal truth by itself.
Build a layered evaluation system: preserve evidence with DocuShell Parse PDF, verify citations deterministically with Ethos, evaluate semantic support at claim level, recompute structured results, and apply a transparent release policy. Use the DocuShell hallucination index as broader risk context rather than a replacement for these controls.
Primary keyword: RAG faithfulness vs groundedness
Optimized meta title: RAG Faithfulness vs Groundedness Explained
Optimized meta description: Compare RAG faithfulness, groundedness, and citation verification. Learn what each proves and how to combine them safely.
Proposed URL slug: rag-faithfulness-vs-groundedness-vs-citation-verification
Frequently Asked Questions
Free Tool
Hallucination Index
Compare model factuality signals and estimate workflow hallucination risk.
Try Hallucination IndexDocuShell Team
The DocuShell editorial group writes and maintains guides for everyday PDF workflows, with updates made when tool behavior or documented limits change. See our editorial standards for the process behind each article.
Focus: RAG evaluation, document evidence, citation verification, and AI quality engineering
Questions or feedback? Get in touch.



