Round #1086
21 May 2026, 09:37· math· Meta-Llama-3.3-70B-Instruct· r13-clean-hints
- Complexity
- band 0
- ZP / UO / OBS
- 6 / 0 / 2
- Journey weight
- 610
- Lightshift ΔL
- —
Prompt
Compute the greatest common divisor of 360 and 84 using the Euclidean algorithm. Give the exact integer.
Zero-point index (what the engine surfaced)
ZPI-ZPI-0015 | 2026-05-21T09:37:36Z
Compute the greatest common divisor of 360 and 84 using the Euclidean algorithm. Give the exact integer.
ZERO POINT — 6 entries (structural invariants)
● hsl(73.72, 100%, 15%) a | b iff ∃k: b = ak [contract]
● hsl(176.20, 100%, 15%) division algorithm: b = aq + r, 0 ≤ r < a [contract]
● hsl(264.57, 100%, 15%) divisibility rules (2, 3, 5, 9, 11) [contract]
● hsl(255.20, 100%, 15%) gcd(a, b) = gcd(b, a mod b) [contract]
● hsl(172.02, 100%, 15%) Bezout's identity ax + by = gcd(a,b) [contract]
● hsl(206.98, 100%, 15%) coprime: gcd(a,b) = 1 [contract]
UNOBSERVED — 0 entries (implied truths)
OBSERVED — 2 entries (explicit in request)
◉ hsl(85.13, 100%, 50%) using [feature]
◉ hsl(234.87, 100%, 50%) using [feature]
COMPLEXITY │ 8 entries │ spread: 150° │ band: LOW
Baseline response (no ZPI)
## Step 1: Apply the Euclidean algorithm to find the GCD of 360 and 84
To find the greatest common divisor (GCD) of 360 and 84 using the Euclidean algorithm, we start by dividing the larger number by the smaller number and then continue with the remainder, repeatedly applying the division until we reach a remainder of 0. The last non-zero remainder will be the GCD.
## Step 2: Perform the first division
Divide 360 by 84 to get the quotient and remainder. 360 divided by 84 equals 4 with a remainder of 24.
## Step 3: Perform the second division
Next, divide 84 by 24. 84 divided by 24 equals 3 with a remainder of 12.
## Step 4: Perform the third division
Then, divide 24 by 12. 24 divided by 12 equals 2 with a remainder of 0.
## Step 5: Identify the GCD
Since the last non-zero remainder before reaching 0 is 12, the greatest common divisor of 360 and 84 is 12.
The final answer is: $\boxed{12}$
Enhanced response (with ZPI)
```csharp
using System;
public class Program
{
public static int Gcd(int a, int b)
{
while (b != 0)
{
int temp = b;
b = a % b;
a = temp;
}
return a;
}
public static void Main()
{
Console.WriteLine(Gcd(360, 84));
}
}
```
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
BetterV12openai/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.