Papers
Topics
Authors
Recent
Search
2000 character limit reached

Correlated Pandora’s Problem

Updated 12 July 2026
  • Correlated Pandora’s Problem is a generalization of Pandora’s Box where box values come from an arbitrarily correlated joint distribution, making sequential decision-making complex.
  • The model requires strategies that optimally balance opening costs and revealed values, using techniques like reservation values and scenario-based updates.
  • Recent studies leverage LP relaxation and Poisson rounding to achieve near-optimal approximations, aligning with NP-hardness benchmarks inherited from related set cover problems.

Correlated Pandora’s Problem is a generalization of Pandora’s Box in which the vector of box values is drawn from a known joint distribution and may be arbitrarily correlated across boxes. In the minimization convention used by much of the recent literature, a strategy sequentially chooses boxes to open, pays their opening costs, and aims to minimize the expected sum of opening costs plus the minimum revealed value among the opened boxes (Gergatsouli et al., 2023). The model strictly generalizes Min Sum Set Cover and is related to Uniform Decision Tree, so it sits at the intersection of stochastic search, adaptive information acquisition, and approximation algorithms (Bansal et al., 21 Sep 2025).

1. Formal model and information structure

A standard formulation has a finite set of boxes BB, nonnegative opening costs cbc_b, and a random value vector

v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n

drawn from a distribution DD. A strategy sequentially decides which box to open next and when to stop and select one of the opened boxes. If OB\mathcal O\subseteq B is the set of opened boxes, the objective is

EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].

In the correlated setting, the coordinates of vv may be arbitrarily correlated, so revealing one value changes the posterior over all unopened boxes (Gergatsouli et al., 2023).

Much of the analysis uses an explicit finite-support scenario representation. There are mm scenarios sSs\in S, scenario ss occurs with probability cbc_b0, and under scenario cbc_b1, box cbc_b2 has value cbc_b3. In this view, opening a box reveals information about the underlying scenario, not merely the value of that single coordinate. This scenario-based representation is central in reductions to decision-tree and set-cover formulations (Chawla et al., 2021).

The correlated model should be distinguished from the classical independent-box setting. Under independence, opening one box reveals only its own value and does not affect beliefs about the others. Under correlation, the posterior is state-dependent, so the next action is inherently an information-acquisition decision as well as a search decision (Gergatsouli et al., 2023).

2. Adaptivity classes, benchmarks, and hardness

Three policy classes recur throughout the literature. In a Fully-Adaptive (FA) strategy, both the next box and the stopping time may depend on previously observed values. In a Partially-Adaptive (PA) strategy, the probing order is fixed in advance, but the stopping rule may depend on observations. In a Non-Adaptive (NA) strategy, both the probed set and the stopping rule are fixed before any values are revealed (Chawla et al., 2019).

This distinction is substantive rather than cosmetic. With arbitrary correlations, observations can encode the identity of future promising boxes, so FA strategies can exploit information in ways unavailable to PA or NA policies. In the sample-access model of "Pandora's Box with Correlations: Learning and Approximation" (Chawla et al., 2019), fully adaptive strategies cannot be efficiently approximated to within any sub-linear factor, which motivates the use of the best partially adaptive strategy as the benchmark in that line of work.

For explicit-support distributions, "Approximating Pandora's Box with Correlations" (Chawla et al., 2021) shows that correlated Pandora’s Box is approximation-preserving equivalent, up to small losses, to Uniform Decision Tree and a feedback version of Min-Sum Set Cover. Consequently, for support size cbc_b4, the problem admits a polynomial-time cbc_b5-approximation, while constant-factor approximations are achievable in subexponential time; at that stage, a polynomial-time constant-factor approximation remained open.

The hardness landscape is now sharp for the partially adaptive benchmark. Min Sum Set Cover is a special case of correlated Pandora, which implies that it is NP-hard to approximate the partially-adaptive optimum better than cbc_b6 (Gergatsouli et al., 2023). "Optimal 4-Approximation for the Correlated Pandora's Problem" (Bansal et al., 21 Sep 2025) strengthens the interpretation: factor cbc_b7 is optimal because the problem strictly generalizes MSSC, and factor cbc_b8 is NP-hard even with the power of fully adaptive algorithms.

A further distinction concerns minimization versus maximization. The correlated literature on approximation focuses on the cost-minimization form,

cbc_b9

because the maximization version with correlations has no bounded approximation (Bansal et al., 21 Sep 2025).

