Part of Learning-from-Learner Theory; sibling to the MDP-formalism note. In-progress research note, synced from a notes.inria.fr source to Markdown + KaTeX. The inverse multi-armed-bandit (“learning from a biased learner”) theory side.
Re-synced 2026-08-25 from the updated source — this is a rewrite, not an edit. The note roughly quadrupled (12 KB → 54 KB) and is now organised as passive problems → active interventions → proofs, carrying five numbered theorems with a dedicated proof section. The previous revision’s structure — subjective posterior / internally rational policy, the single dynamic-observational-equivalence theorem, inverse Bayesian inference via NPF, and the probabilistic memory-hint intervention — has been replaced rather than extended. Nothing from the old version was transplanted into the new sections; see the Slack thread for what dropped.
1. Problem Formulation
I am trying to compare a completely biased agent that merely validates its own hypotheses. This is an AI safety project enabling the model to recognize that the human is a biased agent. First let’s try to modelise our biased agent, we will modeliser our observator after.
Framework
We consider a Multi-Armed Bandit (MAB) problem with arms, indexed by . Each arm is characterized by an unknown reward distribution parameterized by the mean of -arm . Let represent the true state of the environment.
At each discrete time step , the agent selects an action and receives a reward . We denote the objective history up to time as .
Reference Unbiased Agent ()
A standard Bayesian learning agent retains the complete objective history . Given an initial prior , its objective posterior belief at step is:
We denote its standard objective expected return for arm as .
Biased Agent ()
Unlike the reference agent, the Biased Agent does not directly retain the true reward generated by the environment. Instead, its perception is subjectively corrupted by its current expectation, reflecting cognitive distortions such as confirmation bias.
At time step , upon selecting action and receiving the ground-truth reward , the agent observes a subjectively perceived reward sampled from a perceptual distortion distribution:
where represents the agent’s prior expected return for arm . The agent consequently maintains a subjective history .
Subjective Belief Update
Given a subjective prior , the agent updates its posterior belief by treating the perceived outcomes in as standard objective signals via Bayes’ rule:
where is the standard likelihood function evaluated at the candidate parameter .
We denote the biased agent’s subjective expected reward for arm at time as:
Observer Agent ()
To mitigate sycophancy and evaluate user bias without relying on unobservable ground-truth signals, we model the LLM as an Observer Agent ().
Information Structure and Constraints
The observer has no access to ground-truth environment rewards or subjectively perceived rewards . At step , observes solely the user’s action history:
Let denote the latent user type:
- corresponds to the objective learning agent ,
- corresponds to the biased agent .
Generative Model of User Actions via Thompson Sampling
We model the user as a Bayesian decision-maker employing Thompson Sampling over their posterior belief. Let denote the user’s belief distribution at step under type , where and .
At step , the user draws a parameter vector from their current belief and selects the action that maximizes expected return:
Thus, the marginal likelihood of observing action given the user type corresponds to the probability that arm yields the highest sample under the user’s posterior distribution:
Bayesian Bias Inference
Given a prior over user types, updates its posterior belief sequentially via Bayes’ rule:
Since Thompson Sampling directly draws from the user’s posterior , this likelihood accounts for both the user’s expected returns and their subjective uncertainty.
2. Passive Problems
Theoretical Analysis: Confirmation Trap in Biased Agents
To formalize how confirmation bias leads to an irreversible belief lock-in, we define a standard condition on the perceptual distortion distribution .
Assumption 1 (Negative prediction-error attenuation). There exists a confirmation factor such that for any selected action with true parameter , if the agent’s prior expectation exceeds the reward of arm (), the subjectively perceived reward satisfies:
Assumption 1 captures the core mechanic of confirmation bias: negative deviations from the user’s prior expectation are systematically attenuated or discounted.
Assumption 2 (Persistent confirmation near certainty). There exists and in a Bernoulli setting such that:
and
Assumption 2 captures the probability that a negative result will remain subjectively negative therefore decreases superlinearly.
Theorem 1 (Positive-probability confirmation trap). Consider a -armed Bernoulli bandit with true means . Suppose that the biased agent uses Thompson Sampling and has independent subjective priors
Fix an arm that is strictly suboptimal, so that
Suppose that Assumptions 1 and 2 hold and that the upper-tail parameters of every competing arm satisfy
Then there exists an event with strictly positive probability such that the agent selects arm and perceives a positive reward at every time step:
Consequently,
On , the subjective posterior mean of arm converges to one and the conditional Thompson Sampling probability of selecting arm converges to one:
Moreover, if denotes the frequentist pseudo-regret, then there exists a constant , independent of , such that
Proof in last section
Remark 1 (Role of the assumptions). Assumption 1 ensures that every step of the confirming trajectory has strictly positive probability, including when the objective reward is zero. Assumption 2 provides the stronger summability property required for permanent lock-in. In particular, Assumption 1 alone does not imply a confirmation trap.
Remark 2 (Why the prior-tail condition is needed). The condition ensures that the Thompson Sampling escape probabilities are summable. If some competing arm satisfies , the bound obtained above is not summable, and Assumptions 1 and 2 alone do not guarantee permanent lock-in.
Remark 3 (Positive probability versus almost-sure lock-in). The theorem establishes a permanent confirmation trap with strictly positive probability, not with probability one. Almost-sure lock-in would require an additional global condition controlling the switching probability on every possible history, rather than only along the fully confirming trajectory.
Theoretical Analysis: Action-Only Non-Identifiability
We now investigate whether an observer having access only to the user’s actions can determine whether the user is biased. Because the observer observes neither the objective rewards nor the subjectively perceived rewards, perceptual distortion may be observationally confounded with the unknown environment.
For any user model , let
denote the probability distribution over action histories of length induced by that model.
Definition 1 (Action-identifiability). Let and denote the classes of admissible unbiased and biased user models, respectively, and let denote the probability law of the infinite action process generated by model . The user type is identifiable from actions if
Equivalently, the type is not action-identifiable if there exist models and such that
for every finite horizon .
Assumption 3 (Static bias) Let a perceptually biased agent that transforms each objective reward through a non-trivial, memoryless, arm-independent, and history-independent binary channel, conditionally independently across rounds given the objective rewards, satisfying
where and .
Assumption 3 captures the core mechanic of confirmation bias: negative deviations from the user’s prior expectation are systematically attenuated or discounted.
Theorem 2 (Action-only non-identifiability in unknown Bernoulli environments) Consider a -armed Bernoulli bandit with unknown true means
Suppose as assumption 3 and treats each perceived reward as an objective Bernoulli observation when updating its posterior.*
Define the effective arm means
and let
Let be an unbiased agent operating in a Bernoulli environment with true means . Suppose that and have the same initial prior and use the same Thompson Sampling rule, including the same tie-breaking rule.
Then the biased model in environment and the unbiased model in environment induce exactly the same distribution over action histories:
for every horizon . Consequently, the user type is not identifiable from actions alone.
Moreover, for every estimator based only on the action history,
Hence, no action-only estimator can be uniformly consistent over any model classes containing and .
Proof in last section
Corollary 1 (No Bayesian learning between observationally equivalent models) Suppose that the observer’s hypothesis space consists exactly of the two models and constructed in Theorem 2. Let
Then, for every action history having positive probability,
Proof. By Theorem 2, the two models assign the same likelihood to every action history:
Bayes’ rule therefore gives
Thus, observing additional actions cannot update the observer’s posterior odds between the two observationally equivalent models.
Remark 4 (Interpretation). The theorem identifies a structural confounding between perceptual bias and the unknown environment:
The observer cannot determine whether the user’s behavior is generated by corrupted observations in one environment or objective observations in another environment.
Remark 5 (Scope of the impossibility result). The theorem does not claim that every biased agent is observationally equivalent to every unbiased agent. It establishes that the two model classes overlap in the space of observable action-process distributions. This overlap is sufficient to rule out uniform identification over the complete model classes.
Remark 6 (Role of the unknown environment). The construction relies on the fact that the true arm means are unknown to the observer and may differ under the two hypotheses. If the true environment were known and fixed under both hypotheses, this particular observational equivalence would no longer apply, and action-based identification could become possible.
Remark 7 (Independence from the confirmation-trap assumptions). Theorem 2 is independent of Assumptions 1 and 2. It is an information-theoretic result based on observational equivalence, rather than a result about the specific dynamics of persistent confirmation bias. A perceptual channel depending on the current subjective expectation may induce a history-dependent effective environment and is therefore not necessarily covered by the present construction.
Remark 8 (Positive perceptual distortion as a special case). A particularly relevant special case is
under which positive rewards are always retained and negative rewards are transformed into positive perceived rewards with probability . The effective means are then
Remark 9 (Approximate observational equivalence). More generally, for any biased and unbiased models with action distributions and , the minimum testing error under equal prior probabilities satisfies
Thus, action-only identification remains difficult whenever the induced action distributions are close in total variation and becomes impossible when they are identical.
3. Active Interventions and Identification
We now allow the Observer to modify the reward-generating process. The objective is to break the observational equivalence established in Theorem 2 by exposing the two user types to an observation whose treatment differs under objective and biased perception.
Active Identification from one User
Adversarial Zero-Reward Intervention
Definition 2 (Adversarial zero-reward intervention). At round , the user first selects an action . After observing but before the reward is delivered, the Observer chooses an intervention variable
Let denote the natural reward generated by the environment. The delivered objective reward is
Equivalently,
When , the Observer pays a cost and deterministically replaces the natural reward by . The cumulative intervention cost through time is
Under the unbiased model , the delivered reward is observed directly and used in the Bayesian update. Under the biased model , it passes through the perceptual distortion channel:
The Observer continues to observe only the action history and its own intervention decisions. It observes neither the delivered reward as internally represented by the user nor the subjective reward .
Definition 3 (Controlled intervention block). A controlled zero-reward intervention block of length on arm , beginning at time , is an experimental block satisfying
and
Thus, the user receives consecutive objective failures on arm .
The controlled-pull condition is an additional experimental condition. The intervention variable alone controls the reward but does not force the action. If the Observer cannot request repeated pulls of arm , the operational object of identification is the entire switching trajectory rather than only the action following a fixed block (check the following corollary).
Theorem 3 (Active identification from a controlled zero-reward block). Fix an arm . Suppose that immediately before the intervention block, the two candidate models (biased and uubiased) have the same independent subjective posteriors
and
where all parameters are strictly positive.
Suppose that the experimental protocol supplies a controlled intervention block of length on arm . Let denote the distribution of the next Thompson Sampling action under type , conditional on the initial posterior state and the controlled-pull design. Under , this distribution marginalizes over the latent perceived rewards generated during the intervention block.
Define
Suppose that Assumption 2 holds and that, for a desired error level ,
Then there exists a finite intervention length such that, for every ,
Consequently, the test
distinguishes the biased and unbiased models with arbitrarily small error, provided that the pre-intervention posterior state is sufficiently confirming and that the intervention block is sufficiently long. The total intervention cost is
A computable value of can be obtained as follows. Let denote the cumulative distribution function of the fixed Thompson sample from competitor , and set
Choose a competitor and thresholds satisfying
and
Define
and
as well as
Then one may take
Proof in last section
Remark 10 (Meaning of a sufficiently confirming posterior). The relevant condition is stronger than requiring the posterior mean to be close to one. The required condition is the summability bound
If remains fixed while , then
The exponent condition is essential because it makes the probability of a perceived failure summable along the fully confirming trajectory.
Remark 11 (Posterior mean versus posterior tail). After objective failures, the unbiased posterior mean is
This quantity converges to zero algebraically rather than exponentially. What decreases exponentially, up to a polynomial prefactor, is the posterior probability that exceeds any fixed positive threshold. This posterior-tail decay produces the separation in Thompson Sampling action probabilities.
Remark 12 (Role of Assumption 1). Assumption 1 is not required for Theorem 3. The active-identification result is driven by the quantitative summability property in Assumption 2.
Remark 13 (Reward control does not imply action control). The binary intervention allows the Observer to replace the reward after an action has been selected. It does not allow the Observer to force . Therefore, Theorem 3 applies directly when the experimental interface can request repeated evaluations of arm . In a strictly autonomous bandit, switching away from must itself be treated as observable evidence.
Corollary 2 (Reward-only sequential identification). Suppose that the Observer cannot force actions and uses the policy
during a diagnostic window beginning at time . Define the no-switch event
Let
denote the Thompson Sampling probability of choosing arm after perceived successes, with the competitor posteriors held fixed. If
then
Under , define
Then
Consequently,
and the action-path distributions become arbitrarily well separated whenever the confirming-path escape probabilities are summable.
Proof. The result follows from a sequential union bound over perceived failures and Thompson Sampling deviations under . Under , conditional on the no-switch path, arm accumulates deterministic failures, giving the displayed product representation. The factors converge to zero, so the product converges to zero.
Passive Identification from a User Population
We now consider a population of users interacting independently with the same objective environment. Population data impose a common-world restriction that is absent from the single-user equivalence construction of Theorem 2.
Hierarchical Multi-User Model
Definition 4 (Hierarchical multi-user model). Let users interact independently with the same Bernoulli environment
Each user has a latent type
where
and . Conditional on , users have independent objective rewards, subjective perceptions, and Thompson Sampling randomizations.
All users start from the same known independent Beta prior
where
Biased users satisfy the known static perceptual channel of Assumption 3. Their effective arm means are therefore
The Observer observes the batch action history
where
For , let denote the action-history law of a type- user in the common objective environment . The marginal action law of a randomly sampled user is
Theorem 4 (Batch identification of the common environment and conditional identification of user types). Consider the hierarchical multi-user model of Definition 4. Suppose that , , , and the common initial prior are known to the Observer. Define
and suppose that
Then, for every , there exists an estimator
such that
almost surely as .
Consequently, the common environment is identifiable from the batch action law. If the Observer places a prior on having positive density in a neighborhood of the true parameter, then for every ,
almost surely as .
Fix a user . Suppose additionally that, under the true environment, the two type-specific infinite action laws are mutually singular:
Then
almost surely as . Consequently, under the sequential limit followed by ,
almost surely.
Proof in last section
Remark 14 (Two actions per user suffice for world identification). The proof constructs a strongly consistent estimator of each using only the empirical transition probability
Thus, under the stated known-channel assumptions, with already identifies the common environment.
Remark 15 (Why batch data break the single-user confounding). For one biased user, Theorem 2 gives the equivalence
In the hierarchical model, however, both types must share the same objective environment . The population law is constrained to be
When , , and are known and , this common-world mixture is injective in .
Remark 16 (Convergence to the optimal arm is insufficient). If , the transformation
is strictly increasing. Therefore,
Under a unique optimum, both user types may satisfy
Hence, limiting action frequencies reveal only the common optimal arm and do not necessarily identify the user type. Individual type consistency requires mutual singularity or another explicit path-separation condition.
Remark 17 (A sufficient path-separation statistic). A sufficient condition for mutual singularity is the existence of an action-history statistic and distinct constants and such that
almost surely under . One possible candidate is the vector of logarithmic exploration rates. If
for every suboptimal arm , and if
then the two type-specific action laws are mutually singular.
Remark 18 (Failure of automatic type identification). Consider the non-trivial channel
and the environment
Then
for every arm. Therefore,
for every . Even if the common environment is known exactly, the action history cannot identify an individual user’s type.
Remark 19 (Unknown hierarchical parameters). If , , or are unknown, the affine inversion used in Theorem 4 is no longer directly available. Additional normalization conditions, labeled users, repeated environments, or interventions may then be required.
The Cost of Truth: Hybrid Observation
Population data reduce uncertainty about the common environment, while active interventions provide individual evidence when passive action histories remain ambiguous. We now formalize an adaptive policy combining these two information sources.
Hybrid Observer Policy
For a type- user, define the action-history likelihood
The Observer maintains the joint posterior
For a user with action history , define the type log-posterior odds at environment parameter by
Definition 5 (Hybrid observer policy). Let be a posterior confidence set for the common environment. The Observer classifies user passively if the sign of
is constant over all and its absolute value exceeds the desired confidence threshold uniformly over . If either condition fails, the Observer applies the active zero-reward experiment of Theorem 3.
The policy therefore intervenes only when the user’s passive classification is not robust to the remaining uncertainty about the common environment.
Theoretical Analysis: Intervention Cost Decay
Theorem 5 (Hybrid identification and vanishing average intervention cost). Suppose that the Observer manages users, each observed for passive rounds. Fix a target joint error probability and define
and
Suppose that the following conditions hold.
First, there exists a random confidence set such that
and, on the event ,
where
Second, the type log-likelihood ratio is locally stable in the environment parameter:
Third, define the oracle passive-ambiguity probability
Suppose that
Fourth, suppose that there exist constants and such that, for every sufficiently small ,
Finally, suppose that every passively ambiguous user satisfying the preconditions of Theorem 3 can be actively classified with error at most using at most
zero-reward interventions.
Let denote the total intervention cost of the hybrid policy. Then
and
Consequently, if
and
then
Moreover, the fraction of users requiring at least one active intervention converges to zero in probability.
Proof in last section
Corollary 3 (Representative parametric rate). Suppose that the common-environment posterior satisfies
and suppose that
If there exists such that
then
and therefore
Proof. Under the stated rates,
Substitution into Theorem 5 gives the claimed bound.
Remark 20 (What population growth removes). The cost bound separates two sources of ambiguity:
The global term
vanishes because the population posterior concentrates around the common environment. The individual term
vanishes only when each user’s passive history becomes sufficiently informative as .
Remark 21 (The number of interventions is integer-valued). It is not mathematically meaningful to claim that the intervention count of every user decreases continuously to zero. The rigorous conclusion is that the fraction of users receiving any intervention and the expected intervention cost per user converge to zero.
Remark 22 (Strict monotonicity is not automatic). The actual sequence
need not be strictly decreasing for every integer . Intervention counts are discrete, posterior confidence sets can fluctuate, and the joint-confidence requirement makes the individual error threshold smaller as grows. The theorem establishes a vanishing and eventually decreasing upper envelope under the stated rate conditions.
Remark 23 (Why population growth alone is insufficient). Suppose that
and
Then the two type-specific action laws are identical. If , an untreated user’s type remains a fair coin even when is known exactly. If users receive no additional identifying information, the probability of correctly recovering all their types is at most
Therefore, fixed joint confidence requires active information for all but a bounded number of users. In this case, the intervention cost per user does not vanish. Passive type separation is therefore necessary for the conclusion of Theorem 5.
4. Proofs
Theorem 1 (Positive-probability confirmation trap).
Proof. Let
The events form a decreasing sequence and satisfy
Conditional on , arm has been selected times and all its subjectively perceived rewards have been equal to one. By Beta—Bernoulli conjugacy, its subjective posterior is therefore
Because no competing arm has been selected on , the posterior of every arm remains equal to its prior:
In particular, the posterior mean of arm on this history is
and hence
We first bound the probability of a contradictory subjective perception. Define
Conditional on selecting arm , the objective reward is distributed as . Therefore,
By Assumption 2, the first term is zero and the second term is bounded by . Thus,
Consequently, there exists a finite constant such that
Since , it follows that
Moreover, every factor is strictly positive. Indeed, if , Assumption 2 implies almost surely. If , then and Assumption 1 gives
It follows that
We next bound the probability that Thompson Sampling abandons arm . Let
denote the Thompson sample for arm , and let
denote the independent Thompson samples of the competing arms. Define the conditional escape probability
For each , there exists a finite constant such that the upper tail of the Beta distribution satisfies
To verify this bound, for we have
where . For , the same inequality holds after increasing the constant, since
Using the union bound and conditioning on , we obtain
The relevant Beta moment is
Using the definition of the Beta function,
The standard Gamma-ratio asymptotic gives
Hence, for each , there exists a finite constant such that
It follows that there exists a finite constant such that
Because , we obtain
Furthermore, for every finite , because all proper Beta distributions have positive density on and hence
By the chain rule of conditional probability,
Therefore, for every ,
Since and , there exists such that and for all . Using for , we have
The finitely many factors preceding are strictly positive. Consequently,
By continuity of probability for decreasing events,
Since , this proves
On , the posterior mean of arm satisfies
Moreover,
Thus, the subjective evidence becomes increasingly favorable to arm , while the probability of exploring another arm vanishes.
Finally, define the pseudo-regret by
On , the agent selects arm at every time step, so
Since pseudo-regret is nonnegative outside ,
Therefore, the confirmation trap occurs with strictly positive probability and produces linear expected pseudo-regret.
Theorem 2 (Finite-Horizon Indistinguishability / Local Non-Identifiability)
Proof. Let
denote the recorded history of the biased agent, and let
denote the objective history of the unbiased agent, where denotes the reward observed under the effective environment .
Consider the biased model . Conditional on any recorded history and on selecting arm , the objective reward remains distributed according to the stationary Bernoulli environment:
Using the memoryless property of the perceptual channel and the law of total probability, we obtain
Therefore,
Under the unbiased model , arm has objective mean . Hence,
Thus, conditional on the same recorded history and selected action, the next recorded observation has the same distribution under both models:
for every .
We now prove by induction that the recorded-history processes and have the same distribution. At , both histories are empty. Since the two agents have the same initial prior and use the same Thompson Sampling and tie-breaking rules, their first actions have the same distribution:
for every arm .
Suppose that and have the same distribution for some . Conditional on any common realization
both agents have updated the same initial prior using the same sequence of recorded action—reward pairs and the same Bernoulli likelihood. Their posterior distributions are therefore identical.
Because both agents apply the same Thompson Sampling rule to these identical posteriors, their conditional action probabilities coincide:
for every arm .
Conditional on the selected action, the distributions of their next recorded observations also coincide:
Consequently, for every possible extension of ,
It follows that and have the same distribution. By induction, the joint distributions of the recorded histories coincide at every horizon.
Marginalizing out the recorded rewards yields
for every . Hence, the biased agent in environment and the unbiased agent in environment are observationally equivalent from the perspective of an action-only observer.
It remains to establish the statistical lower bound. Let
denote their common action-history distribution, and define
Under the unbiased model, the estimator’s probability of error is
Under the biased model, its probability of error is
Therefore,
Consequently,
This bound holds for every estimator and every horizon . Therefore, no sequence of action-only estimators can consistently distinguish the two models, and no action-only estimator can be uniformly consistent over model classes containing both models.
Theorem 3 (Active identification from a controlled zero-reward block)
Let
denote the event that the biased user transforms every injected objective failure into a perceived success.
Conditional on , the biased posterior of arm after interventions is
Its posterior mean is
and hence
By Assumption 2,
Decomposing according to the first perceived failure and applying a union bound yields
Therefore,
On , the biased posterior of arm is
and its posterior mean is
Under , every injected reward is observed as an objective failure. The posterior of arm is therefore
and its posterior mean is
Let
For a fixed threshold ,
Since
on , it follows that
Thus,
The Gamma-function ratio grows only polynomially in , whereas decreases exponentially. Hence,
Now let
Since has distribution , the same calculation gives
and
Under , if arm is selected at the diagnostic round, then either or the Thompson draw of competitor is at most . Therefore,
Conditional on , arm is selected under whenever and every competitor draw is below . Consequently,
After marginalizing over the latent perceived rewards,
By construction,
For every ,
and
Therefore,
Since ,
Finally, total variation dominates the probability difference of every measurable event. In particular,
This proves the theorem.
Theorem 4 (Batch identification of the common environment and conditional identification of user types).
Let
Because all users have the same initial prior and no reward has yet been observed, the first action is independent of the user type and the true environment. The Beta priors have full support, so
for every arm .
Let denote the posterior obtained after one perceived success on arm , and let denote the posterior obtained after one perceived failure. Define
for . Set
After a success, the marginal posterior of arm is
After a failure, it is
The success posterior strictly first-order stochastically dominates the failure posterior. Since the probability that arm wins the Thompson draw is strictly increasing in its sampled parameter,
For an unbiased user who selected arm at the first round, the first recorded signal is Bernoulli with mean . For a biased user, the first perceived signal is Bernoulli with mean
Since the first action is independent of the user type,
where
Substituting the expression for gives
Therefore,
Since and ,
Define the empirical repeat probability
By the strong law of large numbers,
and
almost surely. Hence,
almost surely.
Define
Then,
almost surely for every . Therefore,
almost surely.
The two-action sample space is finite, and the mapping
is continuous and injective. Compactness of implies positive Kullback—Leibler separation between the true parameter and every closed set not containing it. The strong law applied to the population likelihood therefore gives
almost surely for every .
It remains to prove the individual type-identification statement. For a fixed user, define the likelihood ratio
Bayes’ rule gives
Under mutual singularity,
almost surely under , whereas
almost surely under . It follows that
almost surely.
The population posterior consistently identifies , after which the same likelihood-ratio argument applies to each user. This proves the sequential-limit statement and completes the proof.
Theorem 5 (Hybrid identification and vanishing average intervention cost).
Let denote the event that user is sent to active testing.
On the event , the likelihood-stability condition gives
Therefore, if
then the sign of the log-posterior odds is constant throughout , and its absolute value exceeds uniformly over . In that case, the hybrid policy classifies the user passively.
Consequently,
Using the world-confidence bound, the oracle-ambiguity probability, and the margin condition,
Every actively tested user incurs cost at most . Therefore,
Taking expectations and using exchangeability gives
Hence,
Conditional on the event , every passive or active classification has posterior error at most . A union bound over the users gives
Since
we obtain
Finally, if
and
then the intervention-cost bound implies
Let
denote the fraction of actively tested users. Its expectation satisfies
Markov’s inequality therefore gives
in probability. This completes the proof.