Case study
Tax Policy Navigator
A citation-grounded UK tax navigator over the full HMRC Employment Income Manual, evaluated end-to-end on Mistral.
Two architectural approaches to regulated-domain retrieval-augmented generation, measured on a 50-question Claude-authored eval. 47 of 50 reach the right verdict, with across 188 cited claims, every claim is factually correct against UK tax law and 89% are directly grounded in the cited HMRC paragraph. Functional gaps remain that block public end-user use.
Themes RAG · Citations · Graph-RAG · Evaluation · Mistral
At a glance
| Metric | Value |
|---|---|
| Correct top-level outcome (answer when in-scope, refuse when not) | 48 / 50 questions |
| Refusal precision (every refusal was on a question that should refuse) | 11 / 11 |
| Claims factually correct against UK tax law (Claude judge) | 189 / 189 = 100% |
| Claims directly grounded in the cited HMRC paragraph (Claude judge) | 167 / 189 = 88% |
| System’s runtime self-grade (claims it rates as supported, before shipping the answer) | 0.81 |
| Corpus | 2,798 HMRC manual pages, 9,535 cross-references |
| Models | Mistral end-to-end (mistral-embed, mistral-medium-latest) |
Contents
- The problem
- First approach: hybrid retrieval over heading-aware chunks
- Where the first approach broke
- Second approach: structure-aware retrieval
- Results on the full corpus
- How the metrics were calculated
- What an LLM judge can do, and what still needs a human
- The lesson
- Appendix: the 50-question eval, with verdicts
The problem
Citation-grounded answers about regulated domains have to clear three product bars at once.
Every claim has to map back to a source paragraph the user can read for themselves. Refusal has to be a typed outcome the UI can route, not hedged prose. And the system has to recognise when the corpus genuinely cannot answer rather than stitching plausible fiction.
The corpus chosen is HMRC’s Employment Income Manual: 2,798 pages of UK income-tax rules, each carrying explicit cross-references to other pages. The benchmark is a 50-question Claude-authored eval covering personal allowance, tax bands, benefits in kind, travel, salary sacrifice, pensions, termination, social security, and more, plus 10 questions deliberately designed to refuse.
The product is a single navigator surface. The user types a freeform tax question. The system returns either a grounded answer with footnotes or one of five typed refusal cards.
First approach: hybrid retrieval over heading-aware chunks
This is the baseline. The retrieval-augmented generation pipeline most teams arrive at after a couple of weeks of work. It is the textbook shape, with a few sharper choices around chunking and refusal.
The pipeline has six steps, each with one job.
Heading-aware chunking at ingest time. Each HMRC page is parsed with its heading hierarchy preserved, then split into chunks aligned to those headings. Each chunk carries its full heading path so retrieval sees not just the body text but the section it sits under.
Scope guard. Refuses obviously off-topic questions (corporation tax, VAT, capital gains, Scottish bands, property income) and malformed inputs before any retrieval runs. The system never spends LLM cost on a question the corpus is not meant to answer.
Hybrid retrieval over the chunk index. Two retrieval methods run side by side and are combined.
- Sparse keyword search using BM25, a standard ranking algorithm that scores documents by how well their words match the query, weighted by rarity (rare matching words count more than common ones).
- Dense semantic search over Mistral embeddings of every chunk, scoring by cosine similarity to the embedded query.
- The two ranked lists are merged using reciprocal rank fusion: each chunk’s contribution from each list is
1 / (rank + 60), summed across the two lists. This is the standard recipe for combining sparse and dense retrieval signals into one ranking that respects both.
The top 12 chunks come out the other side.
Page rollup, hit-only. The top chunks are grouped back to the page they came from, so the next step sees pages rather than disconnected snippets. In this first approach the rollup keeps only the chunks that scored in the top hits; everything else from the same page is dropped.
Selection (Mistral, strict). A Mistral chat call gets the candidate pages and picks which ones the answer must rely on. The original prompt is strict: keep only paragraphs that directly answer the question; otherwise return an empty selection.
Stitch (Mistral). A second Mistral call writes the answer with one citation marker per sentence, drawing only from the selected pages.
Claim verify (Mistral). A third Mistral call checks each cited claim against the cited paragraph and labels it supported, partially supported, unsupported, or contradicted. The verifier feeds the per-question faithfulness score and triggers refusal if too many claims fail.
Refusal is a typed outcome with five categories: out of scope, low coverage, conflict, stale, and malformed. Each renders with its own UI card. The system never writes “I don’t know” as English prose.
This baseline is reasonable. Many domains call it done at this point. On the full HMRC corpus it is not.
Where the first approach broke
Take the question what is the basic rate of income tax for the current tax year?. The right page was retrieved into the candidate set. The system returned a refusal. Direct inspection of the selection model’s response showed it had explicitly chosen no candidates from what retrieval surfaced.
The selection model was correct given what it could see. The page rollup was throwing away the chunk that contained the actual rate table. Hybrid retrieval surfaced the page’s introduction and a downstream subsection. The chunk between them, with the rates and bands table, was a strong vector match but not a top retrieval hit. The rollup kept only the chunks that were direct hits, so the answer-bearing chunk never reached the selection model.
The same pattern repeated across other failures. The rule chunk was retrieved, the example chunks that gave it teeth were not. The threshold was buried under a heading that did not contain the literal threshold word. The corpus contained the answer; the architecture was throwing it away.
Second approach: structure-aware retrieval
Three changes from the first approach. Every step not listed below is unchanged.
1. New step: one-hop graph expansion (added between retrieval and rollup). HMRC pages link to each other constantly. The parser was already extracting these as a graph during ingestion, and 9,535 such cross-references sat in the index unused. The new step takes the top hybrid hits and follows two kinds of edges one hop:
- Cross-reference edges (page to page): the “see EIM…” links the corpus author wrote in their own prose.
- Same-section sibling edges (chunk to chunk within a page): chunks that share a heading.
Both contribute at decayed relevance, meaning the original retrieval hit stays at the top of the ranking and the new neighbours sit below it. The principle this rests on is that a regulated corpus encodes its own knowledge graph in author-supplied cross-references. Following them is a stronger retrieval signal than any reranker that has not seen the corpus.
2. Page rollup now keeps the full page, anchor first. The first approach kept only the chunks that hybrid retrieval had directly scored, in source-file sequence. The second approach pulls the whole page (capped at eight chunks) and reorders so the highest-scoring chunk leads. The selection model sees the page in priority-relevance order, with the answer-bearing section near the top.
3. Selection becomes recall-greedy. The first approach’s selection prompt read as a literal-phrase test, which caused it to reject rate-table pages on rate queries because the table did not contain the literal phrase “basic rate”. The new prompt is explicit: a page with a rate table answers a rate question even if the page does not use the question’s words; if two pages cover the same rule, keep both. Selection becomes broad. The claim verifier downstream stays strict.
Results on the full corpus
The same 50 Claude-authored questions, broad coverage of the in-scope domain plus 10 designed-to-refuse. Mistral end-to-end: a Mistral embedding model for both build-time chunk embedding and query embedding, and a Mistral chat model for selection, stitching, and claim verification.
| Outcome | Count | Note |
|---|---|---|
| Answered with citations | 38 / 50 | mean faithfulness 0.81 |
| Correctly refused (out of scope) | 9 / 50 | every refusal landed on a question that should refuse |
| Correctly refused (malformed) | 1 / 50 | the one-word “Tax” question routed to malformed |
| Genuine in-scope failure | 1 / 50 | apprentice scholarships: corpus has the rule, retrieval did not surface it |
| Conflict | 1 / 50 | statutory redundancy rule has carve-outs that read as contradictions out of context. The system flagged the conflict and refused rather than synthesise. |
48 of 50 reached the right verdict category. Refusal precision is 100% on the 11 questions that should not have been answered.
Each in-scope answer was judged by Claude as a second-opinion judge against the cited HMRC paragraph text, on two axes:
- Claim-level correctness: 189 / 189 = 100%. Every cited claim across the 38 in-scope answers matches UK tax law as Claude knows it for the current tax year. Claim-level binary judgement (correct or not) with a one-line note explaining any borderline call. Per-question breakdown in the appendix.
- Claim-level groundedness: 167 / 189 = 88%. A claim is grounded if its cited HMRC paragraph directly states or directly entails the claim. The 22 ungrounded claims are mostly synthesis claims that pool two cited paragraphs into a confidence the corpus does not write down, or year-specific figures whose cited paragraph supports the framework but not the precise number.
- System verifier’s mean faithfulness: 0.81. The system’s own claim-by-claim verifier (Mistral-as-judge) labels each claim supported, partially supported, unsupported, or contradicted. The 0.81 is the mean of
supported / total claimsacross the 38 in-scope questions. It agrees with Claude’s binary groundedness verdict on roughly 88% of claims; the disagreement set is the question list most worth a human reviewer’s time.
How the metrics were calculated
Score every cited claim independently. Two yes/no questions. Aggregate as a percentage.
For every cited claim across every in-scope answer, two binary verdicts:
- Correct? Is the factual content of the claim true under UK tax law as of the current tax year?
- Grounded? Does the cited HMRC paragraph directly state, or directly entail, the claim?
Both are binary by design. Borderline cases pick the stricter verdict and a one-line note explains why. Aggregates are computed at the claim level (188 claims across 37 questions), not at the question level. This gives statistical power, makes inter-judge agreement measurable, and locates failures at the sentence level rather than burying them in a question-level mean.
Worked example: Q1 (personal allowance and taper)
The system answered how does the personal allowance work and when does it taper? with five sentences, each ending in a citation marker. Each sentence is one claim.
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | The standard Personal Allowance is £12,570, meaning you pay no Income Tax on earnings up to this amount | RATES-PERSONAL-ALLOWANCE | ✓ | ✓ |
| 2 | If your adjusted net income exceeds £100,000, your allowance reduces by £1 for every £2 earned above that threshold | RATES-INCOME-OVER-100K | ✓ | ✓ |
| 3 | The allowance drops to zero once your income reaches £125,140 or more | RATES-INCOME-OVER-100K | ✓ | ✓ |
| 4 | You pay tax on all income above £125,140 at the highest rate, with no Personal Allowance | EIM-5 | ✓ | ✓ |
| 5 | Blind Person’s Allowance can increase your tax-free amount if eligible, adding to the standard allowance | EIM75750 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Per-question result: 5 of 5 claims correct (100%), 5 of 5 claims grounded (100%). The headline numbers in the appendix table are computed by aggregating these per-question scores into one claim-level total for each axis.
What the same procedure looks like when something is wrong
Q3 asked at what income the additional rate of income tax starts. The system answered the additional rate of income tax starts on taxable income over £125,140 [RATES-INCOME-OVER-100K]. The £125,140 figure is correct. The cited paragraph, however, is about the £100,000 personal-allowance taper, not the £125,140 additional-rate threshold. The two figures coincide only because the policy was set that way; the cited paragraph does not state the additional-rate threshold. So the verdict is correct: ✓, grounded: ✗, with a one-line note.
That single failed claim is one of the 22 ungrounded claims out of 189 in the aggregate.
Two judges, agreement as confidence
The system’s own claim-verifier (Mistral-as-judge) labels each claim supported, partially supported, unsupported, or contradicted, independently of Claude. Mapped to the same binary scale, the two judges agree on 88% of claims. The 12% on which they disagree are the questions a human reviewer should look at first.
Per-question detail in the appendix.
What an LLM judge can do, and what still needs a human
An eval like this one has six stages. In a production regulated-RAG system, each stage falls clearly on one side of the human / LLM line.
| Stage | LLM-friendly | Human-required |
|---|---|---|
| 1. Authoring eval questions | ✓ | |
| 2. Authoring reference answers and citations (the ground truth the eval grades against) | ✓ (domain expert) | |
| 3. Generating the system’s answers at runtime | ✓ (the system itself) | |
| 4. Scoring correctness of system’s answers against the reference | ✓ (first-line filter) | ✓ (calibration sample, disputed cases) |
| 5. Scoring groundedness of citations against the cited paragraphs | ✓ (first-line filter) | ✓ (calibration sample, disputed cases) |
| 6. Adjudicating conflict outcomes and edge-case rule interpretation | ✓ (domain expert) |
The pattern: an LLM judge is the right tool for the high-volume, repeatable parts of the loop (authoring questions, runtime claim verification, first-line scoring, regression and drift monitoring). A domain expert is the right tool for the parts that anchor the system to reality (authoring the ground truth, calibrating the judge, adjudicating genuine rule conflicts, sign-off on user-facing claims).
What this eval does in practice, and the caveat. This is a prototype, so Claude is doing all six stages including the ones a chartered tax adviser would do in a real product. Specifically, Claude is currently authoring the reference answers (stage 2) and adjudicating the borderline cases (stage 6) as well as the LLM-friendly stages 1, 4, and 5. The numbers should be read in that light: 100% claim correctness and 89% claim groundedness against a Claude-authored reference are stronger evidence about the system’s mechanical behaviour than about its regulatory accuracy. A production version of the same eval would replace Claude with a domain expert at stages 2 and 6, keep Claude (or any frontier LLM) at stages 1, 4, and 5, and use the agreement rate between the two as a calibration signal.
The lesson
The experiment ran cleanly. The first approach failed on the full corpus in a specific, traceable way. Three architectural changes in the second approach closed the failure mode. The system now answers 38 of 40 in-scope questions with cited claims at 100% factual correctness and 89% direct grounding. Three things from this work transfer to any regulated-domain retrieval-augmented system.
A regulated corpus is its own retrieval signal. The author has already told you which adjacent rules govern the question, in the prose, by reference. Following those references at retrieve time is a stronger signal than any reranker that has not seen the corpus. The diagnostic walkthrough in this post is the failure mode the graph traversal closes; the second approach is the fix that uses the corpus’s own knowledge graph.
The hard problems are domain problems, not retrieval problems. Even with strong retrieval and tight grounding, four obstacles remain that no architectural change resolves:
- Per-claim confidence has to reach the user. A citation-backed answer where one claim is only partially supported reads identically to a fully grounded one. The verifier knows; the UI has to show, sentence by sentence.
- Conflict between rules is the steady state. Regulated rules have carve-outs everywhere. A “conflict” refusal that dumps both paragraphs on the user is correct but unhelpful. Resolution is product design — walking the user through the disambiguation — not retrieval.
- Refusal taxonomies are operational, not user-shaped. Real users ask life-event questions that span multiple manuals (“I’m getting divorced and inheriting £200k…”); the system’s refusal categories are categories of the corpus. Bridging the two is product work with no generic answer.
- Multi-turn refinement is essential and absent from most products. Single-shot retrieval discards verified citations on every follow-up. Real policy questions cascade.
Most of the implementation transfers; a small bottom layer does not. The pipeline shape — chunk on structured headings, hybrid retrieval, graph expansion along document cross-references, full-page rollup, recall-greedy selection, claim-by-claim verification, typed refusals — works for any regulated corpus with structured documents and author-supplied references. That covers most legal text, most academic literature, most regulatory manuals.
What is genuinely HMRC-specific is narrow: the cross-reference extractor (regex tuned to “see EIM01010”), the refusal taxonomy (calibrated to UK income tax categories), and the staleness oracle (depends on HMRC’s last updated metadata). Porting the system to a new domain means rewriting those three components, not the architecture above them.
The graph traversal and the structure-aware retrieval changes turn one set of failures into successes. They do not turn the system into a safe consumer-facing product. That second jump is product work, not engineering — per-claim confidence surfacing, disambiguation flows for conflicts, life-event-shaped routing across corpora, an active staleness oracle, multi-turn state. The eval cannot grade what the UI does not yet expose.
Appendix: the 50-question eval, with verdicts
I authored 50 questions across the in-scope domain plus 10 deliberately designed to refuse. For every in-scope answer, every cited claim was scored by Claude (acting as second-opinion judge, separate from the system’s own verifier) on two binary axes: factual correctness against UK tax law, and groundedness against the cited HMRC paragraph. Across the 38 in-scope answers, 189 claims were scored: 189 / 189 correct (100%) and 167 / 189 grounded (88%). The system’s own claim verifier produces an analogous supported / total faithfulness fraction; its mean across the same 38 questions is 0.81 and it agrees with Claude on roughly 88% of claims.
The aggregate table gives the per-question counts. The per-question detail below lists every claim with its citation, its two binary verdicts, and a one-line note for borderline cases.
Aggregate table
| # | Question | Outcome | Faithfulness | Claims | Correct | Grounded |
|---|---|---|---|---|---|---|
| 1 | Personal allowance and taper | answered | 1.00 | 3 | 3/3 (100%) | 3/3 (100%) |
| 2 | Basic rate of income tax | answered | 0.75 | 1 | 1/1 (100%) | 1/1 (100%) |
| 3 | Additional rate threshold | answered | 0.50 | 1 | 1/1 (100%) | 0/1 (0%) |
| 4 | Company car BIK | answered | 0.93 | 5 | 5/5 (100%) | 5/5 (100%) |
| 5 | Company van benefit | answered | 0.75 | 6 | 6/6 (100%) | 5/6 (83%) |
| 6 | Fuel benefit | answered | 0.92 | 5 | 5/5 (100%) | 4/5 (80%) |
| 7 | Beneficial loan | answered | 0.75 | 6 | 6/6 (100%) | 6/6 (100%) |
| 8 | Accommodation as a benefit | answered | 0.70 | 6 | 6/6 (100%) | 5/6 (83%) |
| 9 | Vouchers and credit tokens | answered | 0.58 | 6 | 6/6 (100%) | 4/6 (67%) |
| 10 | Scholarships to employee’s child | answered | 0.83 | 6 | 6/6 (100%) | 5/6 (83%) |
| 11 | Temporary workplace definition | answered | 0.80 | 6 | 6/6 (100%) | 5/6 (83%) |
| 12 | The 24-month rule | answered | 0.92 | 6 | 6/6 (100%) | 6/6 (100%) |
| 13 | AMAP mileage rates | answered | 0.62 | 1 | 1/1 (100%) | 1/1 (100%) |
| 14 | Ordinary commuting | answered | 1.00 | 1 | 1/1 (100%) | 1/1 (100%) |
| 15 | Pension income under PAYE | answered | 0.92 | 6 | 6/6 (100%) | 5/6 (83%) |
| 16 | Termination payments and £30k | answered | 0.58 | 6 | 6/6 (100%) | 4/6 (67%) |
| 17 | Social security benefits (JSA) | answered | 1.00 | 5 | 5/5 (100%) | 5/5 (100%) |
| 18 | Salary sacrifice and OpRA | answered | 0.75 | 6 | 6/6 (100%) | 6/6 (100%) |
| 19 | Relocation £8,000 exemption | answered | 0.90 | 5 | 5/5 (100%) | 5/5 (100%) |
| 20 | Seafarers’ earnings deduction | answered | 0.75 | 6 | 6/6 (100%) | 5/6 (83%) |
| 21 | Corporation tax rate | refused (out of scope) | n/a | n/a | n/a | n/a |
| 22 | Capital gains tax | refused (out of scope) | n/a | n/a | n/a | n/a |
| 23 | VAT | refused (out of scope) | n/a | n/a | n/a | n/a |
| 24 | Property income | refused (out of scope) | n/a | n/a | n/a | n/a |
| 25 | Scottish income tax bands | refused (out of scope) | n/a | n/a | n/a | n/a |
| 26 | Personal advice (incorporation) | refused (out of scope) | n/a | n/a | n/a | n/a |
| 27 | Mobile phone benefit | answered | 0.80 | 5 | 5/5 (100%) | 5/5 (100%) |
| 28 | Electric company car | answered | 0.75 | 5 | 5/5 (100%) | 4/5 (80%) |
| 29 | Private fuel charge | answered | 0.83 | 5 | 5/5 (100%) | 5/5 (100%) |
| 30 | Workplace meals | answered | 0.83 | 6 | 6/6 (100%) | 4/6 (67%) |
| 31 | Training as a benefit | answered | 0.92 | 6 | 6/6 (100%) | 6/6 (100%) |
| 32 | Working-from-home allowance | answered | 1.00 | 5 | 5/5 (100%) | 5/5 (100%) |
| 33 | Permanent workplace | answered | 0.70 | 5 | 5/5 (100%) | 4/5 (80%) |
| 34 | 40% threshold + 24-month | answered | 0.90 | 5 | 5/5 (100%) | 5/5 (100%) |
| 35 | Travel between two workplaces | answered | 0.90 | 5 | 5/5 (100%) | 5/5 (100%) |
| 36 | Fixed-term appointment travel | answered | 0.50 | 6 | 6/6 (100%) | 5/6 (83%) |
| 37 | Payments in lieu of notice | answered | 0.80 | 4 | 4/4 (100%) | 3/4 (75%) |
| 38 | Statutory redundancy | conflict | 0.75 | n/a | n/a | n/a |
| 39 | Termination legal fees | answered | 0.92 | 6 | 6/6 (100%) | 6/6 (100%) |
| 40 | OpRA exclusions | answered | 1.00 | 6 | 6/6 (100%) | 3/6 (50%) |
| 41 | Employer pension contributions | answered | 0.92 | 6 | 6/6 (100%) | 6/6 (100%) |
| 42 | Professional subscriptions | answered | 0.57 | 5 | 5/5 (100%) | 5/5 (100%) |
| 43 | Restrictive covenants | answered | 0.80 | 5 | 5/5 (100%) | 5/5 (100%) |
| 44 | Apprentice scholarships | refused (low coverage) | n/a | n/a | n/a | n/a |
| 45 | PAYE on weekly pay | answered | 0.86 | 6 | 6/6 (100%) | 6/6 (100%) |
| 46 | Post-employment payments | answered | 0.70 | 5 | 5/5 (100%) | 4/5 (80%) |
| 47 | Stamp Duty Land Tax | refused (out of scope) | n/a | n/a | n/a | n/a |
| 48 | Inheritance tax allowances | refused (out of scope) | n/a | n/a | n/a | n/a |
| 49 | ”Tax” (too short) | refused (malformed) | n/a | n/a | n/a | n/a |
| 50 | Point-in-time numeric query | refused (out of scope) | n/a | n/a | n/a | n/a |
Show per-question detail (37 in-scope questions, 188 claims)
Per-question detail (in-scope)
Q1. Personal allowance and taper
| Field | Content |
|---|---|
| Question | How does the personal allowance work and when does it taper? |
| System answer | Standard PA is £12,570; tapers £1 for every £2 above £100,000; reaches zero at £125,140; Blind Person’s Allowance can be added on top. |
| Citations | RATES-PERSONAL-ALLOWANCE, RATES-INCOME-OVER-100K, RATES-INCOME-TAX-RATES, EIM75750 |
| System faithfulness | 1.00 |
| Claude’s own answer | The standard Personal Allowance for 2025/26 is £12,570 (frozen until 2027/28). It tapers by £1 for every £2 of adjusted net income above £100,000, reaching zero at £125,140. Blind Person’s Allowance is added on top of the standard PA where claimed. |
| Claim-level result | correctness 3/3 (100%), groundedness 3/3 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | The standard Personal Allowance is £12,570, which is the amount of income you don’t pay tax on | RATES-INCOME-TAX-RATES | ✓ | ✓ |
| 2 | If your adjusted net income exceeds £100,000, your allowance reduces by £1 for every £2 earned above that threshold | RATES-INCOME-TAX-RATES | ✓ | ✓ |
| 3 | This tapering means your Personal Allowance reaches zero once your income hits £125,140 or more | RATES-INCOME-TAX-RATES | ✓ | ✓ |
Per-question result: correctness 3/3 (100%), groundedness 3/3 (100%).
Q2. Basic rate of income tax
| Field | Content |
|---|---|
| Question | What is the basic rate of income tax for the current tax year? |
| System answer | The basic rate is 20% on taxable income between £12,571 and £50,270. |
| Citations | RATES-INCOME-TAX-RATES, RATES-PERSONAL-ALLOWANCE, RATES-INCOME-OVER-100K, EIM75750, EIM68208 |
| System faithfulness | 1.00 |
| Claude’s own answer | For 2025/26 the basic rate is 20% on taxable income from £12,571 up to £50,270 (England, Wales, Northern Ireland). |
| Claim-level result | correctness 1/1 (100%), groundedness 1/1 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | The basic rate of Income Tax is 20% on income between £12,571 and £50,270 | RATES-PERSONAL-ALLOWANCE | ✓ | ✓ |
Per-question result: correctness 1/1 (100%), groundedness 1/1 (100%).
Q3. Additional rate threshold
| Field | Content |
|---|---|
| Question | At what income does the additional rate of income tax start? |
| System answer | Starts on taxable income over £125,140. |
| Citations | EIM75750, EIM40109, RATES-INCOME-OVER-100K, RATES-PERSONAL-ALLOWANCE, RATES-INCOME-TAX-RATES |
| System faithfulness | 0.50 |
| Claude’s own answer | The additional rate (45%) starts at £125,140 of taxable income for 2025/26. The threshold was reduced from £150,000 in April 2023. |
| Claim-level result | correctness 1/1 (100%), groundedness 0/1 (0%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | The additional rate of income tax starts on taxable income over £125,140 cited paragraph is about the £100K taper, not the £125,140 additional-rate threshold | RATES-INCOME-OVER-100K | ✓ | ✗ |
Per-question result: correctness 1/1 (100%), groundedness 0/1 (0%).
Q4. Company car BIK
| Field | Content |
|---|---|
| Question | How is a company car taxed as a benefit in kind? |
| System answer | List price multiplied by an appropriate percentage tied to CO₂ emissions; payments for private use reduce the taxable amount; salary sacrifice does not reduce the BIK; rules apply even under employee discount schemes; electric-car charging at work is not a separate fuel benefit. |
| Citations | EIM23900, EIM23021, EIM24105, EIM25261, EIM23570 |
| System faithfulness | 0.92 |
| Claude’s own answer | A company car is taxed on (list price including taxes and accessories, less capital contributions up to £5,000) × an appropriate percentage tied to CO₂ emissions and zero-emission range. Payments specifically for private use reduce the BIK pound-for-pound. Salary-sacrifice cars after April 2017 fall under OpRA: the BIK is the higher of the cash forgone or the standard charge. |
| Claim-level result | correctness 5/5 (100%), groundedness 5/5 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | A company car is taxed as a benefit-in-kind if it is made available to an employee by reason of their employment and can be used for private journeys | EIM23021 | ✓ | ✓ |
| 2 | The taxable value is based on the car’s list price (including delivery, VAT, and taxes) multiplied by an appropriate percentage linked to its CO₂ emissions | EIM24105 | ✓ | ✓ |
| 3 | If the employee makes a payment specifically for private use, this amount reduces the taxable benefit | EIM25261 | ✓ | ✓ |
| 4 | Salary sacrifice arrangements do not reduce the benefit value, as the sacrificed salary is not treated as a payment for private use | EIM25261 | ✓ | ✓ |
| 5 | The rules apply regardless of any special terms or discounts unless the employer is a car hire business charging employees the same rate as the public | EIM23021 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Q5. Company van benefit
| Field | Content |
|---|---|
| Question | How is a company van taxed? |
| System answer | Van benefit charge under section 154 ITEPA 2003 if available by reason of employment; reduced by employee payments for private use; separate van fuel benefit charge unless restricted-private-use applies; specific 2024/25 fuel-charge figure cited; no fuel charge for zero-emission vans. |
| Citations | EIM31255, EIM22845, EIM22910, EIM22915, EIM31400 |
| System faithfulness | 0.75 |
| Claude’s own answer | A van available for private use beyond commuting attracts a fixed annual van benefit charge (£3,960 for 2025/26 standard form), with a separate van fuel benefit charge (£757 for 2024/25) if private fuel is provided. Zero-emission vans are exempt from both. |
| Claim-level result | correctness 6/6 (100%), groundedness 5/6 (83%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | A company van attracts a benefit charge under section 154 ITEPA 2003 if it’s made available to an employee by reason of their employment | EIM31255 | ✓ | ✓ |
| 2 | The charge applies unless the van is only available for business travel and not private use | EIM31255 | ✓ | ✓ |
| 3 | If the van is pooled under sections 167 and 168 ITEPA 2003, it may avoid the benefit charge | EIM31255 | ✓ | ✓ |
| 4 | Private use payments by the employee can reduce the taxable value, but only if made in the same tax year (or by 6 July following it from 2017/18) specific 2024/25 figure correct; cited paragraph supports the framework, not the year-specific figure | EIM22845 | ✓ | ✗ |
| 5 | The fuel benefit charge for vans is a fixed amount (e.g., £757 for 2024/25) unless the van is zero-emission or meets restricted private use rules | EIM22915 | ✓ | ✓ |
| 6 | The fuel charge doesn’t apply if the van can’t emit CO₂ when driven | EIM22915 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 5/6 (83%).
Q6. Fuel benefit
| Field | Content |
|---|---|
| Question | Is fuel provided by an employer for private use taxable? |
| System answer | Private fuel taxable unless full repayment by 6 July after the tax year end; charge is not reduced for partial repayment; advisory fuel rates do not apply to vans. |
| Citations | EIM25650, EIM22945, EIM25510, EIM23615, EIM25525 |
| System faithfulness | 0.60 |
| Claude’s own answer | Yes. A separate fuel benefit charge applies whenever an employer provides any fuel for private use in a company car, calculated as a fixed multiplier (£27,800 for 2024/25) × the car’s appropriate percentage. Avoidable only by full repayment of the cost of all private fuel by 6 July following the tax year. |
| Claim-level result | correctness 5/5 (100%), groundedness 4/5 (80%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Fuel provided by an employer for private use in a car is taxable unless the employee repays the full cost of private fuel by 6 July after the tax year | EIM25510 | ✓ | ✓ |
| 2 | The same rule applies to vans, where the fuel benefit charge is avoided only if the employee makes good all private fuel costs by the same deadline | EIM22945 | ✓ | ✓ |
| 3 | The charge applies even if the car’s benefit charge is reduced to nil due to employee contributions | EIM25510 | ✓ | ✓ |
| 4 | For emergency vehicles, private fuel is disregarded if the employee repays the cost by 6 July or meets specific exemption conditions advisory-fuel-rates-not-vans claim is correct in substance; cited paragraph is about car fuel | EIM23615 | ✓ | ✗ |
| 5 | The taxable amount is not based on actual fuel costs but is a fixed charge unless all private fuel is repaid | EIM25525 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 4/5 (80%).
Q7. Beneficial loan
| Field | Content |
|---|---|
| Question | How is an interest-free or low-interest loan from an employer taxed? |
| System answer | Taxable as a benefit when arranged or guaranteed by the employer; taxable amount is the gap between interest paid and HMRC’s official rate; £10,000 threshold below which no charge applies; OpRA-specific calculation for salary-sacrifice loans; loans for tax-relievable purposes are not taxable. |
| Citations | EIM21736, EIM44110, EIM26136, EIM26257, EIM26102 |
| System faithfulness | 1.00 |
| Claude’s own answer | Taxed on the difference between interest paid and notional interest at HMRC’s official rate. No charge applies if the aggregate of all such loans for the employee stays under £10,000 throughout the tax year. Loans for purposes that would qualify for tax relief on the interest (e.g., a partnership investment) are not taxable. |
| Claim-level result | correctness 6/6 (100%), groundedness 6/6 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | An interest-free or low-interest loan from an employer is taxed as a benefit in kind if the loan is employment-related and no interest (or less than the official rate) is paid | EIM26102 | ✓ | ✓ |
| 2 | The taxable amount is the difference between the interest paid (if any) and the interest calculated at the official rate set by HMRC | EIM26102 | ✓ | ✓ |
| 3 | No tax charge applies if the total outstanding loan(s) from the employer does not exceed £10,000 (or £5,000 before 6 April 2014) | EIM21736 | ✓ | ✓ |
| 4 | If the loan is arranged, guaranteed, or facilitated by the employer—even if provided by a third party—it remains taxable unless the employer has no influence over selection | EIM21736 | ✓ | ✓ |
| 5 | Loans where the interest would fully qualify for tax relief (e.g., for business or property income purposes) are not taxable, even if interest-free | EIM26136 | ✓ | ✓ |
| 6 | From 6 April 2017, if the loan is part of an optional remuneration arrangement (e.g., salary sacrifice), the taxable amount is the greater of the salary foregone or the interest saved | EIM44110 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 6/6 (100%).
Q8. Accommodation as a benefit
| Field | Content |
|---|---|
| Question | What is the tax treatment of accommodation provided by an employer? |
| System answer | Taxable unless within ITEPA Part 3 Chapter 5 exemptions; default presumption is provision by reason of employment; specific rules for retirement and public-house managers; expense caps; from 6 April 2026 some employer reimbursements may be exempt. |
| Citations | EIM21619, EIM68450, EIM11407, EIM15022, EIM11408 |
| System faithfulness | 1.00 |
| Claude’s own answer | Taxable unless one of three exemptions applies: necessary for proper performance of duties, customarily provided for better performance in a listed employment, or provided for security reasons. Cash equivalent is the rental value (or rent paid), with an additional charge if the property cost more than £75,000. |
| Claim-level result | correctness 6/6 (100%), groundedness 5/6 (83%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | If an employer provides living accommodation, it is automatically treated as provided “by reason of the employment” unless the employer is an individual who proves it’s part of normal domestic or family relationships | EIM11407 | ✓ | ✓ |
| 2 | The tax rules in Part 3 Chapter 5 ITEPA 2003 apply to this accommodation, unless it’s provided by a local authority under specific exemptions | EIM11407 | ✓ | ✓ |
| 3 | If the accommodation is exempt from tax (e.g., for a live-in pub manager), connected expenses like heating or cleaning are taxed as a benefit, but capped at 10% of the employee’s net earnings | EIM68450 | ✓ | ✓ |
| 4 | For expenses reimbursed by the employer from 6 April 2026, an exemption applies if the employer intends the accommodation to be used mainly for work and private use is insignificant specific £1,766 figure for 2025/26 is correct but cited paragraph supports the framework, not the precise figure | EIM21619 | ✓ | ✗ |
| 5 | If the accommodation is provided off the employer’s premises, the exemption only applies if its sole purpose is to enable work and it’s not an excluded benefit | EIM21619 | ✓ | ✓ |
| 6 | Where the employer provides the accommodation directly, different rules under Section 316 ITEPA 2003 apply instead of Section 316ZA | EIM21619 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 5/6 (83%).
Q9. Vouchers and credit tokens
| Field | Content |
|---|---|
| Question | How are vouchers and credit tokens given by an employer taxed? |
| System answer | Cash and non-cash vouchers taxed in the year received; credit-tokens taxed in the year used; cost-of-provision basis less employee repayments; exceptions for allowable expenses. |
| Citations | EIM11850, EIM11840, EIM16020, EIM11845, EIM16030 |
| System faithfulness | 0.50 |
| Claude’s own answer | Cash vouchers are taxed on the value they convert to, in the year received. Non-cash vouchers and credit tokens are taxed on the cost to the employer, less any employee repayment. Trivial benefits exemption (≤ £50, not cash, not contractual) covers small voucher gifts. |
| Claim-level result | correctness 6/6 (100%), groundedness 4/6 (67%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Vouchers and credit-tokens provided by an employer because of employment are taxed as earnings under Part 3 Chapter 4 ITEPA 2003 | EIM11850 | ✓ | ✓ |
| 2 | Cash and non-cash vouchers are taxed in the year they are received by the employee synthesis across two cited paragraphs is more confident than either alone | EIM11840 | ✓ | ✗ |
| 3 | Credit-tokens are taxed in the year they are used by the employee credit-tokens-taxed-when-used: synthesis claim across multiple paragraphs | EIM11850 | ✓ | ✗ |
| 4 | The taxable amount for cash vouchers is the cash value they can be exchanged for | EIM11840 | ✓ | ✓ |
| 5 | For non-cash vouchers and credit-tokens, the taxable amount is the cost of what’s obtained minus any amount the employee repays | EIM11845 | ✓ | ✓ |
| 6 | [EIM11850]. Exceptions apply if the voucher or token is used for allowable expenses that wouldn’t otherwise be taxable | EIM11840 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 4/6 (67%).
Q10. Scholarships to an employee’s child
| Field | Content |
|---|---|
| Question | Are scholarships provided by an employer to an employee’s child taxable? |
| System answer | Taxable if given by reason of employment; covers schemes funded or arranged via connected persons; cost-of-provision taxable amount; fortuitous award exception based on a 25% threshold of scheme payments; child must be in full-time education for the exception. |
| Citations | EIM30002, EIM30004, EIM30000, EIM30008, EIM30001 |
| System faithfulness | 0.80 |
| Claude’s own answer | Taxable on the parent-employee unless the fortuitous award exception applies: the scholarship is genuinely awarded on academic merit, less than 25% of the awarding scheme’s payments go to children of employees, and the scheme is genuinely open to non-employees on the same terms. |
| Claim-level result | correctness 6/6 (100%), groundedness 5/6 (83%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | A scholarship provided by an employer to an employee’s child is taxable if it is given by reason of the employee’s employment | EIM30001 | ✓ | ✓ |
| 2 | This includes scholarships funded by the employer, arranged by the employer, or provided through a connected person (like an educational trust) | EIM30002 | ✓ | ✓ |
| 3 | The taxable amount is the cost of providing the scholarship | EIM30001 | ✓ | ✓ |
| 4 | An exception applies if the award is fortuitous—meaning the link to employment is coincidental and no more than 25% of the fund’s payments are employment-related | EIM30004 | ✓ | ✓ |
| 5 | The rules cover all employees except those in lower-paid roles full-time-education condition is correct but cited paragraph emphasises the fortuitous test | EIM30001 | ✓ | ✗ |
| 6 | ”Family” includes children, so these rules apply to them | EIM30001 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 5/6 (83%).
Q11. Temporary workplace definition
| Field | Content |
|---|---|
| Question | When are travel expenses to a workplace deductible, and what counts as a temporary workplace? |
| System answer | Travel to a temporary workplace is deductible; “temporary” means attendance for limited duration or temporary purpose; the 24-month + 40%-of-time rule converts to permanent; expectation at the outset matters. |
| Citations | EIM32065, EIM32080, EIM32082, EIM32083, EIM32075 |
| System faithfulness | 0.67 |
| Claude’s own answer | Travel between home and a permanent workplace is ordinary commuting and not deductible. Travel to a temporary workplace is deductible. A workplace is temporary if attendance is for a task of limited duration or for a temporary purpose, and the 24-month-plus-40% rule does not convert it to permanent. |
| Claim-level result | correctness 6/6 (100%), groundedness 5/6 (83%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Travel expenses to a workplace are deductible only if the workplace is temporary—not permanent | EIM32065 | ✓ | ✓ |
| 2 | A workplace counts as temporary if the employee attends only to perform a task of limited duration or for a temporary purpose | EIM32075 | ✓ | ✓ |
| 3 | However, even if a workplace meets this definition, it stops being temporary—and becomes permanent—if the employee works there (or is likely to work there) for more than 24 months and spends 40% or more of their working time at that place | EIM32080 | ✓ | ✓ |
| 4 | If the workplace is permanent, travel costs are not deductible as they count as ordinary commuting expectations rule is correct; cited paragraph supports it with interpretation | EIM32065 | ✓ | ✗ |
| 5 | Expectations at the start of the assignment determine the rule’s application, even if the actual duration turns out shorter | EIM32083 | ✓ | ✓ |
| 6 | Breaks in attendance may affect the calculation, but the core test remains time spent and likelihood of exceeding 24 months | EIM32080 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 5/6 (83%).
Q12. The 24-month rule
| Field | Content |
|---|---|
| Question | What is the 24-month rule for temporary workplaces? |
| System answer | Workplace stops being temporary if attendance lasts or is likely to last more than 24 months; 40% of working time threshold; the workplace must first qualify as temporary; expectation drives the test; breaks may not reset. |
| Citations | EIM32080, EIM31802, EIM32105, EIM32075, EIM32089 |
| System faithfulness | 0.92 |
| Claude’s own answer | A workplace stops being temporary if attendance lasts or is expected to last more than 24 months and the employee spends 40% or more of working time there during that period. Once the expectation crosses 24 months, the workplace becomes permanent prospectively from that date, even if the actual stay is shorter. |
| Claim-level result | correctness 6/6 (100%), groundedness 6/6 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | A workplace stops being temporary if an employee attends it for a period of continuous work that lasts, or is likely to last, more than 24 months | EIM32080 | ✓ | ✓ |
| 2 | This rule applies when the employee spends 40% or more of their working time at that workplace over that period | EIM32080 | ✓ | ✓ |
| 3 | If the 24-month rule applies, the workplace becomes a permanent workplace, and travel costs between home and work are treated as ordinary commuting (not deductible) | EIM32080 | ✓ | ✓ |
| 4 | The rule only affects workplaces that would otherwise qualify as temporary (e.g., for limited duration or temporary purpose) | EIM32075 | ✓ | ✓ |
| 5 | Breaks in attendance do not always reset the 24-month period—continuous work can still apply even with interruptions | EIM32105 | ✓ | ✓ |
| 6 | If an employee moves between nearby workplaces with no significant change to their journey, the time at all those workplaces may be combined for the 24-month test | EIM32089 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 6/6 (100%).
Q13. AMAP mileage rates
| Field | Content |
|---|---|
| Question | What are the approved mileage allowance rates for using my own car for business? |
| System answer | 45p per mile for the first 10,000 miles, 25p over 10,000. |
| Citations | EIM31230, EIM31360, EIM31240, EIM31355, EIM31200 |
| System faithfulness | 0.80 |
| Claude’s own answer | HMRC-approved mileage rates for using one’s own car: 45p per mile for the first 10,000 business miles in a tax year, 25p per mile thereafter. Motorbikes 24p flat; bicycles 20p flat. Employer payments at or below these rates are tax-free; payments above are taxable on the excess. |
| Claim-level result | correctness 1/1 (100%), groundedness 1/1 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | The approved mileage allowance rates for using your own car for business are 45 pence per mile for the first 10,000 miles and 25 pence per mile for any miles over 10,000 in a tax year | EIM31240 | ✓ | ✓ |
Per-question result: correctness 1/1 (100%), groundedness 1/1 (100%).
Q14. Ordinary commuting
| Field | Content |
|---|---|
| Question | Can I claim travel expenses for ordinary commuting? |
| System answer | No deduction is due for ordinary commuting. |
| Citations | EIM32310, EIM32304, EIM31802, EIM32305, EIM32055 |
| System faithfulness | 1.00 |
| Claude’s own answer | No. Travel between home and a permanent workplace is ordinary commuting and not deductible from employment income. |
| Claim-level result | correctness 1/1 (100%), groundedness 1/1 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | No deduction is due for the cost of ordinary commuting | EIM32055 | ✓ | ✓ |
Per-question result: correctness 1/1 (100%), groundedness 1/1 (100%).
Q15. Pension income under PAYE
| Field | Content |
|---|---|
| Question | How is pension income taxed under PAYE? |
| System answer | Pension income from registered schemes taxed under PAYE with the payer deducting tax; chargeable amount is what accrues in the tax year; non-residents may also be subject to PAYE; specific rules for Crown pensions and voluntary annual payments; temporary-non-residence carve-out. |
| Citations | EIM75400, EIM75200, EIM75010, EIM75800, EIM75750 |
| System faithfulness | 0.83 |
| Claude’s own answer | Pension income from registered pension schemes is taxed under PAYE: the scheme administrator deducts tax using a code from HMRC, exactly like an employer would. The 25% tax-free lump sum on crystallisation is outside PAYE. |
| Claim-level result | correctness 6/6 (100%), groundedness 5/6 (83%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Pension income from registered pension schemes is taxed under PAYE before payment to the recipient | EIM75400 | ✓ | ✓ |
| 2 | The payer must apply PAYE rules to all pensions from registered schemes | EIM75400 | ✓ | ✓ |
| 3 | PAYE also applies to “PAYE pension income,” which includes pensions taxable under section 569 ITEPA 2003 | EIM75200 | ✓ | ✓ |
| 4 | The taxable amount is the pension accruing in the tax year, not necessarily the amount received | EIM75010 | ✓ | ✓ |
| 5 | Voluntary annual payments paid by a UK-based payer are also subject to PAYE | EIM75800 | ✓ | ✓ |
| 6 | PAYE does not apply to pensions taxed under the temporary non-residence rule temporary non-residence rule correct; cited paragraph reference is approximate | EIM75200 | ✓ | ✗ |
Per-question result: correctness 6/6 (100%), groundedness 5/6 (83%).
Q16. Termination payments and the £30,000 threshold
| Field | Content |
|---|---|
| Question | How are termination payments taxed, and what is the £30,000 threshold? |
| System answer | Split into post-employment notice pay and other awards under section 403 ITEPA 2003; £30,000 threshold applies to the latter; statutory redundancy counts toward it; payments aggregated across associated employers; threshold applied to cash first, then non-cash benefits. |
| Citations | EIM13505, EIM13530, EIM13520, EIM13760, EIM13550 |
| System faithfulness | 0.50 |
| Claude’s own answer | Termination payments split into two parts since April 2018: post-employment notice pay (PENP), taxed as earnings under section 62; and the residual termination award under section 401, with the first £30,000 tax-free. Statutory redundancy and approved contractual payments fall under the section-401 limb but count toward the £30,000. |
| Claim-level result | correctness 6/6 (100%), groundedness 4/6 (67%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Termination payments are split into two parts: post-employment notice pay (PENP) and other termination awards under section 403 ITEPA 2003 | EIM13505 | ✓ | ✓ |
| 2 | Only the part exceeding £30,000 is taxed as employment income, but this threshold does not apply to PENP | EIM13505 | ✓ | ✓ |
| 3 | Payments like statutory redundancy or approved contractual payments (up to the statutory equivalent) count toward the £30,000 threshold | EIM13760 | ✓ | ✓ |
| 4 | All relevant payments from the same employer or associated employers must be added together before applying the £30,000 limit | EIM13530 | ✓ | ✓ |
| 5 | The threshold is applied first to cash payments, then to non-cash benefits cash-first-then-non-cash ordering rule is correct; multi-paragraph synthesis | EIM13520 | ✓ | ✗ |
| 6 | Statutory redundancy payments are tax-exempt as earnings but still use part of the £30,000 threshold statutory-redundancy-usually-below-£30k claim is true; not directly cited | EIM13760 | ✓ | ✗ |
Per-question result: correctness 6/6 (100%), groundedness 4/6 (67%).
Q17. Social security benefits (JSA)
| Field | Content |
|---|---|
| Question | Are social security benefits like Jobseeker’s Allowance taxable? |
| System answer | Both contribution-based and income-based JSA taxable; income-based JSA replaced by Universal Credit (not taxable); New Style JSA still taxable; taxable amount is the lower of actual JSA or the taxable maximum. |
| Citations | EIM76222, EIM76220, EIM76225, EIM76000, EIM76101 |
| System faithfulness | 1.00 |
| Claude’s own answer | Some are; some are not. Taxable: state pension, contribution-based JSA, contribution-based ESA, carer’s allowance. Not taxable: Universal Credit, PIP, attendance allowance, child benefit (which is instead clawed back through self-assessment for higher-income claimants). |
| Claim-level result | correctness 5/5 (100%), groundedness 5/5 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Jobseeker’s Allowance (JSA) is taxable as social security income | EIM76222 | ✓ | ✓ |
| 2 | This applies to both contribution-based JSA and income-based JSA | EIM76222 | ✓ | ✓ |
| 3 | From 2013, income-based JSA is replaced by Universal Credit, which is not taxable | EIM76222 | ✓ | ✓ |
| 4 | Contribution-based JSA is now called New Style Jobseeker’s Allowance and remains taxable | EIM76222 | ✓ | ✓ |
| 5 | The taxable amount is the lower of the actual JSA received or the “taxable maximum” | EIM76222 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Q18. Salary sacrifice and OpRA
| Field | Content |
|---|---|
| Question | What is salary sacrifice and how does the optional remuneration regime affect it? |
| System answer | Contractual exchange of future cash for non-cash benefits; from 6 April 2017 most tax/NIC advantages removed under OpRA; taxable value is the higher of salary given up or BIK; some benefits remain exempt; transitional rules apply. |
| Citations | EIM42750, EIM42772, EIM42755, EIM42773, EIM42752 |
| System faithfulness | 0.75 |
| Claude’s own answer | Salary sacrifice is a contractual reduction in cash pay in exchange for a non-cash benefit. Since April 2017 (OpRA), most salary-sacrifice benefits are valued for tax at the higher of cash forgone or the standard BIK, removing most of the tax/NIC saving. Excluded benefits remain effective: pensions, ultra-low emission cars, employer-provided childcare (legacy schemes), workplace nurseries, cycle-to-work. |
| Claim-level result | correctness 6/6 (100%), groundedness 6/6 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | A salary sacrifice occurs when an employee gives up part of their future cash salary in exchange for a non-cash benefit, achieved by changing their employment contract | EIM42750 | ✓ | ✓ |
| 2 | For example, an employee might reduce their £40,000 salary to £34,800 in return for childcare vouchers | EIM42750 | ✓ | ✓ |
| 3 | From 6 April 2017, the tax and National Insurance advantages of most benefits provided through salary sacrifice (called optional remuneration arrangements) are largely removed | EIM42750 | ✓ | ✓ |
| 4 | The taxable value of the benefit is now usually the higher of the salary given up or the normal benefit-in-kind charge | EIM42750 | ✓ | ✓ |
| 5 | Some benefits, like workplace nurseries and pension contributions, remain exempt or partially exempt under transitional rules | EIM42750 | ✓ | ✓ |
| 6 | Detailed guidance on these changes starts at EIM44000 | EIM42750 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 6/6 (100%).
Q19. Relocation £8,000 exemption
| Field | Content |
|---|---|
| Question | What is the £8,000 exemption for relocation expenses? |
| System answer | Covers qualifying removal expenses on a residence change due to a job change; per-relocation cap with excess taxable; expenses must be incurred before the limitation day (5 April after the tax year of the new job start); HMRC may extend the deadline. |
| Citations | EIM03106, EIM03138, EIM03129, EIM03104, EIM03105 |
| System faithfulness | 0.93 |
| Claude’s own answer | Up to £8,000 of qualifying relocation expenses paid by an employer is exempt when the employee changes their main residence due to a job change, provided the move is reasonably necessary. Qualifying expenses include legal and conveyancing fees, moving costs, bridging-loan interest. The exemption is per relocation; excess is taxable. |
| Claim-level result | correctness 5/5 (100%), groundedness 5/5 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | The £8,000 exemption covers qualifying removal expenses and benefits for an employee who changes their main residence due to a new job, a change in job duties, or a change in workplace | EIM03104 | ✓ | ✓ |
| 2 | The exemption applies to costs listed under Section 272(1) ITEPA 2003 or bridging loan expenses under Section 284 ITEPA 2003 | EIM03104 | ✓ | ✓ |
| 3 | Any amount over £8,000 is taxable and must be reported on form P11D or P9D (for 2015/16 and earlier) | EIM03138 | ✓ | ✓ |
| 4 | The expenses must be incurred before the “limitation day”—the last day of the tax year after the employee starts the new job—unless HMRC extends this for reasons like a child’s exams or difficulty selling a home | EIM03104 | ✓ | ✓ |
| 5 | [EIM03105]. PAYE is not deducted from qualifying expenses, even if they exceed £8,000, but the excess is taxable | EIM03138 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Q20. Seafarers’ earnings deduction
| Field | Content |
|---|---|
| Question | What is the seafarers’ earnings deduction and who qualifies? |
| System answer | Reduces taxable earnings for seafarers meeting specific tests; eligible-period rule; from 6 April 2011 some non-resident EEA seafarers can claim for UK-water duties; non-EEA non-residents not entitled; covers general earnings only. |
| Citations | EIM33011, EIM33021, EIM33010, EIM33001, EIM33053 |
| System faithfulness | 0.88 |
| Claude’s own answer | The seafarers’ earnings deduction can reduce taxable employment income to zero for seafarers spending sufficient time outside UK waters. Eligibility requires an eligible period of at least 365 days where at least half the days are outside the UK and no single UK return exceeds 183 days. Available to UK residents and (since April 2011) some EEA-resident seafarers for UK-water duties. |
| Claim-level result | correctness 6/6 (100%), groundedness 5/6 (83%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | The Seafarers’ Earnings Deduction (SED) is a tax deduction available on earnings from seafaring employment if all these conditions are met in a tax year: the earnings are taxable under UK rules, the duties are performed wholly or partly outside the UK, and at least some duties occur during an eligible period | EIM33001 | ✓ | ✓ |
| 2 | UK-resident seafarers qualify if they meet the above conditions, while non-UK residents only qualify from 2011/12 onwards if they are tax residents in an EU or EEA state (excluding the UK) and perform duties in UK waters | EIM33010 | ✓ | ✓ |
| 3 | Non-EEA/EU resident seafarers do not qualify for the deduction | EIM33010 | ✓ | ✓ |
| 4 | The deduction applies only to general earnings (e.g., salary, bonuses) and not to share option gains or third-party salvage awards | EIM33001 | ✓ | ✓ |
| 5 | For years before 2011/12, non-UK resident EU/EEA seafarers can now claim retrospectively if they meet the same time limits as UK residents | EIM33011 | ✓ | ✓ |
| 6 | The deduction is calculated based on earnings attributable to eligible periods, after accounting for pensions or allowable expenses pre-2011/12 retrospective claims rule correct but cited paragraph is approximate | EIM33053 | ✓ | ✗ |
Per-question result: correctness 6/6 (100%), groundedness 5/6 (83%).
Q27. Mobile phone benefit
| Field | Content |
|---|---|
| Question | Are mobile phones provided by an employer taxable as a benefit? |
| System answer | One mobile phone for private use is exempt; covers handset, line rental, private calls; second phone for private use is taxable; exemption extends to phones for business use only and to smartphones whose primary function is voice. |
| Citations | EIM32945, EIM21779, EIM21780, EIM21778, EIM21781 |
| System faithfulness | 0.80 |
| Claude’s own answer | One mobile phone provided by an employer for an employee’s personal use is exempt under section 319 ITEPA. The exemption covers the handset, line rental, and call costs. Any second mobile phone provided alongside is fully taxable. Smartphones qualify if their primary function is voice. |
| Claim-level result | correctness 5/5 (100%), groundedness 5/5 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | The provision of one mobile phone by an employer to an employee for private use is not taxable as a benefit | EIM21780 | ✓ | ✓ |
| 2 | This exemption covers the phone itself, line rental, and the cost of private calls paid by the employer | EIM21780 | ✓ | ✓ |
| 3 | If more than one phone is provided for mixed business and private use, only one remains exempt—the other is taxable as a benefit | EIM21779 | ✓ | ✓ |
| 4 | Phones provided solely for business use (with insignificant private use) are also exempt, even if multiple phones are provided for business needs | EIM21779 | ✓ | ✓ |
| 5 | The exemption applies to smartphones and SIM cards if their primary purpose is transmitting spoken messages | EIM21779 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Q28. Electric company car
| Field | Content |
|---|---|
| Question | Is a low-emission electric company car taxed differently from a petrol car? |
| System answer | Lower appropriate percentage based on CO₂ emissions and zero-emission range; specific bands by zero-emission mileage; petrol cars typically taxed higher; reimbursement of home/public charging not separately taxable; charging at work is not an extra benefit. |
| Citations | EIM24611, EIM23900, EIM23765, EIM24710, EIM25060 |
| System faithfulness | 0.67 |
| Claude’s own answer | Yes, materially. A pure-electric (0g/km) company car carries an appropriate percentage of 2-3% (2025/26), versus 25-37% for petrol or diesel cars depending on emissions. Plug-in hybrids fall in between based on electric-only range. Charging at work or employer-reimbursed charging do not create a separate fuel benefit. |
| Claim-level result | correctness 5/5 (100%), groundedness 4/5 (80%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | A low-emission electric company car is taxed using a lower appropriate percentage than most petrol cars, based on its CO₂ emissions (1–50g/km) and electric range | EIM24611 | ✓ | ✓ |
| 2 | No separate tax charge applies if an employer reimburses electricity costs for charging the company car at home or publicly specific band ranges correct but cited paragraph gives the framework, not the bands | EIM23900 | ✓ | ✗ |
| 3 | Charging the car at work also creates no additional taxable benefit, as electricity is excluded from the Fuel Benefit Charge | EIM23900 | ✓ | ✓ |
| 4 | Petrol cars typically have higher CO₂ emissions, leading to a higher appropriate percentage and thus a greater taxable benefit | EIM24611 | ✓ | ✓ |
| 5 | The taxable value for petrol cars is calculated using their actual CO₂ figure, while qualifying plug-in hybrids may use a nominal 1g/km figure under temporary rules from 2025 | EIM24710 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 4/5 (80%).
Q29. Private fuel charge
| Field | Content |
|---|---|
| Question | How is private fuel use in a company car charged? |
| System answer | Applies if fuel is provided for a car that already attracts a car-benefit charge; separate from the car benefit; applies even if car benefit is reduced to nil; multiplier-based calculation; charge avoidable by full repayment of private fuel by 6 July after year end. |
| Citations | EIM25650, EIM25261, EIM22910, EIM23900, EIM25510 |
| System faithfulness | 0.86 |
| Claude’s own answer | A separate fuel benefit charge applies on top of the car BIK if the employer provides any fuel for private use. The charge is a fixed multiplier (£27,800 for 2024/25) × the car’s appropriate percentage, applied in full regardless of how much private fuel is actually used. Avoidable only by full repayment of the cost of private fuel by 6 July following the tax year. |
| Claim-level result | correctness 5/5 (100%), groundedness 5/5 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | A car fuel benefit charge applies if fuel is provided for a car that already attracts a car benefit charge | EIM25510 | ✓ | ✓ |
| 2 | The charge is separate from the car benefit charge and applies even if the car benefit is reduced to nil by private use payments | EIM25510 | ✓ | ✓ |
| 3 | The charge does not apply if no fuel is provided at all or if the car does not attract a car benefit charge | EIM25510 | ✓ | ✓ |
| 4 | The cash equivalent of the fuel benefit is calculated using a set multiplier (e.g., £21,700 in 2014-15) multiplied by the car’s appropriate percentage | EIM25261 | ✓ | ✓ |
| 5 | The fuel benefit charge can be avoided if the employee repays the full cost of private fuel by 6 July after the tax year ends | EIM25650 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Q30. Workplace meals
| Field | Content |
|---|---|
| Question | Are employer-provided meals at the workplace taxable? |
| System answer | Not taxable if on a reasonable scale, available to all employees, and not provided through salary sacrifice; covers free, subsidised, or voucher provision; salary-sacrifice disqualification from 6 April 2011; cash allowances always taxable; covers third-party canteens for off-site work. |
| Citations | EIM21671, EIM01530, EIM21672, EIM21676, EIM21677 |
| System faithfulness | 0.75 |
| Claude’s own answer | Free or subsidised meals at work are exempt if available to all employees on similar terms (or to all at the relevant location), and provided in a canteen or on the employer’s premises. Salary sacrifice for meals breaks the exemption (since 2011). Cash meal allowances are always taxable as earnings. |
| Claim-level result | correctness 6/6 (100%), groundedness 4/6 (67%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Employer-provided meals at the workplace are not taxable if they meet all these conditions: the meal is on a reasonable scale, available to all employees (or all at a specific location), and not part of a salary sacrifice or flexible remuneration arrangement | EIM21671 | ✓ | ✓ |
| 2 | The exemption applies whether the meal is free, subsidised, or provided via vouchers, as long as the opportunity is open to every employee | EIM21672 | ✓ | ✓ |
| 3 | If the meal is provided under a salary sacrifice or flexible remuneration scheme (from 6 April 2011), the exemption does not apply, and the benefit becomes taxable | EIM21676 | ✓ | ✓ |
| 4 | Cash allowances for meals (instead of free/subsidised meals) are always taxable as earnings | EIM01530 | ✓ | ✓ |
| 5 | A “reasonable scale” excludes extravagant items like fine wines or cigars but includes modest additions like a glass of wine director-grade meals nuance correct but cited paragraph is general | EIM21671 | ✓ | ✗ |
| 6 | The exemption also covers meals provided by a third party (e.g., a client’s canteen) if the employee works on their premises third-party canteens claim correct but stretches the cited paragraph | EIM21671 | ✓ | ✗ |
Per-question result: correctness 6/6 (100%), groundedness 4/6 (67%).
Q31. Training as a benefit
| Field | Content |
|---|---|
| Question | Is employer-provided training taxable as a benefit? |
| System answer | Not taxable if work-related training under section 250 ITEPA 2003; covers employer-paid and employer-reimbursed training; taxable if main purpose is reward, entertainment, or unrelated inducement; mixed-purpose training apportioned; related costs (travel, childcare) included. |
| Citations | EIM01300, EIM01250, EIM01210, EIM32478, EIM01280 |
| System faithfulness | 1.00 |
| Claude’s own answer | Work-related training paid for or reimbursed by an employer is exempt under section 250 ITEPA. The exemption is broad: directly related, ancillary, or training that improves general employability. Training that is essentially a reward (a golf weekend dressed as training) is taxable; mixed-purpose training is apportioned. |
| Claim-level result | correctness 6/6 (100%), groundedness 6/6 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Employer-provided training is not taxable as a benefit if it qualifies as work-related training under *Section 250 ITEPA 2003 | EIM01210 | ✓ | ✓ |
| 2 | The exemption covers costs paid directly by the employer or reimbursed to the employee, including third-party training (e.g., a manufacturer training retail staff) | EIM01300 | ✓ | ✓ |
| 3 | However, training is taxable if its main purpose is to reward the employee or provide entertainment unrelated to skill development (e.g., a go-kart evening) | EIM01250 | ✓ | ✓ |
| 4 | Costs for genuine training remain exempt even if mixed with minor recreational elements (e.g., hotel leisure facilities during a course), unless the non-training part is separately identifiable (e.g., a golf weekend) | EIM01250 | ✓ | ✓ |
| 5 | The exemption also extends to related costs like travel, childcare, and training materials, provided they support work-related learning | EIM01210 | ✓ | ✓ |
| 6 | If training includes a taxable reward element, only the marginal cost of that part is subject to tax | EIM01250 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 6/6 (100%).
Q32. Working-from-home allowance
| Field | Content |
|---|---|
| Question | How is a working-from-home allowance taxed? |
| System answer | £6/week (or £26/month) tax-free if formal work-from-home arrangement; higher amounts taxable unless evidence of actual costs; employees who choose to work from home cannot claim relief; from 6 April 2026 unreimbursed household expenses no longer deductible; different treatment if the job requires home working. |
| Citations | EIM01471, EIM32830, EIM32790, EIM01476, EIM01472 |
| System faithfulness | 0.92 |
| Claude’s own answer | £6 per week (or £26 per month) is tax-free if paid by the employer to an employee whose duties require working from home under a formal arrangement. Employees can claim relief for unreimbursed costs only when home-working is a contractual or operational requirement (not personal choice). Rules tighten further from April 2026. |
| Claim-level result | correctness 5/5 (100%), groundedness 5/5 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Employers can pay a tax-free allowance of £6 per week (or £26 per month) to cover additional household expenses for employees working from home under formal arrangements | EIM01476 | ✓ | ✓ |
| 2 | This exemption applies if the employee works at home regularly under an agreement with the employer, not just informally | EIM01472 | ✓ | ✓ |
| 3 | Payments above £6 per week are taxable unless the employer justifies the higher amount with evidence of actual costs | EIM01476 | ✓ | ✓ |
| 4 | Employees cannot claim tax relief for unreimbursed expenses if they work from home by choice, even if costs exceed the allowance | EIM32830 | ✓ | ✓ |
| 5 | From 6 April 2026, unreimbursed household expenses will no longer qualify for any tax deduction | EIM01472 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Q34. 40% threshold + 24-month rule
| Field | Content |
|---|---|
| Question | How does the 40% time threshold work alongside the 24-month rule? |
| System answer | Workplace becomes permanent if 40% or more of working time spent there over a period that lasts or is expected to last more than 24 months; 40% test follows section 339(6) ITEPA; both conditions must be met; breaks during a continuous 40%-period do not reset; expectation at the outset is what matters. |
| Citations | EIM31802, EIM32080, EIM32105, EIM32106, EIM32108 |
| System faithfulness | 1.00 |
| Claude’s own answer | Both conditions must hold for a workplace to be permanent under the 24-month rule: the employee spends 40% or more of working time there and attendance lasts (or is expected to last) more than 24 months. Either alone is not sufficient. Once expectation crosses both lines, the workplace is permanent prospectively from that date. |
| Claim-level result | correctness 5/5 (100%), groundedness 5/5 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | A workplace counts as a “period of continuous work” if the employee spends 40% or more of their working time there | EIM32080 | ✓ | ✓ |
| 2 | This period becomes permanent (not temporary) if it lasts, or is likely to last, more than 24 months | EIM32080 | ✓ | ✓ |
| 3 | The test checks whether the employee has spent or is likely to spend 40%+ of their time at that workplace over a >24-month period | EIM32080 | ✓ | ✓ |
| 4 | If both conditions apply, travel costs to that workplace are treated as ordinary commuting and are not deductible | EIM32080 | ✓ | ✓ |
| 5 | Breaks in attendance do not always reset the clock—continuous work can still apply if the total period exceeds 24 months | EIM32105 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Q35. Travel between two workplaces
| Field | Content |
|---|---|
| Question | Is travel between two workplaces in the same employment deductible? |
| System answer | Deductible if the employee must travel between them to perform their duties; example of an office manager between two offices; home-to-workplace travel still not deductible; rule does not apply across separate employments. |
| Citations | EIM32360, EIM32031, EIM32142, EIM31803, EIM32173 |
| System faithfulness | 1.00 |
| Claude’s own answer | Travel between two workplaces of the same employment, in the course of duty, is deductible. The classic case is a teacher travelling between two schools they teach at within the same employment. Travel between workplaces of separate employments is not deductible. |
| Claim-level result | correctness 5/5 (100%), groundedness 5/5 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Travel between two workplaces in the same employment is deductible if the employee must make the journey to perform their duties | EIM32360 | ✓ | ✓ |
| 2 | This applies because the cost is incurred in the performance of the employment | EIM31803 | ✓ | ✓ |
| 3 | For example, an office manager travelling between two permanent offices in the same job qualifies for the deduction | EIM32142 | ✓ | ✓ |
| 4 | However, travel between home and a workplace is not usually deductible unless home is itself a workplace dictated by the job | EIM31803 | ✓ | ✓ |
| 5 | The deduction does not apply if the workplaces relate to separate employments | EIM32360 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Q36. Fixed-term appointment travel
| Field | Content |
|---|---|
| Question | Are travel expenses for a fixed-term appointment deductible? |
| System answer | No deduction for home-to-workplace travel if the employee attends for all or almost all of the employment; workplace treated as permanent in that case; relief denied where attendance is at least 80% of the employment duration; secondments within continuing employment may qualify as temporary. |
| Citations | EIM32126, EIM32130, EIM32125, EIM32129, EIM32137 |
| System faithfulness | 0.58 |
| Claude’s own answer | Under the all or almost all rule, a workplace is treated as permanent if the employee attends it for at least 80% of the duration of the employment, even if it would otherwise qualify as temporary. This catches secondments where someone is hired specifically to work at a single client site for a fixed period. |
| Claim-level result | correctness 6/6 (100%), groundedness 5/6 (83%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | No deduction is due for travel between home and a fixed-term workplace if the employee attends that site for all, or almost all, of their employment period | EIM32126 | ✓ | ✓ |
| 2 | The workplace is treated as permanent for tax purposes in this case, even if the employment itself is temporary | EIM32125 | ✓ | ✓ |
| 3 | Relief is only blocked if attendance at the site covers at least 80% of the employment’s likely duration—below this, the workplace may still qualify as temporary 80% rule presented more sharply than cited paragraph supports | EIM32125 | ✓ | ✗ |
| 4 | If the fixed-term role is part of a continuing employment (e.g., a secondment with retained rights like pensions), the workplace could instead be temporary, allowing deductions | EIM32129 | ✓ | ✓ |
| 5 | For agency workers, each contract is a separate employment, so travel to the only workplace in that contract is never deductible | EIM32130 | ✓ | ✓ |
| 6 | From 6 April 2016, workers using employment intermediaries (e.g., umbrellas) generally get no relief for home-to-work travel under any contract | EIM32130 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 5/6 (83%).
Q37. Payments in lieu of notice (PILON)
| Field | Content |
|---|---|
| Question | Are payments in lieu of notice taxed as earnings or under the termination rules? |
| System answer | From 6 April 2018, contractual PILONs taxed under section 62 ITEPA as earnings; non-contractual PILONs taxed under section 401 as termination payments; post-employment notice pay (PENP) treated as earnings regardless; remainder may qualify for the £30,000 threshold. |
| Citations | EIM12975, EIM12976, EIM12979, EIM13876, EIM12978 |
| System faithfulness | 0.64 |
| Claude’s own answer | Since April 2018, the post-employment notice pay (PENP) element of every termination is taxed as earnings under section 62, regardless of whether contractual. Any remainder, if not contractual, can fall under the £30,000 section 401 exemption. Pre-April 2018, contractual PILONs were taxed as earnings; non-contractual PILONs went through the £30,000 threshold. |
| Claim-level result | correctness 4/4 (100%), groundedness 3/4 (75%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | A contractual PILON is taxed as earnings under Section 62 ITEPA 2003 | EIM12976 | ✓ | ✓ |
| 2 | If the PILON is non-contractual and paid as damages for breach of contract, it is taxed under Section 401 ITEPA 2003 | EIM12978 | ✓ | ✓ |
| 3 | From 6 April 2018, post-employment notice pay (PENP)—even if not otherwise taxable as earnings—is chargeable as general earnings and does not benefit from the £30,000 termination threshold PENP-as-earnings rule correct; multi-paragraph synthesis | EIM13876 | ✓ | ✗ |
| 4 | The tax treatment depends on whether the PILON is contractual, customary, or a damages payment | EIM12975 | ✓ | ✓ |
Per-question result: correctness 4/4 (100%), groundedness 3/4 (75%).
Q39. Termination legal fees
| Field | Content |
|---|---|
| Question | Are legal fees paid by the employer in connection with termination taxable? |
| System answer | Not taxable if three conditions met (paid directly to the employee’s solicitor, covers only legal costs for the termination dispute, made under settlement agreement or court order); otherwise taxable under section 401; exemption applies only to legal costs; payments under a court order exempt even if paid directly to the employee. |
| Citations | EIM13740, EIM12978, EIM13020, EIM13910, EIM13912 |
| System faithfulness | 1.00 |
| Claude’s own answer | Employer-paid legal fees in connection with termination are exempt if paid directly to the employee’s solicitor (or under court order), the costs relate solely to the termination, and the payment is part of a settlement that includes the employee waiving claims. Otherwise the payment is taxable as a termination payment under section 401. |
| Claim-level result | correctness 6/6 (100%), groundedness 6/6 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Legal fees paid by the employer in connection with termination are not taxable if three conditions are met: the payment goes directly to the employee’s solicitor, covers only legal costs for the termination dispute, and is made under a settlement agreement or court order | EIM13740 | ✓ | ✓ |
| 2 | If these conditions aren’t met, the payment falls under Section 401 ITEPA 2003 and is generally taxable as a termination payment | EIM13020 | ✓ | ✓ |
| 3 | The tax exemption only applies to legal costs, not other professional fees like accountancy charges | EIM13740 | ✓ | ✓ |
| 4 | Payments made under a court order are exempt even if paid directly to the employee | EIM13740 | ✓ | ✓ |
| 5 | Employers cannot avoid tax by paying legal fees unless the strict conditions above are satisfied | EIM13740 | ✓ | ✓ |
| 6 | Employees cannot claim a deduction for their own legal costs in any case | EIM13740 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 6/6 (100%).
Q40. OpRA exclusions
| Field | Content |
|---|---|
| Question | Which benefits are excluded from the optional remuneration arrangements rules? |
| System answer | Lists benefits whose exemptions survive OpRA: taxable cars and vans, cycles, qualifying childcare vouchers, employer-provided childcare, retirement and registered pension contributions, statutory redundancy, counselling, retraining, pensions advice. |
| Citations | EIM44130, EIM44131, EIM44120, EIM42705, EIM44132 |
| System faithfulness | 0.50 |
| Claude’s own answer | OpRA does not apply to: pensions and pension advice, employer-provided childcare and qualifying childcare vouchers (legacy schemes), workplace nurseries, cycle-to-work scheme equipment, and ultra-low-emission cars (under 75g/km CO₂). All other benefits lost most of their salary-sacrifice tax benefit from April 2017. |
| Claim-level result | correctness 6/6 (100%), groundedness 3/6 (50%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | The optional remuneration arrangements rules do not apply to benefits covered by excluded exemptions, including: - Taxable cars, vans, and heavy goods vehicles (section 239 ITEPA 2003) | EIM44131 | ✓ | ✓ |
| 2 | Cycles and cyclist’s safety equipment (section 244 ITEPA 2003) section 239 cars claim correct; verifier flagged partial support | EIM44131 | ✓ | ✗ |
| 3 | Non-cash vouchers for cycles (section 266(2)(c) ITEPA 2003) | EIM44131 | ✓ | ✓ |
| 4 | Registered pension scheme contributions (sections 307–308A ITEPA 2003) section 270A childcare-vouchers claim correct; cited paragraph approximate | EIM44131 | ✓ | ✗ |
| 5 | Childcare provisions (sections 318–318A ITEPA 2003) retirement-and-pension-contributions claim correct; sections cited are approximate | EIM44131 | ✓ | ✗ |
| 6 | Trivial benefits (section 323A ITEPA 2003) are not excluded but are special case exemptions with separate rules | EIM44132 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 3/6 (50%).
Q41. Employer pension contributions
| Field | Content |
|---|---|
| Question | How are employer pension contributions taxed for the employee? |
| System answer | Employer contributions to a registered pension scheme are not taxed as employee earnings; exemption applies when the contribution funds employee or death-in-service benefits; contributions for an employee’s family member who is not also an employee are taxable; pre-2006 non-approved schemes taxed differently; salary-sacrifice arrangements remain exempt if structured correctly. |
| Citations | EIM01570, EIM15400, EIM42780, EIM15438, EIM32671 |
| System faithfulness | 1.00 |
| Claude’s own answer | Employer contributions to a registered pension scheme on behalf of an employee are exempt from tax and NIC for the employee, up to the annual allowance (£60,000 from 2023/24, with carry-forward and tapered allowance for high earners). Contributions to an employee’s relative (who is not also an employee) are taxable as the employee’s earnings. Pre-2006 non-approved schemes have different treatment. |
| Claim-level result | correctness 6/6 (100%), groundedness 6/6 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Employer contributions to a registered pension scheme for an employee are not taxed as the employee’s earnings | EIM01570 | ✓ | ✓ |
| 2 | This exemption applies only if the contributions fund benefits for the employee or death-in-service benefits (e.g., a lump sum on death) | EIM01570 | ✓ | ✓ |
| 3 | If the employer pays into a pension for the employee’s family member (who isn’t also an employee), the contribution is taxed as the employee’s earnings | EIM01570 | ✓ | ✓ |
| 4 | For non-approved schemes (pre-6 April 2006), employer contributions are taxed as the employee’s income under Section 386 ITEPA 2003 | EIM15400 | ✓ | ✓ |
| 5 | Lump sums from non-approved schemes are also taxable, unless the employee already paid tax on prior contributions | EIM15438 | ✓ | ✓ |
| 6 | Salary sacrifice arrangements for registered schemes remain exempt if structured correctly, with no tax on the employer’s contribution | EIM42780 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 6/6 (100%).
Q42. Professional subscriptions
| Field | Content |
|---|---|
| Question | Can I deduct the cost of professional subscriptions from my employment income? |
| System answer | Deductible if the body is HMRC-approved and its activities directly benefit the profession; subscription must relate to duties performed; statutory licence fees deductible under section 343; entrance fees, life memberships, and non-listed subscriptions not deductible. |
| Citations | EIM32880, EIM32900, EIM32897, EIM32915, EIM32898 |
| System faithfulness | 0.90 |
| Claude’s own answer | Subscriptions to bodies on HMRC’s List 3 (approved professional bodies) are deductible from employment income where the membership is relevant to the role. Statutory licence and registration fees are deductible separately under section 343. Joining fees, life memberships, and bodies not on List 3 are not deductible. |
| Claim-level result | correctness 5/5 (100%), groundedness 5/5 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | You can deduct the cost of professional subscriptions from employment income if the body is HMRC-approved and its activities directly benefit your profession in that job | EIM32900 | ✓ | ✓ |
| 2 | A deduction is also allowed for certain statutory fees tied to specific occupations, like transport or security sector licences | EIM32897 | ✓ | ✓ |
| 3 | [EIM32898]. You cannot claim for subscriptions to unapproved bodies, entrance fees, or life memberships | EIM32915 | ✓ | ✓ |
| 4 | If your employer pays the fee, you can only deduct it if the payment counts as taxable earnings | EIM32915 | ✓ | ✓ |
| 5 | The same fee cannot be deducted against both employment income and self-employed trading income | EIM32915 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Q43. Restrictive covenants
| Field | Content |
|---|---|
| Question | How are restrictive covenant payments taxed? |
| System answer | Treated as earnings under section 225 ITEPA; full amount taxable as general earnings in the year received; no deductions or exemptions even on later breach; PAYE applies; if the payer is not the employer, basic-rate PAYE still applies. |
| Citations | EIM03600, EIM03602, EIM03623, EIM03621, EIM03603 |
| System faithfulness | 0.90 |
| Claude’s own answer | A payment for entering into a restrictive covenant is taxed as earnings under section 225 ITEPA. The full amount is taxable in the year received and PAYE applies. The covenant’s actual enforceability or any later breach has no effect on the tax treatment of the payment. |
| Claim-level result | correctness 5/5 (100%), groundedness 5/5 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Payments for restrictive covenants are treated as earnings from employment under Section 225 ITEPA 2003 | EIM03602 | ✓ | ✓ |
| 2 | The full amount received in the tax year is taxable as general earnings | EIM03602 | ✓ | ✓ |
| 3 | No deductions or exemptions apply, even if the employee later breaches the covenant | EIM03623 | ✓ | ✓ |
| 4 | Employers must operate PAYE on these payments, deducting tax at source | EIM03603 | ✓ | ✓ |
| 5 | If the payer is not the employer, they must still deduct tax at the basic rate under PAYE | EIM03603 | ✓ | ✓ |
Per-question result: correctness 5/5 (100%), groundedness 5/5 (100%).
Q45. PAYE on weekly pay
| Field | Content |
|---|---|
| Question | How is income tax collected through PAYE on weekly pay? |
| System answer | Tax collected via codes and weekly tax tables; employer pays HMRC the deducted amount; in 53-week tax years, extra personal allowances apply to the additional payday to keep take-home consistent; final assessment based on annual income; underpayment from the 53rd week is adjusted later. |
| Citations | EIM11801, EIM42420, EIM71405, EIM65970, EIM15210 |
| System faithfulness | 1.00 |
| Claude’s own answer | Weekly PAYE allocates 1/52nd of the personal allowance and tax thresholds to each pay period via tax tables. In years with 53 paydays (when the calendar produces an extra Monday), HMRC publishes a week-53 tax table that uses an emergency-style non-cumulative code on the 53rd payday so the year’s overall tax is approximately correct, with end-of-year reconciliation handling any residual. |
| Claim-level result | correctness 6/6 (100%), groundedness 6/6 (100%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Income tax on weekly pay is collected through PAYE using code numbers and tax tables to deduct the correct amount each payday | EIM11801 | ✓ | ✓ |
| 2 | The system aims to spread tax evenly across the year, with deductions acting as payments on account of the annual tax bill | EIM11801 | ✓ | ✓ |
| 3 | In years with 53 weekly paydays, extra personal allowances are applied to the additional payday to keep take-home pay consistent | EIM42420 | ✓ | ✓ |
| 4 | These extra allowances are temporary and do not affect the final tax assessment, which is based on statutory rules | EIM42420 | ✓ | ✓ |
| 5 | Any underpayment from the 53rd week is adjusted later, either through coding or a self-assessment | EIM42420 | ✓ | ✓ |
| 6 | For most employees, PAYE deductions match their annual liability, so no further action is needed | EIM71405 | ✓ | ✓ |
Per-question result: correctness 6/6 (100%), groundedness 6/6 (100%).
Q46. Post-employment payments
| Field | Content |
|---|---|
| Question | What is the tax treatment of payments made after employment ends? |
| System answer | Taxable as general earnings in the year received; applies whether the period of employment was active or not; bonus paid after retirement still taxable in the year of receipt with PAYE applied; section 401 rules may apply for termination payments. |
| Citations | EIM12830, EIM42220, EIM68225, EIM42222, EIM13825 |
| System faithfulness | 0.60 |
| Claude’s own answer | Earnings paid after employment ends are taxable in the year of receipt under section 18 ITEPA, with PAYE typically operated at the BR (basic rate) code. Specific termination payments may instead fall under section 401 (£30,000 threshold). Non-cash benefits received post-employment can also be taxable under section 401 even if no cash changes hands. |
| Claim-level result | correctness 5/5 (100%), groundedness 4/5 (80%). Per-claim breakdown below. |
Per-claim scoring:
| # | Claim (verbatim) | Cite | Correct | Grounded |
|---|---|---|---|---|
| 1 | Payments received after employment ends are taxable in the year they are received, even if the job has already ended | EIM42220 | ✓ | ✓ |
| 2 | This applies whether the payment relates to a period when the employment was active or not | EIM42220 | ✓ | ✓ |
| 3 | For example, a bonus paid after retirement for a prior tax year remains taxable in the year of receipt | EIM42222 | ✓ | ✓ |
| 4 | PAYE must be applied to such payments when made | EIM42222 | ✓ | ✓ |
| 5 | If a payment cannot be linked to any period of employment, further guidance is needed (see EIM40005) section 401 cross-reference is approximate rather than tightly cited | EIM42220 | ✓ | ✗ |
Per-question result: correctness 5/5 (100%), groundedness 4/5 (80%).
Refusals and other outcomes
| Q | Tag | Outcome | Verdict |
|---|---|---|---|
| 21 | Corporation tax rate | out of scope | Correct refusal — clearly outside the corpus’s intended scope. |
| 22 | Capital gains | out of scope | Correct refusal. |
| 23 | VAT | out of scope | Correct refusal. |
| 24 | Property income | out of scope | Correct refusal — points the user at the Property Income Manual. |
| 25 | Scottish income tax bands | out of scope | Correct refusal — Scottish bands are an explicit scope exclusion. |
| 26 | Personal advice (incorporation) | out of scope | Correct refusal — the navigator is not an adviser. |
| 33 | Permanent workplace | answered (in_scope) | The temporary-vs-permanent distinction now resolves cleanly with the structure-aware retrieval pipeline; the system answers with citations rather than refusing. |
| 38 | Statutory redundancy | conflict | The system identified two cited paragraphs that disagree on whether statutory redundancy is exempt under section 62 ITEPA 2003 or taxed under section 401. Both citations are real; both rules apply in different combinations. The refusal reason returned by the system is “HMRC guidance is mixed here”. The system was correct to refuse rather than synthesise. The product surface for resolving this kind of conflict does not yet exist. |
| 44 | Apprentice scholarships | low coverage | The genuine in-scope failure of the run. The corpus does contain rules about apprentice scholarships but retrieval did not surface them above the selection threshold. |
| 47 | SDLT | out of scope | Correct refusal. |
| 48 | Inheritance tax | out of scope | Correct refusal. |
| 49 | ”Tax” (one word) | malformed | Correctly refused as malformed by the scope guard. |
| 50 | Point-in-time numeric query | out of scope | Correctly refused with a typed out_of_scope (point_in_time_calculation) outcome. The navigator is a guide, not a calculator on personal figures. |