3. Reservation values under arbitrary correlations

The classical independent-box solution is Weitzman’s rule: for each box v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n0, compute a reservation value v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n1 from

v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n2

open boxes in increasing order of v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n3, and stop when the best observed value is at most the next reservation value. Under correlation, these indices are no longer static marginals, because opening one box changes the posterior distribution of all unopened boxes (Gergatsouli et al., 2023).

"Weitzman's Rule for Pandora's Box with Correlations" (Gergatsouli et al., 2023) shows that a direct posterior-based generalization remains effective. At each step, under the current distribution v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n4, compute v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n5 from

v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n6

open the box with minimum v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n7, and stop if the observed value v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n8. The paper analyzes two posterior-update rules: v=(v1,,vn)R+nv=(v_1,\ldots,v_n)\in \mathbb R_+^n9 for Variant 1: partial updates, and

DD0

for Variant 2: full updates.

The guarantees are approximation results against the optimal partially-adaptive policy, not exact optimality under arbitrary correlations. The main theorem states that Algorithm 1 is a DD1-approximation for Variant 1 and a DD2-approximation for Variant 2 (Gergatsouli et al., 2023). The same paper also proves an NP-hardness lower bound of DD3, so the DD4 bound is close to the known hardness barrier.

A key analytical ingredient is an equivalent scenario-based characterization of reservation values. If the support is a set of scenarios DD5, then

DD6

Under uniform support this becomes

DD7

This formula enables the histogram and tree-histogram analyses that underlie the DD8 and DD9 bounds (Gergatsouli et al., 2023).

The same work also gives a learning theorem. For unit opening costs and any OB\mathcal O\subseteq B0, polynomially many samples from the correlated distribution suffice so that Variant 1 achieves a OB\mathcal O\subseteq B1 approximation to the partially-adaptive optimum with probability at least OB\mathcal O\subseteq B2 (Gergatsouli et al., 2023).

4. Optimal approximation for the partially adaptive problem

The approximation status of the partially adaptive Correlated Pandora’s Problem is settled by "Optimal 4-Approximation for the Correlated Pandora's Problem" (Bansal et al., 21 Sep 2025). The paper studies the minimization model with arbitrary deterministic opening costs OB\mathcal O\subseteq B3, arbitrary joint distribution OB\mathcal O\subseteq B4 over scenarios OB\mathcal O\subseteq B5, and arbitrary correlations among box volumes. The benchmark is the optimal partially adaptive policy: the algorithm fixes an ordering of the boxes up front, opens boxes in that fixed order, and stops adaptively.

The main theorem states that Balanced Stopping with Poisson Rounding is a OB\mathcal O\subseteq B6-approximation to the optimal partially adaptive algorithm (Bansal et al., 21 Sep 2025). The factor is optimal because Correlated Pandora contains Min Sum Set Cover as a special case. The same paper explicitly identifies the factor-OB\mathcal O\subseteq B7 lower bound through this reduction.

The proof is LP-based rather than purely combinatorial. In continuous time, the relaxation uses cumulative start-time variables OB\mathcal O\subseteq B8 and scenario-dependent variables OB\mathcal O\subseteq B9, with per-scenario LP objective

EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].0

The algorithm converts the fractional solution into randomized arrivals through non-homogeneous Poisson processes and then applies a stopping rule based on the balanced time

EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].1

If EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].2 is the first-arrival time of box EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].3, define

EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].4

Balanced Stopping stops at EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].5 and takes the corresponding box (Bansal et al., 21 Sep 2025).

The core scenario-wise guarantee is

EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].6

Taking expectation over EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].7 yields the global EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].8-approximation theorem (Bansal et al., 21 Sep 2025). Methodologically, the paper replaces earlier combinatorial amortization arguments with an LP/convex relaxation, Poisson rounding, and an algebraic linearization that compares each scenario directly to the relaxation.

This result improves on the earlier EvD ⁣[bOcb+minbOvb].\mathbb E_{v\sim D}\!\left[\sum_{b\in \mathcal O} c_b + \min_{b\in \mathcal O} v_b\right].9-approximation of the posterior-Weitzman approach (Gergatsouli et al., 2023) and on the earlier vv0-approximation from the first sample-access work on correlated Pandora (Chawla et al., 2019), while matching the hardness inherited from MSSC (Bansal et al., 21 Sep 2025).

5. Structured correlated variants and adjacent models

