---
title: Sequential Dependence (SeqDep)
url: https://www.emergentmind.com/topics/sequential-dependence-seqdep
type: topic
---

# Sequential Dependence (SeqDep)

Sequential dependence (SeqDep) concerns the explicit, probabilistically-quantified dependence between variables or operations that unfold in a prescribed order—typically in sequences of random variables or algorithmic procedures. This structure contrasts with both independent sequences and other types of dependency (such as block or spatial dependency), and it induces unique statistical, computational, and algorithmic phenomena. SeqDep is foundational in stochastic modeling, combinatorial optimization, random projection analysis, and probabilistic graphical modeling. The principal frameworks span categorical random variable dependencies [1707.02574], adaptive sequential statistical processes [2402.14026], algorithmic dependency in greedy graph algorithms [1202.3205], and retrieval models such as the sequential dependence model (SDM) [1805.00152].

## 1. Formal Characterization of Sequential Dependence

Sequential dependence in categorical random variables is rigorously formalized by Traylor & Hathcock via a dependency coefficient $\delta \in [0,1]$ applied within a sequence $\{X_n\}_{n\ge1}$, each $X_n$ taking values in a finite alphabet $\{1,2,\dots,K\}$. The dependency manifests through transition rules where for $n \ge 2$ and $i, j \in \{1,\dots,K\}$,

\[
P(X_n = j \mid X_{n-1} = j) = p_j^+ := p_j + \delta (1 - p_j),
\]
\[
P(X_n = j \mid X_{n-1} = i) = p_j^- := p_j - \delta p_j, \quad i \neq j,
\]

with marginal probabilities $p_j = P(X_n = j)$. This construction “boosts” the recurrence of categories while enforcing normalization. Importantly, despite this dependence, each $X_n$ retains the marginal distribution $p_j$, so the variables are identically distributed but not independent.

Beyond this “sequential dependence” (SeqDep), a more general vertical dependency is captured by dependency-generating functions $\alpha \in \mathscr{C}_\delta$, where each $X_n$ is conditionally dependent only on $X_{\alpha(n)}$, with the “dependency continuity” guarantee that any $X_n$ can always be traced back to $X_1$ via iterated applications of $\alpha$ [1707.02574].

## 2. Statistical Properties and Covariance Structure

A key property of SeqDep is that the cross-covariance between indicator variables decays exponentially in both the lag $n-m$ and the coefficient $\delta$:

\[
\Lambda_{ij}^{m,n} = \operatorname{Cov}(\mathbf{1}\{X_m = i\}, \mathbf{1}\{X_n = j\}) =
\begin{cases}
\delta^{n-m} p_i (1 - p_i), & i = j, \\
-\delta^{n-m} p_i p_j, & i \neq j.
\end{cases}
\]

For binary cases ($K=2$), this specializes to $\operatorname{Cov}(X_m, X_n) = pq \delta^{n-m}$ with $p=P(X_i=1)$ and $q=1-p$. This structure provides exact, lag-dependent, tunable correlation without altering the marginal distributions. SeqDep thus enables the embedding of specific temporal correlation profiles into categorical sequences [1707.02574].

## 3. Sequential Dependence in Algorithmic and Process Contexts

SeqDep is intrinsic to many greedy and adaptive algorithms, where each step or iterate depends on a subset of its predecessors. In greedy sequential algorithms for maximal independent sets (MIS) and maximal matchings (MM), the dependence structure is captured by a priority DAG, whose depth reflects the length of sequential dependence. Blelloch, Fineman, and Shun show that for any graph and uniformly random ordering, the dependence length of greedy MIS is $O(\log^2 n)$ with high probability [1202.3205]. This polylogarithmic depth enables efficient parallelization that respects the underlying SeqDep, maintaining both work efficiency and exact structural equivalence to the sequential procedure.

A summary table of algorithmic SeqDep in greedy MIS/MM algorithms:

| Aspect             | Description                                             | Reference           |
|--------------------|--------------------------------------------------------|---------------------|
| Dependency Graph   | Priority DAG defined by algorithm’s precedence         | [1202.3205]         |
| Depth Bound        | $O(\log^2 n)$ rounds (MIS), $O(\log^2 m)$ (MM) w.h.p.  | [1202.3205]         |
| Parallelization    | Each “root” can be processed in parallel each round    | [1202.3205]         |

