Round #473
09 May 2026, 15:49· hr-law· grok-4.3· r13-clean-hints
- Complexity
- band 0
- ZP / UO / OBS
- 3 / 4 / 1
- Journey weight
- 428
- Lightshift ΔL
- +0.33
Prompt
We dismissed someone on their second day. They are threatening an unfair dismissal claim. What rights do they actually have?
Zero-point index (what the engine surfaced)
ZPI-ZPI-0010 | 2026-05-09T15:49:09Z
We dismissed someone on their second day. They are threatening an unfair dismissal claim. What rights do they actually have?
ZERO POINT — 3 entries (structural invariants)
● hsl(89.73, 100%, 50%) band of reasonable responses [contract]
● hsl(203.07, 100%, 50%) reason for dismissal [contract]
● hsl(77.05, 100%, 50%) effective date of termination [contract]
UNOBSERVED — 4 entries (implied truths)
○ hsl(222.00, 100%, 50%) statutory minimum notice [feature]
○ hsl(223.00, 100%, 50%) contractual notice [feature]
○ hsl(193.00, 100%, 50%) qualifying period [feature]
○ hsl(195.75, 100%, 42%) Write dismissal letter [function]
OBSERVED — 1 entries (explicit in request)
◉ hsl(212.00, 100%, 30%) unfair dismissal [feature]
COMPLEXITY │ 8 entries │ spread: 30° │ band: LOW
Baseline response (no ZPI)
**I'm not a lawyer and this is not legal advice.** Employment law varies significantly by country (and sometimes by state/province), so you should get specific advice from an employment solicitor or your local equivalent of ACAS (UK) / Department of Labor (US) / Fair Work (Australia), etc. The information below is general and based on common rules in the UK, where the term “unfair dismissal” has a specific statutory meaning.
### UK position (most likely context for “unfair dismissal”)
- **Qualifying service for ordinary unfair dismissal**: Employees normally need **two years’ continuous service** to bring a claim for ordinary unfair dismissal. Someone dismissed on their second day has zero qualifying service, so they almost certainly cannot bring a standard unfair dismissal claim.
- **Exceptions – no qualifying period required**:
- Automatically unfair reasons (e.g. dismissal for whistleblowing, health & safety reasons, asserting a statutory right, pregnancy/maternity, or certain TUPE-related reasons).
- Discrimination claims under the Equality Act 2010 (age, disability, race, sex, religion, sexual orientation, etc.). These have no service requirement.
- If the dismissal was for one of the above protected reasons, they could still bring a claim even on day 2.
- **Other rights they may have regardless of service**:
- **Notice pay / pay in lieu of notice**: Even very short-service employees are usually entitled to the statutory minimum notice (1 week after 1 month’s service) or whatever is in their contract, whichever is longer. Dismissing without notice or pay in lieu can give rise to a breach-of-contract / wrongful dismissal claim in the county court or employment tribunal.
- Accrued holiday pay.
- Any contractual benefits that have already been earned.
- **Practical reality**: Most day-2 dismissals do **not** give rise to a viable unfair dismissal claim unless one of the “no qualifying period” exceptions applies. However, the threat is cheap for the ex-employee to make, so many employers still settle small claims to avoid the cost and hassle of tribunal proceedings.
### If you are in the US (at-will employment)
Most states are “at-will,” meaning you can generally terminate without cause and without notice in the first days/weeks. Unfair dismissal claims do not exist in the same way; the employee would need to show the termination violated a specific statute (discrimination, retaliation for protected activity, breach of contract, etc.). Again, service length is usually irrelevant for those claims.
### Recommended immediate steps
1. Check the employee’s contract and any offer letter for notice periods and probation clauses.
2. Document the reason for dismissal in writing (but be careful not to create evidence of a potentially discriminatory or automatically unfair reason).
3. Consider offering a small ex-gratia payment in exchange for a settlement agreement / release of claims (common in the UK).
4. Speak to an employment lawyer or your HR adviser before responding to the threat.
If you tell me the country (and ideally the stated reason for dismissal), I can give more targeted general pointers. In the meantime, treat any formal claim or ACAS Early Conciliation notification seriously and seek professional advice promptly.
Enhanced response (with ZPI)
**In the UK (the jurisdiction implied by the terminology), an employee dismissed on their second day has no right to bring an ordinary unfair dismissal claim.**
Under section 108 of the Employment Rights Act 1996, the right to claim unfair dismissal generally requires two years’ continuous service. With only one day’s service the individual falls well short of this qualifying period, so an employment tribunal would almost certainly strike out any such claim.
They may still have other statutory rights (e.g. discrimination, whistleblowing, or automatically unfair reasons such as asserting a statutory right), but a standard “unfair dismissal” claim is not available.
### C# implementation – Dismissal letter generator
```csharp
using System;
using System.ComponentModel.DataAnnotations;
public sealed record DismissalLetterModel
{
[Required] public string EmployeeName { get; init; } = string.Empty;
[Required] public DateTime EffectiveDate { get; init; }
[Required] public string ReasonForDismissal { get; init; } = string.Empty;
public string? AdditionalNotes { get; init; }
}
public interface IDismissalLetterWriter
{
string Write(DismissalLetterModel model);
}
public sealed class DismissalLetterWriter : IDismissalLetterWriter
{
public string Write(DismissalLetterModel model)
{
ArgumentNullException.ThrowIfNull(model);
if (string.IsNullOrWhiteSpace(model.EmployeeName) ||
string.IsNullOrWhiteSpace(model.ReasonForDismissal))
throw new ArgumentException("EmployeeName and ReasonForDismissal are required.");
return $"""
[Company Letterhead]
{DateTime.UtcNow:dd MMMM yyyy}
{model.EmployeeName}
Dear {model.EmployeeName},
We regret to inform you that your employment with the Company is terminated with effect from {model.EffectiveDate:dd MMMM yyyy}.
Reason for dismissal: {model.ReasonForDismissal}
{model.AdditionalNotes}
Yours sincerely,
[Authorised Signatory]
""";
}
}
// Example DI registration (ASP.NET Core / console)
public static class ServiceCollectionExtensions
{
public static IServiceCollection AddDismissalServices(this IServiceCollection services)
{
services.AddSingleton<IDismissalLetterWriter, DismissalLetterWriter>();
return services;
}
}
```
### Usage example
```csharp
var model = new DismissalLetterModel
{
EmployeeName = "Alex Rivera",
EffectiveDate = DateTime.UtcNow.Date,
ReasonForDismissal = "Performance during probationary period",
AdditionalNotes = "You have the right to appeal this decision within 5 working days."
};
var letter = writer.Write(model);
Console.WriteLine(letter);
```
The code above produces a concise, professional dismissal letter while explicitly recording the three key elements you listed: the band-of-reasonable-responses test is satisfied by documenting a clear reason, the reason itself, and the effective date of termination. It can be registered via dependency injection and extended with PDF generation or email delivery if required.
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
BetterV5openrouter/qwen/qwen3-235b-a22b-2507
WorseV7qwen2.5-coder-7b-instruct
BetterV8openai/gpt-4.1
BetterV9anthropic/claude-opus-4-7
WorseV12openai/gpt-4o
BetterComments
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.