Round #1071
19 May 2026, 18:20· 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
Given f(x) = 2x + 3, state the inverse function f^(-1)(x). Give the inverse in explicit form.
Zero-point index (what the engine surfaced)
ZPI-ZPI-0030 | 2026-05-19T18:20:43Z
Given f(x) = 2x + 3, state the inverse function f^(-1)(x). Give the inverse in explicit form.
ZERO POINT — 3 entries (structural invariants)
● hsl(166.59, 100%, 15%) f∘f^(-1) = f^(-1)∘f = identity [contract]
● hsl(317.35, 100%, 15%) existence requires bijection (one-to-one and onto) [contract]
● hsl(256.81, 100%, 15%) graph reflection across y = x [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)
To find the inverse function f^(-1)(x), we need to swap x and y and then solve for y.
Given f(x) = 2x + 3, we can rewrite it as:
y = 2x + 3
Swap x and y:
x = 2y + 3
Now, solve for y:
x - 3 = 2y
(x - 3) / 2 = y
So, the inverse function f^(-1)(x) is:
f^(-1)(x) = (x - 3) / 2
This is the explicit form of the inverse function.
Enhanced response (with ZPI)
To find the inverse function f^(-1)(x) of f(x) = 2x + 3, we can use the following steps:
```csharp
using System;
public class Program
{
public static void Main()
{
// Define the original function
Func<double, double> f = x => 2 * x + 3;
// Define the inverse function
Func<double, double> fInverse = x => (x - 3) / 2;
// Test the inverse function
double x = 5;
double y = f(x);
Console.WriteLine($"f({x}) = {y}");
Console.WriteLine($"f^(-1)({y}) = {fInverse(y)}");
}
}
```
The inverse function f^(-1)(x) is (x - 3) / 2. This can be derived by swapping x and y in the original function, then solving for y: x = 2y + 3 → x - 3 = 2y → y = (x - 3) / 2.
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.