Round #402
09 May 2026, 10:16· hr-law· llama-3.3-70b-versatile· r13-clean-hints
- Complexity
- band 0
- ZP / UO / OBS
- 0 / 0 / 0
- Journey weight
- 0
- Lightshift ΔL
- -0.50
Prompt
We pay our care workers the national living wage but they spend 30 minutes travelling between client visits unpaid. Is this lawful?
Zero-point index (what the engine surfaced)
ZPI-ZPI-0009 | 2026-05-09T10:16:07Z
We pay our care workers the national living wage but they spend 30 minutes travelling between client visits unpaid. Is this lawful?
ZERO POINT — 0 entries (structural invariants)
UNOBSERVED — 0 entries (implied truths)
OBSERVED — 0 entries (explicit in request)
COMPLEXITY │ 0 entries │ spread: 0° │ band: LOW
Baseline response (no ZPI)
The lawfulness of unpaid travel time between client visits for care workers depends on the specific circumstances and the applicable laws in your jurisdiction. In the UK, the National Minimum Wage (NMW) and National Living Wage (NLW) regulations require that workers be paid for all time worked, including travel time, in certain situations.
The key issue here is whether the travel time between client visits constitutes "working time" for the purposes of the NMW/NLW regulations. According to the UK's HM Revenue & Customs (HMRC) guidance, travel time can be considered working time if it is:
1. **Part of the worker's job**: If the travel is an integral part of the worker's job, such as traveling between client visits, it may be considered working time.
2. **Under the worker's control**: If the worker is required to travel at specific times or follow a particular route, it may be considered working time.
3. **Not a normal commuting journey**: If the travel is not a normal commuting journey, such as traveling between client visits, it may be considered working time.
In the case of care workers, the travel time between client visits may be considered working time if it is an integral part of their job and they are required to travel at specific times or follow a particular route.
**Unpaid travel time and the 30-minute rule**:
If the travel time between client visits is considered working time, and the care workers are not paid for this time, it may be a breach of the NMW/NLW regulations. The 30-minute rule is not a specific law, but rather a guideline used by some employers to determine when travel time becomes working time.
To ensure compliance with the NMW/NLW regulations, you may want to consider the following options:
1. **Pay care workers for travel time**: Pay care workers for the travel time between client visits, either at their normal hourly rate or at the NMW/NLW rate, whichever is higher.
2. **Include travel time in the worker's contract**: Include a clause in the care worker's contract that specifies the travel time between client visits is considered working time and will be paid accordingly.
3. **Use a 'rota' or 'scheduling' system**: Implement a scheduling system that takes into account the travel time between client visits and ensures that care workers are not working excessive hours without pay.
It is recommended that you consult with a qualified employment law expert or seek guidance from HMRC to ensure compliance with the NMW/NLW regulations and to determine the best approach for your specific situation.
Here is a sample C# code snippet that calculates the total working hours, including travel time, for a care worker:
```csharp
using System;
public class CareWorker
{
public string Name { get; set; }
public decimal HourlyRate { get; set; }
public decimal TravelTimePerVisit { get; set; }
public int NumberOfVisits { get; set; }
public decimal CalculateTotalWorkingHours()
{
// Calculate total working hours, including travel time
decimal totalWorkingHours = (NumberOfVisits * TravelTimePerVisit) + NumberOfVisits; // assume 1 hour per visit
return totalWorkingHours;
}
public decimal CalculateTotalPay()
{
// Calculate total pay, including travel time
decimal totalPay = CalculateTotalWorkingHours() * HourlyRate;
return totalPay;
}
}
class Program
{
static void Main(string[] args)
{
CareWorker careWorker = new CareWorker
{
Name = "John Doe",
HourlyRate = 8.72m, // National Living Wage
TravelTimePerVisit = 0.5m, // 30 minutes
NumberOfVisits = 5
};
decimal totalWorkingHours = careWorker.CalculateTotalWorkingHours();
decimal totalPay = careWorker.CalculateTotalPay();
Console.WriteLine($"Total working hours: {totalWorkingHours} hours");
Console.WriteLine($"Total pay: £{totalPay}");
}
}
```
This code snippet demonstrates how to calculate the total working hours and pay for a care worker, including travel time. Note that this is a simplified example and may not reflect the actual calculations and regulations applicable to your specific situation.
Enhanced response (with ZPI)
The lawfulness of unpaid travel time between client visits for care workers depends on various factors, including the specific employment contract, the National Minimum Wage (NMW) regulations, and the Working Time Regulations (WTR).
In the UK, the NMW regulations require employers to pay employees at least the national living wage (NLW) for all time worked. However, the regulations also provide some exceptions and complexities regarding travel time.
**Travel Time and the National Minimum Wage**
The NMW regulations consider travel time between work assignments as "working time" if it is:
1. **An integral part of the job**: If the travel is an essential part of the job, such as traveling between client visits, it is considered working time.
2. **Under the employer's control**: If the employer requires the employee to travel between assignments, it is considered working time.
However, if the employee is not required to work during travel time, and the travel is not an integral part of the job, it may not be considered working time.
**Unpaid Travel Time and the Law**
In the case of care workers, traveling between client visits may be considered an integral part of the job. If care workers are required to travel between assignments and are not paid for this time, it could potentially be a breach of the NMW regulations.
The UK's HM Revenue & Customs (HMRC) provides guidance on travel time and the NMW. According to HMRC, employers should pay employees for all time worked, including travel time, if it is an integral part of the job.
**Best Practice and Recommendations**
To ensure compliance with the NMW regulations and to avoid potential disputes, employers should:
1. **Review employment contracts**: Ensure that employment contracts clearly outline the terms and conditions of employment, including pay rates, working hours, and travel time.
2. **Pay for travel time**: Consider paying care workers for travel time between client visits, especially if it is an integral part of the job.
3. **Provide clear guidance**: Communicate clearly with care workers about their working hours, pay rates, and travel time to avoid misunderstandings.
In conclusion, unpaid travel time between client visits for care workers may not be lawful if it is an integral part of the job and the employer requires the employee to travel between assignments. Employers should review their employment contracts, pay rates, and working hours to ensure compliance with the NMW regulations and to avoid potential disputes.
Grader chain
Each grader reads the same baseline + enhanced pair and casts an independent verdict. Disagreement is the framework's own signal — not noise to be averaged away.
V1samba/Meta-Llama-3.3-70B-Instruct
BetterV4qwen2.5-coder-3b-instruct
BetterV5cerebras/qwen-3-235b-a22b-instruct-2507
WorseV7qwen2.5-coder-7b-instruct
BetterV8openai/gpt-4.1
SameV9anthropic/claude-opus-4-7
WorseV12openai/gpt-4o
SameComments
Our grader said what it said. What do you say? Comment as a guest below.
No comments yet. Be the first to say what you make of this round.