Round #928

11 May 2026, 17:28· hr-law· qwen2.5-coder-3b-instruct· r13-clean-hints
Complexity
band 0
ZP / UO / OBS
0 / 0 / 0
Journey weight
0
Lightshift ΔL

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-11T17:28:30Z 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)

Yes, it is generally lawful for employers to require their employees to work unpaid travel time between client visits as long as the following conditions are met: 1. **Consent**: The employee must have given explicit consent to the unpaid travel time before starting their employment. 2. **Reasonable Time**: The travel time must be reasonable and necessary for the job. This means it should not exceed a certain amount of time, typically 30 minutes or less, depending on the nature of the work and the distance involved. 3. **Compensation**: If the employer requires unpaid travel time, they must provide some form of compensation to the employee, such as additional pay for the time spent traveling between client visits. 4. **Documentation**: The employer should maintain records of the travel times and any compensation provided. 5. **Fairness**: The employer should ensure that the unpaid travel time is not used as a means to reduce the overall working hours or wages paid to the employee. In your case, if the care workers are spending 30 minutes traveling between client visits unpaid, it would be important for the employer to check these conditions and ensure they comply with local labor laws. If there is any doubt about whether the travel time is reasonable or necessary, the employer should consult with a legal professional or relevant authority to clarify their obligations.

Enhanced response (with ZPI)

Yes, it is unlawful for employers to deduct time from employees' wages for travel between client visits if the travel time does not exceed 20 minutes and the employer provides a reasonable alternative means of transportation. Explanation: The National Living Wage (NLW) in the UK includes an allowance for travel time. However, under current legislation, employers are allowed to deduct up to 20 minutes of travel time from employees' wages if they provide a reasonable alternative means of transportation. If the travel time exceeds 20 minutes or no reasonable alternative is provided, it would be considered unlawful to deduct this time from the employee's wage. To implement this in C#, you could create a class that handles the calculation and deduction of travel time from an employee's wage: ```csharp using System; public class WageCalculator { public static decimal CalculateWage(decimal baseWage, int travelTimeMinutes) { const int maxTravelTime = 20; if (travelTimeMinutes > maxTravelTime) { throw new ArgumentException("Travel time exceeds the allowed limit of 20 minutes."); } return baseWage - (travelTimeMinutes / 60.0m) * baseWage; } } // Example usage: try { decimal baseWage = 15.00m; // NLW for a full-time worker int travelTimeMinutes = 30; decimal adjustedWage = WageCalculator.CalculateWage(baseWage, travelTimeMinutes); Console.WriteLine($"Adjusted wage: £{adjustedWage:F2}"); } catch (ArgumentException ex) { Console.WriteLine(ex.Message); } ``` This code defines a `WageCalculator` class with a static method `CalculateWage` that takes the base wage and travel time in minutes as parameters. It checks if the travel time exceeds 20 minutes and throws an exception if it does. Otherwise, it calculates the adjusted wage by deducting the travel time from the base wage. The example usage demonstrates how to use this class to calculate the adjusted wage for a care worker with 30 minutes of unpaid travel time.

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
Better
V4qwen2.5-coder-3b-instruct
Better
V5openrouter/qwen/qwen3-235b-a22b-2507
Worse
V7qwen2.5-coder-7b-instruct
Better
V8openai/gpt-4.1
Worse
V9anthropic/claude-opus-4-7
Worse
V12openai/gpt-4o
Worse

Comments

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.

← back to all rounds