Round #395
09 May 2026, 10:01· hr-law· llama-3.3-70b-versatile· r13-clean-hints
- Complexity
- band 0
- ZP / UO / OBS
- 3 / 3 / 0
- Journey weight
- 510
- Lightshift ΔL
- -0.50
Prompt
What are the nine protected characteristics under the Equality Act 2010 and which ones cannot be justified under any circumstances?
Zero-point index (what the engine surfaced)
ZPI-ZPI-0002 | 2026-05-09T10:01:28Z
What are the nine protected characteristics under the Equality Act 2010 and which ones cannot be justified under any circumstances?
ZERO POINT — 3 entries (structural invariants)
● hsl(201.18, 100%, 15%) protected characteristic [contract]
● hsl(139.93, 100%, 15%) direct discrimination [contract]
● hsl(310.96, 100%, 15%) indirect discrimination [contract]
UNOBSERVED — 3 entries (implied truths)
○ hsl(240.00, 100%, 15%) victimisation [feature]
○ hsl(239.00, 100%, 15%) harassment [feature]
○ hsl(238.00, 100%, 15%) indirect discrimination [feature]
OBSERVED — 0 entries (explicit in request)
COMPLEXITY │ 6 entries │ spread: 2° │ band: LOW
Baseline response (no ZPI)
The Equality Act 2010 in the United Kingdom protects individuals from discrimination based on nine protected characteristics. These characteristics are:
1. **Age**: This refers to a person's age or age group.
2. **Disability**: This includes physical or mental impairments that have a substantial and long-term adverse effect on a person's ability to carry out normal day-to-day activities.
3. **Gender reassignment**: This refers to a person who is proposing to undergo, is undergoing, or has undergone a process (or part of a process) for the purpose of reassigning their sex by changing physiological or other attributes of sex.
4. **Marriage and civil partnership**: This protects married people, people in civil partnerships, and people who are not married or in a civil partnership from discrimination.
5. **Pregnancy and maternity**: This protects women who are pregnant or on maternity leave from discrimination.
6. **Race**: This includes a person's color, nationality, ethnic or national origins.
7. **Religion or belief**: This includes a person's religion or lack of religion, as well as philosophical beliefs.
8. **Sex**: This refers to a person's biological sex, whether male or female.
9. **Sexual orientation**: This refers to a person's sexual orientation towards people of the same sex, the opposite sex, or both.
Under the Equality Act 2010, **all** forms of direct discrimination based on these protected characteristics **cannot be justified under any circumstances**, except in very limited circumstances where there are specific exemptions. However, indirect discrimination can sometimes be justified if it is a proportionate means of achieving a legitimate aim.
It's worth noting that harassment, victimization, and direct discrimination are generally not justifiable under any circumstances. However, in some cases, indirect discrimination can be justified if the organization can show that the discriminatory practice is a proportionate means of achieving a legitimate aim.
Enhanced response (with ZPI)
```csharp
using System;
using System.Collections.Generic;
public class ProtectedCharacteristic
{
public string Name { get; set; }
public bool CanBeJustified { get; set; }
public ProtectedCharacteristic(string name, bool canBeJustified)
{
Name = name;
CanBeJustified = canBeJustified;
}
}
public class EqualityAct2010
{
private List<ProtectedCharacteristic> protectedCharacteristics;
public EqualityAct2010()
{
protectedCharacteristics = new List<ProtectedCharacteristic>
{
new ProtectedCharacteristic("Age", true),
new ProtectedCharacteristic("Disability", false),
new ProtectedCharacteristic("Gender reassignment", false),
new ProtectedCharacteristic("Marriage and civil partnership", true),
new ProtectedCharacteristic("Pregnancy and maternity", false),
new ProtectedCharacteristic("Race", false),
new ProtectedCharacteristic("Religion or belief", true),
new ProtectedCharacteristic("Sex", false),
new ProtectedCharacteristic("Sexual orientation", false)
};
}
public List<ProtectedCharacteristic> GetProtectedCharacteristics()
{
return protectedCharacteristics;
}
public List<ProtectedCharacteristic> GetUnjustifiableCharacteristics()
{
return protectedCharacteristics.FindAll(pc => !pc.CanBeJustified);
}
}
class Program
{
static void Main(string[] args)
{
var equalityAct2010 = new EqualityAct2010();
var protectedCharacteristics = equalityAct2010.GetProtectedCharacteristics();
var unjustifiableCharacteristics = equalityAct2010.GetUnjustifiableCharacteristics();
Console.WriteLine("Protected Characteristics under the Equality Act 2010:");
foreach (var characteristic in protectedCharacteristics)
{
Console.WriteLine(characteristic.Name);
}
Console.WriteLine("\nProtected Characteristics that cannot be justified under any circumstances:");
foreach (var characteristic in unjustifiableCharacteristics)
{
Console.WriteLine(characteristic.Name);
}
}
}
```
This C# code defines a `ProtectedCharacteristic` class to represent each protected characteristic under the Equality Act 2010. The `EqualityAct2010` class contains a list of these characteristics and provides methods to retrieve all protected characteristics and those that cannot be justified under any circumstances.
In the `Main` method, an instance of `EqualityAct2010` is created, and the protected characteristics and unjustifiable characteristics are retrieved and printed to the console.
The nine protected characteristics under the Equality Act 2010 are:
1. Age
2. Disability
3. Gender reassignment
4. Marriage and civil partnership
5. Pregnancy and maternity
6. Race
7. Religion or belief
8. Sex
9. Sexual orientation
The following characteristics cannot be justified under any circumstances:
1. Disability
2. Gender reassignment
3. Pregnancy and maternity
4. Race
5. Sex
6. Sexual orientation
These characteristics are protected from direct discrimination, and any discrimination against them is considered unjustifiable.
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
BetterV7qwen2.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.