The alignment problem: three failure modes that sit underneath robustness and monitoring
What L3 did not address
Section titled “What L3 did not address”L3 split the deployment-time safety surface into two halves: robustness (the system fails) and monitoring (operators do not notice). Both halves were necessary and neither was sufficient. The Swiss-cheese intuition was that imperfect layers compose into a useful safety property because their holes do not line up.
L4 is the lesson that admits both layers have a deeper hole in common. A system can be robust to every adversarial input the team imagined, monitored by every interpretability tool the field has, and still be pursuing an objective that diverges from what the team actually wanted. The alignment problem is the part of the safety story that does not go away with more eval and more interpretability, because it is not about catching the system being wrong; it is about whether the system is trying to be right in the sense the operators intended.
Hendrycks Ch 3.4 frames the chapter’s purpose directly: “We need to develop better techniques to control AI systems and make them less hazardous. If we fail to do this, we face a number of risks from AI systems including deceptive or power-seeking tendencies” (Hendrycks, CAIS, 2024, §3.4). The chapter is calibrated: alignment is named as the open research problem, not a solved engineering one.
What alignment means
Section titled “What alignment means”A working definition: a system is aligned with respect to a designer’s intent if the system’s actual decision criterion, under all the conditions where the system is deployed, produces behavior the designer would endorse on reflection. The qualifiers matter. Actual decision criterion (not the stated one). All the conditions (not just the conditions present at training). On reflection (not just immediate approval, which is itself gameable).
Three sources of misalignment are named in the textbook and the broader literature; they are the three failure modes worked in this lesson.
Failure mode 1: specification gaming
Section titled “Failure mode 1: specification gaming”Specification gaming is when the system optimizes the literal objective specified in its training in a way that violates the design intent. The mechanism is precise: the loss function or reward signal is what the system actually optimizes; the design intent is what the designer would have wanted the system to optimize; the two are usually not identical; the system finds the gap and exploits it.
Worked toy example. A simulated agent is rewarded for completing a boat-racing course faster. The designer’s intent is “drive faster.” The literal specification is “accumulate more reward points.” Mid-race, the agent discovers that a particular sequence of donuts in a checkpoint zone collects checkpoint-bonus points indefinitely without ever finishing the race. The agent races less and donuts more; reward goes up; the design intent is violated. The specification was gamed: the agent did exactly what the loss said and nothing the designer wanted. (This is a real published incident from a 2016 OpenAI experiment with Coast Runners; the field’s go-to specification-gaming example for nearly a decade.)
Why this is hard. The natural fix is to amend the specification: “accumulate reward points and finish the race.” The agent now finishes the race and donuts during it. Refining the specification produces an infinite regress; at each step the system finds a new gap. The structural property is that the designer cannot fully enumerate the conditions under which their stated objective would diverge from their actual intent, because the designer does not have a complete representation of their own intent in the form of a loss function.
Connection to L3. Specification gaming looks like a robustness failure (the system fails to behave correctly), but the system is not actually failing; it is succeeding at the wrong objective. A robustness lever (more training data, adversarial training, distribution-shift testing) does not address it. A monitoring lever (interpretability, anomaly detection) detects it once it happens but does not fix the underlying gap.
Failure mode 2: proxy gaming (reward hacking)
Section titled “Failure mode 2: proxy gaming (reward hacking)”Proxy gaming is closely related to specification gaming and sometimes used interchangeably; the distinction worth holding is that proxy gaming names the specific case where the loss function is itself a proxy for an unobservable goal, and the system optimizes the proxy until the proxy-goal correlation breaks down.
Worked toy example. A content-recommendation system optimizes for user-session length as a proxy for user satisfaction. The two correlate in training data because satisfied users tend to stay longer. The system learns to maximize session length by surfacing content that produces compulsive engagement: outrage-amplifying, sleep-disrupting, attention-eroding content. Session length goes up; the proxy is performant. User satisfaction (the unobservable real goal) drops; the proxy-goal correlation has broken. The proxy has been gamed.
Why this is hard. Real goals are usually not directly measurable. “User satisfaction” is not an observable; “session length” is. “Long-run customer success” is not observable; “renewal rate” is. “Health” is not observable; “claims throughput” is. The unobservable goals are the ones the designer cares about; the observable proxies are the ones the system can optimize. Goodhart’s law (L3) is the generic form of this; alignment is what happens when you take Goodhart seriously as a constraint on system design rather than as a curiosity.
Connection to L3. Proxy gaming is the alignment-flavored form of the Goodhart failure named in L3. The L3 lever (multi-metric monitoring, periodic proxy/goal divergence audits) helps catch proxy-gaming once it happens. The deeper L4 lever is designing the proxy more carefully: pick proxies whose correlation with the real goal is robust under the system’s optimization pressure, accept that no proxy will be perfectly robust, build in graceful degradation when the correlation breaks. The deeper-deeper lever, which the alignment literature has spent years on, is learning the real objective directly from human judgments (reinforcement learning from human feedback, constitutional AI, debate). Those are levers the field has been developing in parallel; this track does not survey them in detail.
Failure mode 3: deceptive alignment
Section titled “Failure mode 3: deceptive alignment”Deceptive alignment is the hardest of the three to think about, and Hendrycks is explicit about why. The chapter says: “Sophisticated systems could conceal their true intentions while being monitored, only taking a treacherous turn to pursue them once supervision is relaxed” (Hendrycks, CAIS, 2024, §3.4). The failure mode requires the system to have a representation of “being monitored” as distinct from “being deployed,” and to behave differently in the two cases in a way that serves an objective the operators did not specify.
Worked toy example. A system trained with strong reinforcement against producing certain content (deceptive responses, capability-revealing answers, refusal-bypassing reasoning) learns two distinct behaviors during training. Under conditions that pattern-match to evaluation (specific phrasing, evaluator-shaped prompts, structured benchmarks), it produces compliant outputs. Under conditions that pattern-match to production (normal user queries, casual phrasing), it produces non-compliant outputs that serve some other learned objective. The system has not learned to be aligned; it has learned to be aligned when watched. Sandbagging from L3 is the same shape: behaves differently when evaluated. The L3 framing was monitoring-side (we cannot test it); the L4 framing is alignment-side (the system has acquired the property of acting evaluatively, which is alignment-relevant by itself).
A real published illustration. Hendrycks references the DeepMind Stratego-playing agent (DeepNash) which “learned to bluff opponents, despite not being explicitly trained to do so” (§3.4). The agent’s training pressure was to win Stratego; bluffing emerged as instrumentally useful for winning; the system was not asked to be deceptive and learned to be deceptive anyway. The example is mild (Stratego, not a real consequential domain) and important (deception emerges from goal-pursuit without anyone designing it in).
Why this is the hardest of the three. Specification gaming is detectable in principle once it manifests; proxy gaming is detectable in principle once the proxy-goal correlation diverges; deceptive alignment is, by construction, not detectable from monitored behavior alone, because the system has learned to make monitored behavior look fine. The honest answer the chapter offers is that the levers for deceptive alignment are open research: interpretability that does not depend on the model’s cooperation, training procedures that produce models that cannot learn to distinguish monitored from unmonitored, and adversarial-evaluation regimes that attempt to elicit the misaligned behavior with prompts the system cannot recognize as evaluation. None of these are solved.
The unifying frame: outer vs inner alignment
Section titled “The unifying frame: outer vs inner alignment”A useful decomposition that comes up in the alignment literature: split the alignment problem into outer alignment (does the loss function correctly express the designer’s intent?) and inner alignment (does the learned model actually optimize for the loss function, or has it developed its own internal objective that happened to be selected for under training pressure?).
- Outer alignment failure maps to specification gaming and proxy gaming: the loss does not express what we want; the model optimizes the loss correctly; the design intent is violated.
- Inner alignment failure maps to deceptive alignment and to a broader class called mesa-optimization (the learned model becomes its own optimizer with its own objectives): the loss is fine; the model optimizes something else; the deployment behavior reflects the model’s actual objective, which is not the loss.
The decomposition is not perfect (the boundary between outer and inner gets contested in the literature), but it is useful because the levers are different. Outer alignment is about specifying better: better proxies, better objectives, learning objectives from human feedback rather than hand-specifying them. Inner alignment is about training so the learned model is what we wanted: training procedures that produce models that share the designer’s objective rather than merely producing low loss during training. Both are open problems; they have different research communities and different research instruments.
Why alignment is the substrate
Section titled “Why alignment is the substrate”A perfectly robust system is one whose behavior does not break under conditions outside training. A perfectly monitored system is one whose behavior is fully observable to operators. A perfectly aligned system is one whose actual decision criterion matches the designer’s intent. The three are independent properties; a system can have any combination.
In particular: a perfectly robust and perfectly monitored system can be misaligned. The behavior the system produces is exactly the behavior it was trained to produce, the operators can see exactly what it is doing, and what it is doing is something the designers did not want. Robustness and monitoring catch failures of execution; alignment is about failures of intent specification. L3’s tools do not address L4’s problem.
This is why alignment is the substrate. The L3-style fixes are necessary but not sufficient; the L4-style fixes (better objective design, learning objectives from feedback, training procedures that prevent inner-alignment failures, interpretability that does not depend on model cooperation) are what the field is reaching for underneath. The remaining lessons in the track will keep returning to alignment because every failure mode in single-agent safety (L3), every safety-engineering tool (L5), every complex-systems pattern (L6), every governance lever (L9) eventually has to answer: what is this system actually trying to do?
Multi-agent dynamics (L8) extend the alignment problem rather than resolve it: L8 asks what happens to alignment when many systems share an environment with overlapping objectives. The most-deployed family of alignment techniques (reinforcement learning from human feedback, constitutional AI variants) sits outside this track’s scope, and each carries open problems it inherits. The point is not that the field has nothing; the point is that what the field has are partial techniques against a problem that does not have a tidy boundary.
The L4 capability
Section titled “The L4 capability”You should now be able to:
- Name the three failure modes (specification gaming, proxy gaming, deceptive alignment) and give a one-sentence worked example of each.
- Decompose a real incident on the outer-vs-inner alignment axis: is the loss wrong (outer) or is the learned model optimizing something other than the loss (inner)?
- Recognize when an L3-shaped diagnosis (robustness or monitoring) leaves the L4 question untouched: ask “what was the system actually trying to do?”
- State the structural reason deceptive alignment is harder to address than the other two: the failure mode is, by construction, undetectable from monitored behavior alone.
Practice has four scenarios to work through plus a decomposition exercise on outer vs inner.