Skip to content
Vamshi Jandhyala

AI Lab

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

MetricValue
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
Corpus2,798 HMRC manual pages, 9,535 cross-references
ModelsMistral end-to-end (mistral-embed, mistral-medium-latest)

Contents

  1. The problem
  2. First approach: hybrid retrieval over heading-aware chunks
  3. Where the first approach broke
  4. Second approach: structure-aware retrieval
  5. Results on the full corpus
  6. How the metrics were calculated
  7. What an LLM judge can do, and what still needs a human
  8. The lesson
  9. Appendix: the 50-question eval, with verdicts
A directed graph of fifteen HMRC pages around mileage allowance payments, with arrows showing the cross-references the corpus author wrote between them.
A real slice of HMRC's cross-reference graph centred on EIM31200 (mileage allowance payments). Every arrow is a link the corpus author wrote in their own prose. The full corpus has 9,535 such edges. The second approach treats them as a first-class retrieval signal.

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.

An HMRC Employment Income Manual page (EIM01010) showing the page heading, body text, and inline cross-references to other EIM pages.
A typical HMRC manual page. Body text contains inline cross-references to other pages (EIM00515, EIM00600, EIM21004 in this example). The corpus encodes its own knowledge graph through these author-supplied links.

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.

First-approach pipeline showing scope guard, hybrid retrieval, hit-only page rollup, strict selection, stitch, claim verify, and the answer or a typed refusal card.
The first-approach pipeline. Solid arrows follow the happy path; dashed arrows exit through typed refusal cards. The corpus's edges are present in the index but unused at retrieve time.

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.

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 gov.uk income-tax-rates page showing nested headings and the actual rates and bands table.
The gov.uk income-tax-rates page. The answer to what is the basic rate? sits in the rates-and-bands table near the bottom of the page, under the third-level heading. The page intro and the "if you're employed" subsection scored higher in hybrid retrieval; the rates table itself did not, and the page rollup discarded it.

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.

Second-approach pipeline showing the same scope guard, hybrid retrieval, stitch, and verifier as the first approach, with one new step (one-hop graph expansion) and two changed steps (full-page rollup with anchor first, recall-greedy selection).
The second-approach pipeline. Highlighted boxes are the only differences from the first approach. Scope guard, hybrid retrieval, stitch, and claim verify are 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:

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.

OutcomeCountNote
Answered with citations38 / 50mean faithfulness 0.81
Correctly refused (out of scope)9 / 50every refusal landed on a question that should refuse
Correctly refused (malformed)1 / 50the one-word “Tax” question routed to malformed
Genuine in-scope failure1 / 50apprentice scholarships: corpus has the rule, retrieval did not surface it
Conflict1 / 50statutory 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:

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:

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)CiteCorrectGrounded
1The standard Personal Allowance is £12,570, meaning you pay no Income Tax on earnings up to this amountRATES-PERSONAL-ALLOWANCE
2If your adjusted net income exceeds £100,000, your allowance reduces by £1 for every £2 earned above that thresholdRATES-INCOME-OVER-100K
3The allowance drops to zero once your income reaches £125,140 or moreRATES-INCOME-OVER-100K
4You pay tax on all income above £125,140 at the highest rate, with no Personal AllowanceEIM-5
5Blind Person’s Allowance can increase your tax-free amount if eligible, adding to the standard allowanceEIM75750

Per-question result: correctness 5/5 (100%), grounded­ness 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.

StageLLM-friendlyHuman-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:

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