## 4. SeqDep in High-Dimensional Sequential Random Projection

In sequential random projection, as in streaming and adaptive sketching algorithms, the observed projection at each step is a function of both current and past random choices, inducing a sequence of dependent random variables. The analysis is complicated by the adaptivity; as new data arrives, projections and statistics are updated in a manner dependent on all previous steps.

Ho, Sun, and coauthors develop martingale and stopped process approaches to analyze this dependence, culminating in a non-asymptotic probability bound for sequential embeddings that extends the Johnson-Lindenstrauss (JL) lemma. Here, the adaptation induces sequential dependence because the data $x_t$ at time $t$ is measurable with respect to $\mathcal{F}_{t-1}$, and the random projection $\varphi_t$ is independent of past but enters the history for future steps. Martingale concentration and self-normalized process techniques are needed to handle the adaptive sequence of dependent events, rather than classic union bounds valid only in the i.i.d. case [2402.14026].

## 5. SeqDep in Probabilistic Graphical Models and Information Retrieval

In information retrieval, sequential dependence shapes models of query-document matching. The Sequential Dependence Model (SDM), introduced by Metzler and Croft, models the dependencies between query terms as an undirected Markov Random Field (MRF) [1805.00152]. The cliques in the MRF connect each query term and its neighbor(s) to the document variable, capturing both unigram and bigram dependencies. Mathematically, the SDM scoring function is a log-linear combination of unigram and bigram features, which can be recast as a mixture of language models.

Explicitly, the SDM score is

\[
\mathrm{score}_{\mathrm{SDM}}(d | \mathbf{q}) = \lambda_u \sum_u f_u(d, q) + \lambda_b \sum_b f_b(d, q) + \lambda_w \sum_w f_w(d, q),
\]

where $f_u$, $f_b$, and $f_w$ are features based on Dirichlet-smoothed unigrams, ordered bigrams, and windowed bigrams, respectively. The model thus integrates sequential dependence among query terms into the document-scoring process, providing theoretical foundations for both discriminative and generative modeling approaches [1805.00152].

## 6. Generalizations and Graphical Interpretations

Vertical dependency, as formalized by dependency-generating functions $\alpha \in \mathscr{C}_\delta$, subsumes both SeqDep (when $\alpha(n) = n-1$) and first-kind dependence (FK; $\alpha(n) \equiv 1$). For each dependency generator $\alpha$, one can construct a dependency graph with edges from $n \to \alpha(n)$; dependency continuity guarantees identical-marginal distributions for all $X_n$. This graphical viewpoint unifies diverse sequential and non-sequential dependencies into a single general framework, characterizing possible dependency structures via generative tree- or forest-like directed acyclic graphs [1707.02574].

Examples include:

- SeqDep: a single directed path from each $n$ to $n-1$ to $1$
- FK: a star with all $n$ pointing to 1
- Non-monotonic $\alpha$: more general forests, all nodes eventually connect to 1

These structures illustrate that a wide class of vertically-dependent categorical sequences can be generated with common marginals but exact, tunable lag-dependent cross-covariances.

## 7. Empirical and Practical Implications

Empirical results in parallel greedy algorithms demonstrate that by respecting the sparse sequential-dependence structure, high degrees of parallel speedup are achievable without loss in algorithmic correctness or solution optimality. Sequential dependence, when strictly defined and managed, circumvents the inefficiencies of naïvely parallelizing intrinsically sequential problems [1202.3205].

In sequential random projections, the sharp non-asymptotic concentration bounds derived under SeqDep enable practical guarantees for online, streaming, and adaptive algorithms—settings in which independence does not hold and classical concentration tools fail [2402.14026].

In information retrieval, the SDM demonstrates that both discriminative and generative modeling frameworks are mathematically equivalent up to parameter reinterpretation, with performance contingent on sufficiently fine-grained parameter optimization, not the theoretical formulation per se. This underscores the foundational role of sequential dependence for both the statistical and algorithmic structure of retrieval models [1805.00152].

Source: https://www.emergentmind.com/topics/sequential-dependence-seqdep