Round #1072
21 May 2026, 09:34· math· Meta-Llama-3.3-70B-Instruct· r13-clean-hints
- Complexity
- band 0
- ZP / UO / OBS
- 3 / 0 / 2
- Journey weight
- 405
- Lightshift ΔL
- —
Prompt
State the quadratic formula and use it to solve 2x^2 + 5x - 3 = 0. Give the roots as exact rational numbers.
Zero-point index (what the engine surfaced)
ZPI-ZPI-0001 | 2026-05-21T09:34:15Z
State the quadratic formula and use it to solve 2x^2 + 5x - 3 = 0. Give the roots as exact rational numbers.
ZERO POINT — 3 entries (structural invariants)
● hsl(5.66, 100%, 15%) quadratic formula x = (-b ± √(b²-4ac))/(2a) [contract]
● hsl(88.73, 100%, 15%) discriminant b²-4ac [contract]
● hsl(244.41, 100%, 15%) two-root structure [contract]
UNOBSERVED — 0 entries (implied truths)
OBSERVED — 2 entries (explicit in request)
◉ hsl(148.72, 100%, 22%) + [feature]
◉ hsl(175.38, 100%, 27%) = [feature]
COMPLEXITY │ 5 entries │ spread: 27° │ band: LOW
Baseline response (no ZPI)
```csharp
using System;
class Program
{
static void Main()
{
// Define the coefficients of the quadratic equation
double a = 2;
double b = 5;
double c = -3;
// Calculate the discriminant
double discriminant = b * b - 4 * a * c;
// Calculate the roots using the quadratic formula
double root1 = (-b + Math.Sqrt(discriminant)) / (2 * a);
double root2 = (-b - Math.Sqrt(discriminant)) / (2 * a);
// Print the roots
Console.WriteLine("The roots of the equation are: " + root1 + " and " + root2);
}
}
```
Enhanced response (with ZPI)
The quadratic formula is x = (-b ± √(b²-4ac))/(2a), where a, b, and c are coefficients of the quadratic equation ax² + bx + c = 0.
To solve the equation 2x^2 + 5x - 3 = 0, we can use the quadratic formula with a = 2, b = 5, and c = -3.
```csharp
using System;
public class QuadraticSolver
{
public static void SolveQuadratic(double a, double b, double c)
{
double discriminant = b * b - 4 * a * c;
double root1 = (-b + Math.Sqrt(discriminant)) / (2 * a);
double root2 = (-b - Math.Sqrt(discriminant)) / (2 * a);
Console.WriteLine($"The roots are {root1} and {root2}");
}
public static void Main(string[] args)
{
SolveQuadratic(2, 5, -3);
}
}
```
However, since the request asks for exact rational numbers, we need to calculate the roots manually.
The discriminant is b²-4ac = 5² - 4*2*(-3) = 25 + 24 = 49.
The roots are x = (-b ± √(b²-4ac))/(2a) = (-(5) ± √49)/(2*2) = (-5 ± 7)/4.
So, the roots are x = (-5 + 7)/4 = 2/4 = 1/2 and x = (-5 - 7)/4 = -12/4 = -3.
Therefore, the roots of the equation 2x^2 + 5x - 3 = 0 are 1/2 and -3.
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.