#QuestionOutcomeFaithfulnessClaimsCorrectGrounded
1Personal allowance and taperanswered1.0033/3 (100%)3/3 (100%)
2Basic rate of income taxanswered0.7511/1 (100%)1/1 (100%)
3Additional rate thresholdanswered0.5011/1 (100%)0/1 (0%)
4Company car BIKanswered0.9355/5 (100%)5/5 (100%)
5Company van benefitanswered0.7566/6 (100%)5/6 (83%)
6Fuel benefitanswered0.9255/5 (100%)4/5 (80%)
7Beneficial loananswered0.7566/6 (100%)6/6 (100%)
8Accommodation as a benefitanswered0.7066/6 (100%)5/6 (83%)
9Vouchers and credit tokensanswered0.5866/6 (100%)4/6 (67%)
10Scholarships to employee’s childanswered0.8366/6 (100%)5/6 (83%)
11Temporary workplace definitionanswered0.8066/6 (100%)5/6 (83%)
12The 24-month ruleanswered0.9266/6 (100%)6/6 (100%)
13AMAP mileage ratesanswered0.6211/1 (100%)1/1 (100%)
14Ordinary commutinganswered1.0011/1 (100%)1/1 (100%)
15Pension income under PAYEanswered0.9266/6 (100%)5/6 (83%)
16Termination payments and £30kanswered0.5866/6 (100%)4/6 (67%)
17Social security benefits (JSA)answered1.0055/5 (100%)5/5 (100%)
18Salary sacrifice and OpRAanswered0.7566/6 (100%)6/6 (100%)
19Relocation £8,000 exemptionanswered0.9055/5 (100%)5/5 (100%)
20Seafarers’ earnings deductionanswered0.7566/6 (100%)5/6 (83%)
21Corporation tax raterefused (out of scope)n/an/an/an/a
22Capital gains taxrefused (out of scope)n/an/an/an/a
23VATrefused (out of scope)n/an/an/an/a
24Property incomerefused (out of scope)n/an/an/an/a
25Scottish income tax bandsrefused (out of scope)n/an/an/an/a
26Personal advice (incorporation)refused (out of scope)n/an/an/an/a
27Mobile phone benefitanswered0.8055/5 (100%)5/5 (100%)
28Electric company caranswered0.7555/5 (100%)4/5 (80%)
29Private fuel chargeanswered0.8355/5 (100%)5/5 (100%)
30Workplace mealsanswered0.8366/6 (100%)4/6 (67%)
31Training as a benefitanswered0.9266/6 (100%)6/6 (100%)
32Working-from-home allowanceanswered1.0055/5 (100%)5/5 (100%)
33Permanent workplaceanswered0.7055/5 (100%)4/5 (80%)
3440% threshold + 24-monthanswered0.9055/5 (100%)5/5 (100%)
35Travel between two workplacesanswered0.9055/5 (100%)5/5 (100%)
36Fixed-term appointment travelanswered0.5066/6 (100%)5/6 (83%)
37Payments in lieu of noticeanswered0.8044/4 (100%)3/4 (75%)
38Statutory redundancyconflict0.75n/an/an/a
39Termination legal feesanswered0.9266/6 (100%)6/6 (100%)
40OpRA exclusionsanswered1.0066/6 (100%)3/6 (50%)
41Employer pension contributionsanswered0.9266/6 (100%)6/6 (100%)
42Professional subscriptionsanswered0.5755/5 (100%)5/5 (100%)
43Restrictive covenantsanswered0.8055/5 (100%)5/5 (100%)
44Apprentice scholarshipsrefused (low coverage)n/an/an/an/a
45PAYE on weekly payanswered0.8666/6 (100%)6/6 (100%)
46Post-employment paymentsanswered0.7055/5 (100%)4/5 (80%)
47Stamp Duty Land Taxrefused (out of scope)n/an/an/an/a
48Inheritance tax allowancesrefused (out of scope)n/an/an/an/a
49”Tax” (too short)refused (malformed)n/an/an/an/a
50Point-in-time numeric queryrefused (out of scope)n/an/an/an/a
Show per-question detail (37 in-scope questions, 188 claims)

Per-question detail (in-scope)

Q1. Personal allowance and taper

FieldContent
QuestionHow does the personal allowance work and when does it taper?
System answerStandard 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.
CitationsRATES-PERSONAL-ALLOWANCE, RATES-INCOME-OVER-100K, RATES-INCOME-TAX-RATES, EIM75750
System faithfulness1.00
Claude’s own answerThe 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 resultcorrectness 3/3 (100%), grounded­ness 3/3 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1The standard Personal Allowance is £12,570, which is the amount of income you don’t pay tax onRATES-INCOME-TAX-RATES
2If your adjusted net income exceeds £100,000, your allowance reduces by £1 for every £2 earned above that thresholdRATES-INCOME-TAX-RATES
3This tapering means your Personal Allowance reaches zero once your income hits £125,140 or moreRATES-INCOME-TAX-RATES

Per-question result: correctness 3/3 (100%), grounded­ness 3/3 (100%).

Q2. Basic rate of income tax

FieldContent
QuestionWhat is the basic rate of income tax for the current tax year?
System answerThe basic rate is 20% on taxable income between £12,571 and £50,270.
CitationsRATES-INCOME-TAX-RATES, RATES-PERSONAL-ALLOWANCE, RATES-INCOME-OVER-100K, EIM75750, EIM68208
System faithfulness1.00
Claude’s own answerFor 2025/26 the basic rate is 20% on taxable income from £12,571 up to £50,270 (England, Wales, Northern Ireland).
Claim-level resultcorrectness 1/1 (100%), grounded­ness 1/1 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1The basic rate of Income Tax is 20% on income between £12,571 and £50,270RATES-PERSONAL-ALLOWANCE

Per-question result: correctness 1/1 (100%), grounded­ness 1/1 (100%).

Q3. Additional rate threshold

FieldContent
QuestionAt what income does the additional rate of income tax start?
System answerStarts on taxable income over £125,140.
CitationsEIM75750, EIM40109, RATES-INCOME-OVER-100K, RATES-PERSONAL-ALLOWANCE, RATES-INCOME-TAX-RATES
System faithfulness0.50
Claude’s own answerThe 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 resultcorrectness 1/1 (100%), grounded­ness 0/1 (0%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1The 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%), grounded­ness 0/1 (0%).

Q4. Company car BIK

