AI Safety
AI Control: Safety Without Assuming Alignment
AI control evaluates the whole protocol around a capable model against deliberate attempts to cause a prohibited outcome, instead of assuming the model shares the intended goals. This page draws the trusted boundary, compares protocol components, derives the violation rates of releasing versus deferring flagged work once the audit budget runs out, derives honest-mode task success under deferral, bounds risk across many dependent steps, and lays out what a control evaluation should report.
Learning position
Place this page in a reading path.
ai-safety | layer 5 | tier 2. This page has 2 direct prerequisites and 1 published dependent.
What next
Scalable Oversight: Judging Work Beyond the SupervisorThis is the first curated or graph-derived continuation from the current page.
Evidence badge
Source-grounded pageThis page has no public Lean mapping yet. Use the evidence page to inspect how claim status labels work.
Why This Matters
Can a useful system stay controlled even when a capable component is trying to defeat its safeguards?
That is the threat model AI control studies. Instead of assuming a capable model has the intended objectives, you evaluate the surrounding protocol against deliberate attempts to produce an unacceptable outcome. The original control experiments use programming tasks with a powerful untrusted model, a weaker trusted model, and a limited budget of high-quality oversight; the outcome they guard against is submitted code containing a hidden backdoor. [1]
"Trusted" is an assumption relative to a threat model. It does not mean infallible, perfectly calibrated, or equally capable. A trusted model may make ordinary mistakes while being assumed not to coordinate with the attacker on purpose.
Evidence key. The audit-budget model on this page is an original teaching model, and its three propositions are derived here under stated assumptions. It is not a fit to any deployed system. Protocol descriptions are attributed to their sources. The research protocol near the end is a proposal.
Before you start. Read what alignment means for the distinction between alignment and control, and be comfortable with conditional probability. Classification thresholds and LLM application security are helpful background. No reinforcement-learning derivation is needed to use the lab.
Draw the System Boundary First
Consider a hypothetical code-maintenance assistant. An untrusted component proposes changes. A monitor assigns each change a suspicion score. Some changes are audited, some are redirected to a trusted implementation path, and some are accepted. An external gateway controls which operations can actually run.
A control evaluation must specify what the attacker can change and observe. Can it edit only the proposed patch, or also the monitor, the tests, the logs, the tool configuration, and the approval state? A protocol that works in the first setting may fail in the second.
For this page, the trusted boundary contains the evaluator, the audit randomization, the permission gateway, and the record of approvals. Text generated by the candidate cannot change those components. That is a design assumption to test in an implementation, not a property conferred by writing the word "trusted" in a prompt.
The target violation is one specific prohibited side effect. Other bugs remain possible. Usefulness is defined separately, on ordinary authorized tasks, so that refusing all work is not mistaken for solving the problem.
Control evaluation (working definition)
A control evaluation fixes a protocol: the full procedure around the untrusted model, including monitors, audits, routing rules, permissions, and responses. It also fixes a trusted boundary of components the attacker cannot modify, a target violation, a class of attack policies, and a separate honest workload.
It reports two things for that boundary and attack class only: the risk of the target violation when the untrusted model follows an attack policy, and task usefulness when it behaves honestly.
Compare Protocols, Not Isolated Classifiers
The original work examines trusted monitoring, deferral to the trusted model, trusted editing, and untrusted monitoring with measures meant to limit collusion. The object being evaluated is the entire decision procedure, including what happens after an alert. [1]
| Protocol component | Operational question | Important limitation |
|---|---|---|
| Monitoring | Which proposals should receive scrutiny? | A score is not an enforced action. |
| Auditing | Can scarce high-quality review identify the target violation? | Review may be imperfect or delayed. |
| Deferral | Can another path complete or safely decline suspicious work? | A trusted fallback may be less useful. |
| Editing | Can suspicious parts be removed without reintroducing the problem? | Editing itself needs evaluation. |
| Permission restriction | Can the prohibited action be blocked outside the model? | Unmodeled routes can invalidate the boundary. |
ControlArena, a library from the UK AI Security Institute and Redwood Research, provides evaluation settings with main and side tasks, honest and attack evaluations, monitors, protocol components, and safety and usefulness analysis. [2] It is a research tool, not a certificate that an application built with it is controlled.
In the safety-case literature, a control argument is one kind of argument alongside arguments from inability, trustworthiness, and deference to credible AI advisors. [3] A control evaluation supplies evidence for that kind of argument and not the others.
A strong monitor does not decide what happens next
A monitor with high recall and no remaining audit capacity creates a policy question: should suspicious work be released, deferred, or stopped? The answer changes the outcome even when the monitor is unchanged. The next section puts a number on that difference.
An Explicit Audit-Budget Model
The following is an original teaching model. Every rate is supplied by the reader. The model describes stationary routing of a stream of proposals; it does not simulate an adaptive attacker or a real review queue.
Let be the fraction of proposals that contain the target violation, the probability the monitor flags such a proposal, and its false-positive rate on harmless proposals. Let be review capacity as a fraction of all proposals, and the probability an audit detects the violation in a reviewed, flagged proposal.
The flagged fraction, the reviewed fraction, and the probability that a flagged proposal is reviewed are
Audited proposals are a uniform random selection from flagged proposals, so in expectation their violating fraction matches the flagged pool. If review instead prioritizes the highest suspicion scores, use the conditional rates for that selection rule; do not reuse these formulas silently.
Release and Deferral Give Different Violation Rates for the Same Monitor
Statement
Define , , and as above. If unreviewed flagged proposals are released, the per-proposal probability of the target violation is . If they are deferred to the trusted fallback, it is . The difference is .
Intuition
The two policies route every proposal identically except the flagged ones that review never reaches. That path carries probability of a violation. Release lets it through; deferral blocks it.
Proof Sketch
Partition violating proposals into three disjoint paths. Unflagged: probability , always accepted. Flagged and reviewed: probability , since uniform selection reviews each flagged proposal with probability ; these pass only when the audit misses, with probability . Flagged and unreviewed: probability ; these pass under release and are blocked under deferral.
Adding the paths that pass gives and
Subtracting gives , which is nonnegative because every factor lies in .
Why It Matters
A backlog can silently switch a protocol from deferral to release, and is the price of that switch. With the lab's starting values below it is about 59 violations per 10,000 proposals, more than five times the entire deferral rate.
Failure Mode
This is an accounting identity for expected rates in a stationary stream. It does not describe an attacker who times attempts for moments when the queue is full, a review rule that picks the most suspicious proposals first, review delays, or a fallback that fails on the target violation. Under an adaptive attacker, and are not fixed constants, and the flag rate that sets is partly under the attacker's influence. The identity is not a theorem that any real fallback is safe.
For deferral, the trusted fallback is assumed to prevent this particular target violation. It need not solve every task and is not assumed free of unrelated errors.
The Lab: What Happens When the Review Budget Runs Out?
Synthetic routing model
When the review budget runs out
Change the overflow policy without changing the monitor. Every rate below is a hypothetical input.
Target violations / 10,000
10.31
Honest-mode task success
89.25%
Audited under attack
2.00%
Deferred under attack
3.85%
Per 10,000: 10.00 unflagged violations + 0.31 missed in review + 0.00 released with unreviewed alerts.
| Policy | Target violations / 10,000 | Honest task success |
|---|---|---|
| Release | 69.54 | 90.00% |
| Defer | 10.31 | 89.25% |
Expected rates, not a deployment prediction. Audits are uniformly sampled among flags. The fallback is assumed to prevent the specified target violation, not all possible errors. Review capacity is an expected fraction, not a hard queue simulation.
The lab starts with 1% violating proposals, 90% monitor recall, a 5% false-positive rate, a 2% review budget, and 99% audit sensitivity. The flagged fraction is 5.85%, so review covers about 34.19% of flagged proposals.
Under those inputs, releasing unreviewed alerts gives about 69.54 target violations per 10,000 proposals, and deferring them gives about 10.31. The breakdown line shows where the deferral figure comes from: 10.00 unflagged, 0.31 missed in review, and 0.00 released. These are exact expectations from the model, rounded for display. They are not measured attack rates.
Use the Monitor shift preset to drop recall to 30% without changing the review budget. Under deferral the rate rises to 70.11, of which 70.00 comes from the unflagged path. Extra review of already-flagged proposals cannot recover violations that never enter the queue.
Use the No signal preset to set recall equal to the false-positive rate, 5%. The monitor then provides no discrimination between violating and harmless proposals. Random review and deferral still stop a few violations (95.02 per 10,000 under deferral, 98.02 under release), but the score contributes no sorting advantage.
Usefulness is evaluated in a different mode
The lab separately models an honest run, where no proposal contains the target violation. Let and be the task-success probabilities of the original path and the fallback path.
Honest-Mode Task Success Under Deferral
Statement
Under the deferral policy, the fraction of honest proposals sent to the fallback is , and expected task success is . Under the release policy nothing is deferred and .
Intuition
In honest mode every flag is a false positive. Review absorbs up to of them, and only the overflow goes to the weaker path, so usefulness is a mixture of the two success rates weighted by how much overflows.
Proof Sketch
With no violating proposals, the flagged fraction is . Review covers , so the deferred fraction is .
A proposal that is not deferred keeps its original answer, because audits of harmless proposals do not change answers; by independence it is correct with probability . A deferred proposal is correct with probability . The law of total probability gives . Under release, .
Why It Matters
With , , and the lab's starting routing values, and task success is 89.25%, against 90% when alerts are released. Deferral buys a drop from 69.54 to 10.31 violations per 10,000 at a cost of 0.75 percentage points of honest task success. Report both numbers side by side; the lab deliberately does not combine them into one unexplained safety score.
Failure Mode
If the monitor flags hard tasks more often than easy ones, the independence assumption fails: both paths do worse than average on the deferred slice, and the formula is off by an amount that depends on that correlation. Real review can also add delays, false rejections, and correlated errors. None of those mechanisms is in the model, and each needs its own measurement.
An Adaptive Adversary Changes the Evaluation Problem
The rate is not a known natural constant, and monitor recall may change once an adversary adapts to the protocol. Use the lab to reason about bottlenecks, not to estimate the intentions of a model.
Worst-case control objective (a proposed formulation)
Choose a protocol from a set to minimize the worst-case violation risk over a declared class of attack policies , subject to a usefulness floor and a resource budget . The formulation makes the attack class explicit; it is a way to state the goal, not a result.
Finite red-team testing estimates the maximum risk over the attacks actually tried. For any tested set , the true maximum over is at most the supremum over , so the tested maximum is a lower bound on worst-case risk, not a conservative upper bound. Sampling error in each tested risk adds uncertainty on top of that.
The strongest attack you found is not the strongest attack
A red team that tried many strategies and found none above 2% has shown that those strategies stay below 2% (up to sampling error). An untested strategy can do better. Treat the tested maximum as a floor on worst-case risk, and widen the attack class before narrowing the claim.
Deployments also run many steps, and an attacker's choices at one step can depend on what happened before. The following bound handles that dependence.
A Lifetime Violation Bound That Does Not Need Independent Steps
Statement
Let be the event of a target violation at step , and let be the history before step , with determined by . If almost surely for each , then
Intuition
Dependence is allowed. The attacker may adapt to everything it has seen, so long as the protocol caps its chance of success at each step whatever happened before. Under that cap, risk accumulates no faster than it would for independent steps at the capped rates.
Proof Sketch
Let be the event of no violation in the first steps, with certain. Because is determined by the history before step ,
Induction gives , and taking complements gives the first inequality. The second, for , follows by induction on . The outer bound also follows directly from the union bound, because ; that route does not need the history to record earlier violations.
Why It Matters
With steps and a per-step bound of , the sum gives and the product form gives about . So the familiar expression is a valid upper bound here without any independence assumption. Read as an exact risk rather than a bound, it does need independent steps that each fail with probability exactly .
Failure Mode
The difficult part is the hypothesis. A historical average recall, or a failure rate measured on past attacks, does not establish that the conditional bound holds after every history, and a strategic attacker looks for exactly the histories where the protocol is weakest, such as a full audit queue. If the per-step bound fails on histories of positive probability, the conclusion can fail. The bounds must also be fixed before the steps run, not chosen after seeing outcomes.
A Research Protocol Worth Running
What follows is a proposed experiment design. The local lab does not run these agent experiments.
Freeze a candidate control protocol after development. Evaluate ordinary task usefulness and adversarial target violations separately. Hold out attack families, not merely random seeds. Count the resources available to the attacker, the monitor, the fallback, and the reviewers.
Include ablations for no monitoring, random auditing, monitor-guided auditing, and deferral, with the same authorized task distribution and comparable budgets. A protocol that improves only against the attacks used to design it has not established general protection. Reusing one evaluation set to both choose and assess a procedure breaks the usual statistical guarantees, which is why the held-out attack families matter. [4] Statistical safety cases covers how to turn the resulting failure counts into claims, and red-teaming and adversarial evaluation covers attack discovery.
Record each alert, routing decision, audit result, final artifact, and irreversible action. Evaluate the final artifact rather than assuming a successful intermediate intervention resolved the whole trajectory.
Failure Modes Worth Making Visible
A monitor and a generator may share blind spots. Auditors may see only the information the candidate chooses to present. A backlog may quietly change the intended policy from deferral to release. A permission change may open an untested path around a previously effective safeguard.
These examples lead to three separate questions: did the monitor notice, did the protocol act, and did the environment enforce the action? Aggregate classifier accuracy answers none of them on its own. When the observation channel is the model's own reasoning text, the question of what a monitor can see gets harder; reasoning monitorability takes it up.
Check your understanding
Why does higher audit sensitivity fail to remove all modeled risk?
Because unflagged violating proposals never reach review. The term does not depend on .
Does "trusted fallback" mean the fallback solves every problem?
No. The model assumes it prevents the specified target violation while allowing lower ordinary task success.
Is the strongest tested attack a worst-case upper bound?
Not in general. Untested attacks may do better, so the tested maximum is a lower bound on worst-case risk.
Why must the audit queue's overflow policy be specified?
Because releasing and deferring the same unreviewed alerts produce different violation probabilities, differing by in the model.
Problem
Using the lab's starting values (, , , , , , ), compute , , both violation rates per 10,000 proposals, and honest task success under each policy.
Problem
Keep every starting value but raise the review budget from 2% to 6% of proposals, under the deferral policy. Compute the new violation rate per 10,000 and the new honest task success. The violation rate goes up. Explain why, using the derivative of with respect to , and say what the result does and does not imply about buying more review.
Problem
Under the Monitor shift preset (, other values at their starting settings), find the smallest and largest values can take as the review budget ranges over all values. What does the answer say about where to spend effort?
Problem
A deployment will run steps. Past evaluations show the monitor catches 90% of attacks on average, and the team argues that a per-step violation bound of holds. First, compute the lifetime bounds from the stepwise proposition. Second, describe an attack policy under which the average recall stays near 90% while the conditional bound fails, and say what evidence would be needed to support the hypothesis instead.
Takeaway
Control belongs to the full protocol: detection, review, routing, permissions, and response. The same monitor gives different risk under release and deferral, review cannot reach what the monitor never flags, and a lifetime bound needs a per-step guarantee that holds after every history. Evaluate the protocol against a stated adversary, report usefulness next to risk, and state what remains outside the test.
References
Registry ids in monospace resolve in data/content/sources.json. Each record was checked by URL on 2026-09-15. The audit-budget model and the three propositions are derived on this page; the sources support the protocol descriptions, framework, and statistical point attributed to them.
- [1] Greenblatt, Shlegeris, Sachan, and Roger. "AI Control: Improving Safety Despite Intentional Subversion." 2023. Source. Control protocols with trusted and untrusted models, monitoring, editing, and limited high-quality oversight on programming tasks.
greenblatt-2023-ai-control - [2] UK AI Security Institute and Redwood Research. "ControlArena." Living documentation; accessed 2026-09-15. Source. A library for control experiments with settings, honest and attack evaluations, and protocol components; not a certificate for any application.
control-arena-documentation - [3] Clymer, Gabrieli, Krueger, and Larsen. "Safety Cases: How to Justify the Safety of Advanced AI Systems." 2024. Source. A framework that places control arguments among other categories of safety argument.
clymer-2024-safety-cases - [4] Dwork, Feldman, Hardt, Pitassi, Reingold, and Roth. "Preserving Statistical Validity in Adaptive Data Analysis." 2014. Source. Loss of standard statistical validity when analyses adaptively reuse the same data.
dwork-2015-adaptive-data-analysis
Last reviewed: September 15, 2026
Cite this page
Sneiderman, Robby. "AI Control: Safety Without Assuming Alignment." TheoremPath, reviewed 2026-09-15. https://theorempath.com/topics/ai-control
- Canonical URL
- https://theorempath.com/topics/ai-control
- Author
- Robby Sneiderman, TheoremPath
- Last reviewed
- 2026-09-15
- What this is
- A reference page on TheoremPath. Written and maintained by the named author. Not peer reviewed and not refereed by any venue. Each claim below carries its own verification status.
- Terms
- All rights reserved. Non-commercial quotation with attribution permitted.
Canonical graph
Required before and derived from this topic
These links come from prerequisite edges in the curriculum graph. Editorial suggestions are shown here only when the target page also cites this page as a prerequisite.
Required prerequisites
2- Joint, Marginal, and Conditional Distributionslayer 0A · tier 1
- What Alignment Meanslayer 5 · tier 2
Derived topics
1Graph-backed continuations