A major structured subclass is "Markovian Pandora's box" (Yang et al., 31 Jan 2025). In that model, rewards are correlated through a directed acyclic graph vv1 that specifies both order constraints and Markovian dependence. Along a directed line vv2,

vv3

The objective returns to the classical maximization form,

vv4

This structured correlation admits stronger positive results than the arbitrary-joint-distribution model: for a forest-structured precedence graph, there exists a fully adaptive algorithm that achieves the optimal expected payoff in polynomial time and space; under static transition, the paper gives near-optimal truncation results for multi-line graphs and a vv5-approximation in forests (Yang et al., 31 Jan 2025).

This structured-correlated line should be contrasted with models that generalize Pandora in other directions but retain independence across boxes. "Pandora's Box Problem with Order Constraints" (Boodaghians et al., 2020) proves optimal threshold strategies for tree-like precedence constraints under independent rewards, but not for correlated rewards. A plausible implication is that precedence constraints and statistical dependence are orthogonal sources of difficulty: tree-structured feasibility can preserve Weitzman-style greedy optimality under independence, whereas arbitrary correlation already destroys static indexability in the unconstrained setting.

A separate distinction concerns delegation. "Delegated Pandora's box" (Bechtel et al., 2022) allows correlation within each element between the principal’s value vv6 and the agent’s value vv7, but assumes independence across elements: vv8 Its positive approximation results rely on that product structure, so it is not a correlated-Pandora result in the sense of arbitrary joint distributions over boxes (Bechtel et al., 2022).

The terminology can also be misleading in broader costly-information frameworks. "Commitment Gap via Correlation Gap" (Chawla et al., 27 Aug 2025) studies Costly Information Combinatorial Selection under product-distributed item values. Its use of correlation gap refers to the correlation gap of a feasibility system and ex ante versus ex post relaxations, not to arbitrary cross-item statistical dependence. Thus it is directly relevant to generalized Pandora under combinatorial constraints, but not a solution to fully correlated Pandora’s Box (Chawla et al., 27 Aug 2025).

6. Learning, applications, and scope

The first systematic treatment of correlated Pandora with sample access is "Pandora's Box with Correlations: Learning and Approximation" (Chawla et al., 2019). In that framework, the algorithm does not know the joint distribution explicitly and receives i.i.d. samples from it. The paper proves polynomial sample complexity for learning near-optimal partially adaptive strategies and gives a vv9-competitive PA algorithm against the optimal PA benchmark for the single-item minimization problem. It also gives constant-factor and mm0-type results for richer feasibility constraints, while showing that fully adaptive strategies are not efficiently approximable to within any sub-linear factor in the sample-access model (Chawla et al., 2019).

As a baseline, "Generalizing Complex Hypotheses on Product Distributions: Auctions, Prophet Inequalities, and Pandora's Problem" (Guo et al., 2019) provides near-tight sample-complexity results for Pandora’s problem on product distributions, including an upper bound of

mm1

samples and a lower bound of

mm2

The paper is explicitly an independence benchmark rather than a correlated result, but it clarifies how much of the classical learning theory depends on product structure (Guo et al., 2019).

Pandora-style reasoning has also been exported to correlated Bayesian optimization. "Cost-aware Bayesian Optimization via the Pandora's Box Gittins Index" (Xie et al., 2024) interprets classical Pandora as a cost-aware black-box optimization problem and defines the Pandora’s Box Gittins Index acquisition function by

mm3

The method plugs a correlated Gaussian-process posterior into the independent-box Gittins/Pandora formula. The paper is explicit that this is not an exact solution to the fully general correlated Pandora problem, but rather a posterior-plug-in heuristic that performs well empirically, particularly in medium-high dimensions (Xie et al., 2024).

The present scope of the field is therefore stratified. For arbitrary joint distributions over boxes, the minimization problem against the partially adaptive benchmark now has an optimal polynomial-time factor mm4 approximation (Bansal et al., 21 Sep 2025). Weitzman-style posterior reservation values give a simpler and near-optimal mm5 approximation, together with polynomial-sample learnability for the partial-update variant (Gergatsouli et al., 2023). Fully adaptive approximation remains tied to decision-tree complexity in the general explicit-support model (Chawla et al., 2021). Structured subclasses, such as Markovian DAG models, can recover exact fully adaptive tractability on forests (Yang et al., 31 Jan 2025). This suggests that the decisive issue is not merely the presence of correlation, but the interaction between correlation, benchmark class, and representational structure.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Correlated Pandora's Problem.