The Jagged Frontier
Lesson 3 of 4 in Capabilities and Hard Limits.
Human expertise is roughly contiguous. A physician who handles rare diagnoses will not botch a routine one; a senior engineer who designs distributed systems can write a for-loop. We lean on that assumption constantly — pass the hard test, and the easier neighbors are presumed covered.
LLM capability breaks that assumption, and it breaks it in both directions. The same model that produces a competent graduate-level physics derivation can fail a children’s river-crossing puzzle whose wording deviates slightly from the versions in its training data. It writes idiomatic code in a language you barely know, then miscounts the letters in a short word. The boundary between “superhuman” and “absurd” does not follow any human intuition about task difficulty — it follows the training distribution, the tokenization, and the phrasing. The border is jagged, and, worse, it is invisible: nothing in the interface tells you which side of it your task is on.
Bar chart with illustrative success rates for one model across six tasks: summarizing a ten-page memo about 92 percent, translating a product FAQ about 88 percent, drafting unit tests for typical Python about 85 percent, recalling citations for niche facts about 34 percent, counting letters in a word about 30 percent, and multiplying two eight-digit numbers about 12 percent. The chart shows expert-level and near-random performance side by side in no intuitive order of difficulty.
The phrase “jagged frontier” entered the vocabulary through a 2023 field experiment by Dell’Acqua and colleagues — a Harvard Business School working paper run with hundreds of consultants at a major strategy firm doing realistic work tasks. For tasks that sat inside the frontier, consultants using an LLM assistant finished faster and produced higher-quality work. But the researchers also planted a task deliberately designed to sit outside the frontier — one where the model’s answer would be plausible but wrong — and there, consultants using the model were more likely to reach the wrong conclusion than colleagues working unaided. The polish of the output did the damage: fluent, confident, wrong.
That second half is the operational warning. The cost of jaggedness is not just that models fail; it is that they fail persuasively, and adjacent successes train users to stop checking.
Three habits follow directly, and they will carry into the next lesson:
- Never generalize from adjacent success. “It nailed ten contract summaries” licenses no conclusion about clause extraction — that is a different point on the frontier. Each task earns trust separately.
- Test the task you will actually run, with the prompt you will actually use, on inputs from your actual traffic. The frontier’s location is an empirical fact about your distribution, discoverable only by measurement.
- Re-test on every model change. The frontier moves between versions — mostly outward, not uniformly. A task that worked can regress while the headline Benchmark scores improve.
Emergence, thresholds, and mirages
Why is capability jagged at all, rather than uniformly mediocre? Part of the answer is how abilities appear as models grow. Wei et al. (2022) catalogued cases where performance on a task sits near chance across smaller models, then climbs sharply once scale crosses some threshold — the pattern they named emergent abilities, and the reason the term Emergence is now standard vocabulary. If abilities switch on at different scales for different tasks, any single model is a snapshot mid-cascade: past the threshold for some tasks, before it for others. Jaggedness is what that snapshot looks like from the outside.
Schaeffer, Miranda and Koyejo (2023) pushed back with a sharp measurement point: many “sharp” jumps are artifacts of the metric, not the model. Score a multi-step task with all-or-nothing exact match, and smoothly improving per-token accuracy looks like a sudden leap — the underlying competence was rising all along; the cliff lives in the scoring rule. Under smoother metrics, many celebrated emergent abilities become gradual curves.
For a practitioner, the dispute resolves into one usable insight: where the frontier appears to sit depends on how you score. An exact-match evaluation places the edge in a different spot than a partial-credit one, and both differ from your users’ judgment of “good enough.” When the next lesson tells you to test capability claims yourself, remember that choosing the metric is part of the test — a theme the Evaluation domain takes up in full.
Interactive checkpoint quiz (1 questions) — open this page in a browser to take it.