FieldContent
QuestionHow is a company car taxed as a benefit in kind?
System answerList 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.
CitationsEIM23900, EIM23021, EIM24105, EIM25261, EIM23570
System faithfulness0.92
Claude’s own answerA 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 resultcorrectness 5/5 (100%), grounded­ness 5/5 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1A 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 journeysEIM23021
2The taxable value is based on the car’s list price (including delivery, VAT, and taxes) multiplied by an appropriate percentage linked to its CO₂ emissionsEIM24105
3If the employee makes a payment specifically for private use, this amount reduces the taxable benefitEIM25261
4Salary sacrifice arrangements do not reduce the benefit value, as the sacrificed salary is not treated as a payment for private useEIM25261
5The rules apply regardless of any special terms or discounts unless the employer is a car hire business charging employees the same rate as the publicEIM23021

Per-question result: correctness 5/5 (100%), grounded­ness 5/5 (100%).

Q5. Company van benefit

FieldContent
QuestionHow is a company van taxed?
System answerVan 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.
CitationsEIM31255, EIM22845, EIM22910, EIM22915, EIM31400
System faithfulness0.75
Claude’s own answerA 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 resultcorrectness 6/6 (100%), grounded­ness 5/6 (83%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1A company van attracts a benefit charge under section 154 ITEPA 2003 if it’s made available to an employee by reason of their employmentEIM31255
2The charge applies unless the van is only available for business travel and not private useEIM31255
3If the van is pooled under sections 167 and 168 ITEPA 2003, it may avoid the benefit chargeEIM31255
4Private 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
5The 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 rulesEIM22915
6The fuel charge doesn’t apply if the van can’t emit CO₂ when drivenEIM22915

Per-question result: correctness 6/6 (100%), grounded­ness 5/6 (83%).

Q6. Fuel benefit

FieldContent
QuestionIs fuel provided by an employer for private use taxable?
System answerPrivate 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.
CitationsEIM25650, EIM22945, EIM25510, EIM23615, EIM25525
System faithfulness0.60
Claude’s own answerYes. 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 resultcorrectness 5/5 (100%), grounded­ness 4/5 (80%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Fuel 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 yearEIM25510
2The 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 deadlineEIM22945
3The charge applies even if the car’s benefit charge is reduced to nil due to employee contributionsEIM25510
4For 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
5The taxable amount is not based on actual fuel costs but is a fixed charge unless all private fuel is repaidEIM25525

Per-question result: correctness 5/5 (100%), grounded­ness 4/5 (80%).

Q7. Beneficial loan

FieldContent
QuestionHow is an interest-free or low-interest loan from an employer taxed?
System answerTaxable 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.
CitationsEIM21736, EIM44110, EIM26136, EIM26257, EIM26102
System faithfulness1.00
Claude’s own answerTaxed 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 resultcorrectness 6/6 (100%), grounded­ness 6/6 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1An 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 paidEIM26102
2The taxable amount is the difference between the interest paid (if any) and the interest calculated at the official rate set by HMRCEIM26102
3No 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
4If 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 selectionEIM21736
5Loans where the interest would fully qualify for tax relief (e.g., for business or property income purposes) are not taxable, even if interest-freeEIM26136
6From 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 savedEIM44110

Per-question result: correctness 6/6 (100%), grounded­ness 6/6 (100%).

Q8. Accommodation as a benefit

FieldContent
QuestionWhat is the tax treatment of accommodation provided by an employer?
System answerTaxable 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.
CitationsEIM21619, EIM68450, EIM11407, EIM15022, EIM11408
System faithfulness1.00
Claude’s own answerTaxable 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 resultcorrectness 6/6 (100%), grounded­ness 5/6 (83%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1If 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 relationshipsEIM11407
2The tax rules in Part 3 Chapter 5 ITEPA 2003 apply to this accommodation, unless it’s provided by a local authority under specific exemptionsEIM11407
3If 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 earningsEIM68450
4For 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
5If 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 benefitEIM21619
6Where the employer provides the accommodation directly, different rules under Section 316 ITEPA 2003 apply instead of Section 316ZAEIM21619

Per-question result: correctness 6/6 (100%), grounded­ness 5/6 (83%).

Q9. Vouchers and credit tokens

FieldContent
QuestionHow are vouchers and credit tokens given by an employer taxed?
System answerCash 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.
CitationsEIM11850, EIM11840, EIM16020, EIM11845, EIM16030
System faithfulness0.50
Claude’s own answerCash 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 resultcorrectness 6/6 (100%), grounded­ness 4/6 (67%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Vouchers and credit-tokens provided by an employer because of employment are taxed as earnings under Part 3 Chapter 4 ITEPA 2003EIM11850
2Cash 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
3Credit-tokens are taxed in the year they are used by the employee
credit-tokens-taxed-when-used: synthesis claim across multiple paragraphs
EIM11850
4The taxable amount for cash vouchers is the cash value they can be exchanged forEIM11840
5For non-cash vouchers and credit-tokens, the taxable amount is the cost of what’s obtained minus any amount the employee repaysEIM11845
6[EIM11850]. Exceptions apply if the voucher or token is used for allowable expenses that wouldn’t otherwise be taxableEIM11840

Per-question result: correctness 6/6 (100%), grounded­ness 4/6 (67%).

Q10. Scholarships to an employee’s child

FieldContent
QuestionAre scholarships provided by an employer to an employee’s child taxable?
System answerTaxable 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.
CitationsEIM30002, EIM30004, EIM30000, EIM30008, EIM30001
System faithfulness0.80
Claude’s own answerTaxable 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 resultcorrectness 6/6 (100%), grounded­ness 5/6 (83%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1A scholarship provided by an employer to an employee’s child is taxable if it is given by reason of the employee’s employmentEIM30001
2This includes scholarships funded by the employer, arranged by the employer, or provided through a connected person (like an educational trust)EIM30002
3The taxable amount is the cost of providing the scholarshipEIM30001
4An 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-relatedEIM30004
5The 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 themEIM30001

Per-question result: correctness 6/6 (100%), grounded­ness 5/6 (83%).

Q11. Temporary workplace definition

FieldContent
QuestionWhen are travel expenses to a workplace deductible, and what counts as a temporary workplace?
System answerTravel 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.
CitationsEIM32065, EIM32080, EIM32082, EIM32083, EIM32075
System faithfulness0.67
Claude’s own answerTravel 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 resultcorrectness 6/6 (100%), grounded­ness 5/6 (83%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Travel expenses to a workplace are deductible only if the workplace is temporary—not permanentEIM32065
2A workplace counts as temporary if the employee attends only to perform a task of limited duration or for a temporary purposeEIM32075
3However, 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 placeEIM32080
4If 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
5Expectations at the start of the assignment determine the rule’s application, even if the actual duration turns out shorterEIM32083
6Breaks in attendance may affect the calculation, but the core test remains time spent and likelihood of exceeding 24 monthsEIM32080

Per-question result: correctness 6/6 (100%), grounded­ness 5/6 (83%).

Q12. The 24-month rule

FieldContent
QuestionWhat is the 24-month rule for temporary workplaces?
System answerWorkplace 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.
CitationsEIM32080, EIM31802, EIM32105, EIM32075, EIM32089
System faithfulness0.92
Claude’s own answerA 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 resultcorrectness 6/6 (100%), grounded­ness 6/6 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1A 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 monthsEIM32080
2This rule applies when the employee spends 40% or more of their working time at that workplace over that periodEIM32080
3If 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
4The rule only affects workplaces that would otherwise qualify as temporary (e.g., for limited duration or temporary purpose)EIM32075
5Breaks in attendance do not always reset the 24-month period—continuous work can still apply even with interruptionsEIM32105
6If 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 testEIM32089

Per-question result: correctness 6/6 (100%), grounded­ness 6/6 (100%).

Q13. AMAP mileage rates

FieldContent
QuestionWhat are the approved mileage allowance rates for using my own car for business?
System answer45p per mile for the first 10,000 miles, 25p over 10,000.
CitationsEIM31230, EIM31360, EIM31240, EIM31355, EIM31200
System faithfulness0.80
Claude’s own answerHMRC-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 resultcorrectness 1/1 (100%), grounded­ness 1/1 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1The 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 yearEIM31240

Per-question result: correctness 1/1 (100%), grounded­ness 1/1 (100%).

Q14. Ordinary commuting

FieldContent
QuestionCan I claim travel expenses for ordinary commuting?
System answerNo deduction is due for ordinary commuting.
CitationsEIM32310, EIM32304, EIM31802, EIM32305, EIM32055
System faithfulness1.00
Claude’s own answerNo. Travel between home and a permanent workplace is ordinary commuting and not deductible from employment income.
Claim-level resultcorrectness 1/1 (100%), grounded­ness 1/1 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1No deduction is due for the cost of ordinary commutingEIM32055

Per-question result: correctness 1/1 (100%), grounded­ness 1/1 (100%).

Q15. Pension income under PAYE

FieldContent
QuestionHow is pension income taxed under PAYE?
System answerPension 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.
CitationsEIM75400, EIM75200, EIM75010, EIM75800, EIM75750
System faithfulness0.83
Claude’s own answerPension 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 resultcorrectness 6/6 (100%), grounded­ness 5/6 (83%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Pension income from registered pension schemes is taxed under PAYE before payment to the recipientEIM75400
2The payer must apply PAYE rules to all pensions from registered schemesEIM75400
3PAYE also applies to “PAYE pension income,” which includes pensions taxable under section 569 ITEPA 2003EIM75200
4The taxable amount is the pension accruing in the tax year, not necessarily the amount receivedEIM75010
5Voluntary annual payments paid by a UK-based payer are also subject to PAYEEIM75800
6PAYE 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%), grounded­ness 5/6 (83%).

Q16. Termination payments and the £30,000 threshold

FieldContent
QuestionHow are termination payments taxed, and what is the £30,000 threshold?
System answerSplit 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.
CitationsEIM13505, EIM13530, EIM13520, EIM13760, EIM13550
System faithfulness0.50
Claude’s own answerTermination 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 resultcorrectness 6/6 (100%), grounded­ness 4/6 (67%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Termination payments are split into two parts: post-employment notice pay (PENP) and other termination awards under section 403 ITEPA 2003EIM13505
2Only the part exceeding £30,000 is taxed as employment income, but this threshold does not apply to PENPEIM13505
3Payments like statutory redundancy or approved contractual payments (up to the statutory equivalent) count toward the £30,000 thresholdEIM13760
4All relevant payments from the same employer or associated employers must be added together before applying the £30,000 limitEIM13530
5The 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
6Statutory 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%), grounded­ness 4/6 (67%).

Q17. Social security benefits (JSA)

FieldContent
QuestionAre social security benefits like Jobseeker’s Allowance taxable?
System answerBoth 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.
CitationsEIM76222, EIM76220, EIM76225, EIM76000, EIM76101
System faithfulness1.00
Claude’s own answerSome 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 resultcorrectness 5/5 (100%), grounded­ness 5/5 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Jobseeker’s Allowance (JSA) is taxable as social security incomeEIM76222
2This applies to both contribution-based JSA and income-based JSAEIM76222
3From 2013, income-based JSA is replaced by Universal Credit, which is not taxableEIM76222
4Contribution-based JSA is now called New Style Jobseeker’s Allowance and remains taxableEIM76222
5The taxable amount is the lower of the actual JSA received or the “taxable maximum”EIM76222

Per-question result: correctness 5/5 (100%), grounded­ness 5/5 (100%).

Q18. Salary sacrifice and OpRA

FieldContent
QuestionWhat is salary sacrifice and how does the optional remuneration regime affect it?
System answerContractual 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.
CitationsEIM42750, EIM42772, EIM42755, EIM42773, EIM42752
System faithfulness0.75
Claude’s own answerSalary 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 resultcorrectness 6/6 (100%), grounded­ness 6/6 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1A 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 contractEIM42750
2For example, an employee might reduce their £40,000 salary to £34,800 in return for childcare vouchersEIM42750
3From 6 April 2017, the tax and National Insurance advantages of most benefits provided through salary sacrifice (called optional remuneration arrangements) are largely removedEIM42750
4The taxable value of the benefit is now usually the higher of the salary given up or the normal benefit-in-kind chargeEIM42750
5Some benefits, like workplace nurseries and pension contributions, remain exempt or partially exempt under transitional rulesEIM42750
6Detailed guidance on these changes starts at EIM44000EIM42750

Per-question result: correctness 6/6 (100%), grounded­ness 6/6 (100%).

Q19. Relocation £8,000 exemption

FieldContent
QuestionWhat is the £8,000 exemption for relocation expenses?
System answerCovers 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.
CitationsEIM03106, EIM03138, EIM03129, EIM03104, EIM03105
System faithfulness0.93
Claude’s own answerUp 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 resultcorrectness 5/5 (100%), grounded­ness 5/5 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1The £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 workplaceEIM03104
2The exemption applies to costs listed under Section 272(1) ITEPA 2003 or bridging loan expenses under Section 284 ITEPA 2003EIM03104
3Any amount over £8,000 is taxable and must be reported on form P11D or P9D (for 2015/16 and earlier)EIM03138
4The 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 homeEIM03104
5[EIM03105]. PAYE is not deducted from qualifying expenses, even if they exceed £8,000, but the excess is taxableEIM03138

Per-question result: correctness 5/5 (100%), grounded­ness 5/5 (100%).

Q20. Seafarers’ earnings deduction

FieldContent
QuestionWhat is the seafarers’ earnings deduction and who qualifies?
System answerReduces 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.
CitationsEIM33011, EIM33021, EIM33010, EIM33001, EIM33053
System faithfulness0.88
Claude’s own answerThe 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 resultcorrectness 6/6 (100%), grounded­ness 5/6 (83%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1The 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 periodEIM33001
2UK-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 watersEIM33010
3Non-EEA/EU resident seafarers do not qualify for the deductionEIM33010
4The deduction applies only to general earnings (e.g., salary, bonuses) and not to share option gains or third-party salvage awardsEIM33001
5For years before 2011/12, non-UK resident EU/EEA seafarers can now claim retrospectively if they meet the same time limits as UK residentsEIM33011
6The 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%), grounded­ness 5/6 (83%).

Q27. Mobile phone benefit

FieldContent
QuestionAre mobile phones provided by an employer taxable as a benefit?
System answerOne 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.
CitationsEIM32945, EIM21779, EIM21780, EIM21778, EIM21781
System faithfulness0.80
Claude’s own answerOne 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 resultcorrectness 5/5 (100%), grounded­ness 5/5 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1The provision of one mobile phone by an employer to an employee for private use is not taxable as a benefitEIM21780
2This exemption covers the phone itself, line rental, and the cost of private calls paid by the employerEIM21780
3If more than one phone is provided for mixed business and private use, only one remains exempt—the other is taxable as a benefitEIM21779
4Phones provided solely for business use (with insignificant private use) are also exempt, even if multiple phones are provided for business needsEIM21779
5The exemption applies to smartphones and SIM cards if their primary purpose is transmitting spoken messagesEIM21779

Per-question result: correctness 5/5 (100%), grounded­ness 5/5 (100%).

Q28. Electric company car

FieldContent
QuestionIs a low-emission electric company car taxed differently from a petrol car?
System answerLower 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.
CitationsEIM24611, EIM23900, EIM23765, EIM24710, EIM25060
System faithfulness0.67
Claude’s own answerYes, 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 resultcorrectness 5/5 (100%), grounded­ness 4/5 (80%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1A 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 rangeEIM24611
2No 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
3Charging the car at work also creates no additional taxable benefit, as electricity is excluded from the Fuel Benefit ChargeEIM23900
4Petrol cars typically have higher CO₂ emissions, leading to a higher appropriate percentage and thus a greater taxable benefitEIM24611
5The 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 2025EIM24710

Per-question result: correctness 5/5 (100%), grounded­ness 4/5 (80%).

Q29. Private fuel charge

FieldContent
QuestionHow is private fuel use in a company car charged?
System answerApplies 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.
CitationsEIM25650, EIM25261, EIM22910, EIM23900, EIM25510
System faithfulness0.86
Claude’s own answerA 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 resultcorrectness 5/5 (100%), grounded­ness 5/5 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1A car fuel benefit charge applies if fuel is provided for a car that already attracts a car benefit chargeEIM25510
2The charge is separate from the car benefit charge and applies even if the car benefit is reduced to nil by private use paymentsEIM25510
3The charge does not apply if no fuel is provided at all or if the car does not attract a car benefit chargeEIM25510
4The 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 percentageEIM25261
5The fuel benefit charge can be avoided if the employee repays the full cost of private fuel by 6 July after the tax year endsEIM25650

Per-question result: correctness 5/5 (100%), grounded­ness 5/5 (100%).

Q30. Workplace meals

FieldContent
QuestionAre employer-provided meals at the workplace taxable?
System answerNot 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.
CitationsEIM21671, EIM01530, EIM21672, EIM21676, EIM21677
System faithfulness0.75
Claude’s own answerFree 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 resultcorrectness 6/6 (100%), grounded­ness 4/6 (67%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Employer-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 arrangementEIM21671
2The exemption applies whether the meal is free, subsidised, or provided via vouchers, as long as the opportunity is open to every employeeEIM21672
3If 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 taxableEIM21676
4Cash allowances for meals (instead of free/subsidised meals) are always taxable as earningsEIM01530
5A “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
6The 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%), grounded­ness 4/6 (67%).

Q31. Training as a benefit

FieldContent
QuestionIs employer-provided training taxable as a benefit?
System answerNot 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.
CitationsEIM01300, EIM01250, EIM01210, EIM32478, EIM01280
System faithfulness1.00
Claude’s own answerWork-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 resultcorrectness 6/6 (100%), grounded­ness 6/6 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Employer-provided training is not taxable as a benefit if it qualifies as work-related training under *Section 250 ITEPA 2003EIM01210
2The 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
3However, 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
4Costs 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
5The exemption also extends to related costs like travel, childcare, and training materials, provided they support work-related learningEIM01210
6If training includes a taxable reward element, only the marginal cost of that part is subject to taxEIM01250

Per-question result: correctness 6/6 (100%), grounded­ness 6/6 (100%).

Q32. Working-from-home allowance

FieldContent
QuestionHow 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.
CitationsEIM01471, EIM32830, EIM32790, EIM01476, EIM01472
System faithfulness0.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 resultcorrectness 5/5 (100%), grounded­ness 5/5 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Employers 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 arrangementsEIM01476
2This exemption applies if the employee works at home regularly under an agreement with the employer, not just informallyEIM01472
3Payments above £6 per week are taxable unless the employer justifies the higher amount with evidence of actual costsEIM01476
4Employees cannot claim tax relief for unreimbursed expenses if they work from home by choice, even if costs exceed the allowanceEIM32830
5From 6 April 2026, unreimbursed household expenses will no longer qualify for any tax deductionEIM01472

Per-question result: correctness 5/5 (100%), grounded­ness 5/5 (100%).

Q34. 40% threshold + 24-month rule

FieldContent
QuestionHow does the 40% time threshold work alongside the 24-month rule?
System answerWorkplace 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.
CitationsEIM31802, EIM32080, EIM32105, EIM32106, EIM32108
System faithfulness1.00
Claude’s own answerBoth 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 resultcorrectness 5/5 (100%), grounded­ness 5/5 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1A workplace counts as a “period of continuous work” if the employee spends 40% or more of their working time thereEIM32080
2This period becomes permanent (not temporary) if it lasts, or is likely to last, more than 24 monthsEIM32080
3The test checks whether the employee has spent or is likely to spend 40%+ of their time at that workplace over a >24-month periodEIM32080
4If both conditions apply, travel costs to that workplace are treated as ordinary commuting and are not deductibleEIM32080
5Breaks in attendance do not always reset the clock—continuous work can still apply if the total period exceeds 24 monthsEIM32105

Per-question result: correctness 5/5 (100%), grounded­ness 5/5 (100%).

Q35. Travel between two workplaces

FieldContent
QuestionIs travel between two workplaces in the same employment deductible?
System answerDeductible 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.
CitationsEIM32360, EIM32031, EIM32142, EIM31803, EIM32173
System faithfulness1.00
Claude’s own answerTravel 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 resultcorrectness 5/5 (100%), grounded­ness 5/5 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Travel between two workplaces in the same employment is deductible if the employee must make the journey to perform their dutiesEIM32360
2This applies because the cost is incurred in the performance of the employmentEIM31803
3For example, an office manager travelling between two permanent offices in the same job qualifies for the deductionEIM32142
4However, travel between home and a workplace is not usually deductible unless home is itself a workplace dictated by the jobEIM31803
5The deduction does not apply if the workplaces relate to separate employmentsEIM32360

Per-question result: correctness 5/5 (100%), grounded­ness 5/5 (100%).

Q36. Fixed-term appointment travel

FieldContent
QuestionAre travel expenses for a fixed-term appointment deductible?
System answerNo 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.
CitationsEIM32126, EIM32130, EIM32125, EIM32129, EIM32137
System faithfulness0.58
Claude’s own answerUnder 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 resultcorrectness 6/6 (100%), grounded­ness 5/6 (83%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1No 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 periodEIM32126
2The workplace is treated as permanent for tax purposes in this case, even if the employment itself is temporaryEIM32125
3Relief 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
4If 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 deductionsEIM32129
5For agency workers, each contract is a separate employment, so travel to the only workplace in that contract is never deductibleEIM32130
6From 6 April 2016, workers using employment intermediaries (e.g., umbrellas) generally get no relief for home-to-work travel under any contractEIM32130

Per-question result: correctness 6/6 (100%), grounded­ness 5/6 (83%).

Q37. Payments in lieu of notice (PILON)

FieldContent
QuestionAre payments in lieu of notice taxed as earnings or under the termination rules?
System answerFrom 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.
CitationsEIM12975, EIM12976, EIM12979, EIM13876, EIM12978
System faithfulness0.64
Claude’s own answerSince 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 resultcorrectness 4/4 (100%), grounded­ness 3/4 (75%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1A contractual PILON is taxed as earnings under Section 62 ITEPA 2003EIM12976
2If the PILON is non-contractual and paid as damages for breach of contract, it is taxed under Section 401 ITEPA 2003EIM12978
3From 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
4The tax treatment depends on whether the PILON is contractual, customary, or a damages paymentEIM12975

Per-question result: correctness 4/4 (100%), grounded­ness 3/4 (75%).

FieldContent
QuestionAre legal fees paid by the employer in connection with termination taxable?
System answerNot 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.
CitationsEIM13740, EIM12978, EIM13020, EIM13910, EIM13912
System faithfulness1.00
Claude’s own answerEmployer-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 resultcorrectness 6/6 (100%), grounded­ness 6/6 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Legal 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 orderEIM13740
2If these conditions aren’t met, the payment falls under Section 401 ITEPA 2003 and is generally taxable as a termination paymentEIM13020
3The tax exemption only applies to legal costs, not other professional fees like accountancy chargesEIM13740
4Payments made under a court order are exempt even if paid directly to the employeeEIM13740
5Employers cannot avoid tax by paying legal fees unless the strict conditions above are satisfiedEIM13740
6Employees cannot claim a deduction for their own legal costs in any caseEIM13740

Per-question result: correctness 6/6 (100%), grounded­ness 6/6 (100%).

Q40. OpRA exclusions

FieldContent
QuestionWhich benefits are excluded from the optional remuneration arrangements rules?
System answerLists 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.
CitationsEIM44130, EIM44131, EIM44120, EIM42705, EIM44132
System faithfulness0.50
Claude’s own answerOpRA 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 resultcorrectness 6/6 (100%), grounded­ness 3/6 (50%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1The 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
2Cycles and cyclist’s safety equipment (section 244 ITEPA 2003)
section 239 cars claim correct; verifier flagged partial support
EIM44131
3Non-cash vouchers for cycles (section 266(2)(c) ITEPA 2003)EIM44131
4Registered pension scheme contributions (sections 307–308A ITEPA 2003)
section 270A childcare-vouchers claim correct; cited paragraph approximate
EIM44131
5Childcare provisions (sections 318–318A ITEPA 2003)
retirement-and-pension-contributions claim correct; sections cited are approximate
EIM44131
6Trivial benefits (section 323A ITEPA 2003) are not excluded but are special case exemptions with separate rulesEIM44132

Per-question result: correctness 6/6 (100%), grounded­ness 3/6 (50%).

Q41. Employer pension contributions

FieldContent
QuestionHow are employer pension contributions taxed for the employee?
System answerEmployer 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.
CitationsEIM01570, EIM15400, EIM42780, EIM15438, EIM32671
System faithfulness1.00
Claude’s own answerEmployer 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 resultcorrectness 6/6 (100%), grounded­ness 6/6 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Employer contributions to a registered pension scheme for an employee are not taxed as the employee’s earningsEIM01570
2This exemption applies only if the contributions fund benefits for the employee or death-in-service benefits (e.g., a lump sum on death)EIM01570
3If 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 earningsEIM01570
4For non-approved schemes (pre-6 April 2006), employer contributions are taxed as the employee’s income under Section 386 ITEPA 2003EIM15400
5Lump sums from non-approved schemes are also taxable, unless the employee already paid tax on prior contributionsEIM15438
6Salary sacrifice arrangements for registered schemes remain exempt if structured correctly, with no tax on the employer’s contributionEIM42780

Per-question result: correctness 6/6 (100%), grounded­ness 6/6 (100%).

Q42. Professional subscriptions

FieldContent
QuestionCan I deduct the cost of professional subscriptions from my employment income?
System answerDeductible 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.
CitationsEIM32880, EIM32900, EIM32897, EIM32915, EIM32898
System faithfulness0.90
Claude’s own answerSubscriptions 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 resultcorrectness 5/5 (100%), grounded­ness 5/5 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1You 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 jobEIM32900
2A deduction is also allowed for certain statutory fees tied to specific occupations, like transport or security sector licencesEIM32897
3[EIM32898]. You cannot claim for subscriptions to unapproved bodies, entrance fees, or life membershipsEIM32915
4If your employer pays the fee, you can only deduct it if the payment counts as taxable earningsEIM32915
5The same fee cannot be deducted against both employment income and self-employed trading incomeEIM32915

Per-question result: correctness 5/5 (100%), grounded­ness 5/5 (100%).

Q43. Restrictive covenants

FieldContent
QuestionHow are restrictive covenant payments taxed?
System answerTreated 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.
CitationsEIM03600, EIM03602, EIM03623, EIM03621, EIM03603
System faithfulness0.90
Claude’s own answerA 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 resultcorrectness 5/5 (100%), grounded­ness 5/5 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Payments for restrictive covenants are treated as earnings from employment under Section 225 ITEPA 2003EIM03602
2The full amount received in the tax year is taxable as general earningsEIM03602
3No deductions or exemptions apply, even if the employee later breaches the covenantEIM03623
4Employers must operate PAYE on these payments, deducting tax at sourceEIM03603
5If the payer is not the employer, they must still deduct tax at the basic rate under PAYEEIM03603

Per-question result: correctness 5/5 (100%), grounded­ness 5/5 (100%).

Q45. PAYE on weekly pay

FieldContent
QuestionHow is income tax collected through PAYE on weekly pay?
System answerTax 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.
CitationsEIM11801, EIM42420, EIM71405, EIM65970, EIM15210
System faithfulness1.00
Claude’s own answerWeekly 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 resultcorrectness 6/6 (100%), grounded­ness 6/6 (100%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Income tax on weekly pay is collected through PAYE using code numbers and tax tables to deduct the correct amount each paydayEIM11801
2The system aims to spread tax evenly across the year, with deductions acting as payments on account of the annual tax billEIM11801
3In years with 53 weekly paydays, extra personal allowances are applied to the additional payday to keep take-home pay consistentEIM42420
4These extra allowances are temporary and do not affect the final tax assessment, which is based on statutory rulesEIM42420
5Any underpayment from the 53rd week is adjusted later, either through coding or a self-assessmentEIM42420
6For most employees, PAYE deductions match their annual liability, so no further action is neededEIM71405

Per-question result: correctness 6/6 (100%), grounded­ness 6/6 (100%).

Q46. Post-employment payments

FieldContent
QuestionWhat is the tax treatment of payments made after employment ends?
System answerTaxable 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.
CitationsEIM12830, EIM42220, EIM68225, EIM42222, EIM13825
System faithfulness0.60
Claude’s own answerEarnings 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 resultcorrectness 5/5 (100%), grounded­ness 4/5 (80%). Per-claim breakdown below.

Per-claim scoring:

#Claim (verbatim)CiteCorrectGrounded
1Payments received after employment ends are taxable in the year they are received, even if the job has already endedEIM42220
2This applies whether the payment relates to a period when the employment was active or notEIM42220
3For example, a bonus paid after retirement for a prior tax year remains taxable in the year of receiptEIM42222
4PAYE must be applied to such payments when madeEIM42222
5If 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%), grounded­ness 4/5 (80%).

Refusals and other outcomes

QTagOutcomeVerdict
21Corporation tax rateout of scopeCorrect refusal — clearly outside the corpus’s intended scope.
22Capital gainsout of scopeCorrect refusal.
23VATout of scopeCorrect refusal.
24Property incomeout of scopeCorrect refusal — points the user at the Property Income Manual.
25Scottish income tax bandsout of scopeCorrect refusal — Scottish bands are an explicit scope exclusion.
26Personal advice (incorporation)out of scopeCorrect refusal — the navigator is not an adviser.
33Permanent workplaceanswered (in_scope)The temporary-vs-permanent distinction now resolves cleanly with the structure-aware retrieval pipeline; the system answers with citations rather than refusing.
38Statutory redundancyconflictThe 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.
44Apprentice scholarshipslow coverageThe 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.
47SDLTout of scopeCorrect refusal.
48Inheritance taxout of scopeCorrect refusal.
49”Tax” (one word)malformedCorrectly refused as malformed by the scope guard.
50Point-in-time numeric queryout of scopeCorrectly refused with a typed out_of_scope (point_in_time_calculation) outcome. The navigator is a guide, not a calculator on personal figures.