---
title: Minimax-Optimal Rate of Convergence
url: https://www.emergentmind.com/topics/minimax-optimal-rate-of-convergence
type: topic
---

# Minimax-Optimal Rate of Convergence

A minimax-optimal rate of convergence is the sharpest possible rate (in terms of sample size or computational steps) at which a statistical estimator or algorithm can approximate an underlying object (such as a function, parameter, set, or operator), in the worst-case scenario over a specified class of problems. This fundamental concept plays a central role in nonparametric statistics, machine learning, optimization, and information theory. It quantifies the *inherent* statistical or numerical complexity of a problem and serves as the gold standard for both lower bounds (impossibility results) and for benchmarking estimators, procedures, or algorithms.

## 1. Formal Definition and General Principles

Given a statistical or computational problem class $\mathcal{P}$, sample size $n$ (or computational budget $T$), and a risk/loss metric $d(\hat\theta, \theta)$, the minimax risk is defined as:
\[
R_n^* = \inf_{\hat\theta} \sup_{P\in\mathcal{P}} \mathbb{E}_P[d(\hat\theta, \theta(P))]
\]
The minimax-optimal rate of convergence is a sequence $a_n\to0$ such that
\[
c_1 a_n \leq R_n^* \leq c_2 a_n
\]
(up to constants and sometimes log factors), for suitably large $n$, and where $a_n$ is tight in the sense that for any $b_n\ll a_n$, $R_n^*/b_n\to\infty$.

This rate is attained or nearly attained by a specific estimator or algorithm which is referred to as minimax-rate-optimal.

## 2. Techniques for Establishing Lower and Upper Minimax Rates

### Lower Bounds

A lower bound is proved via
- *Le Cam's method*: constructing two or more "hard-to-distinguish" hypotheses such that their risks are separated, yet the total variation or Hellinger divergence between the associated distributions is small.
- *Assouad's lemma*: using a large, well-separated packing of the parameter space to bound the estimator risk below by the average pairwise risk.
- *Fano's inequality* or *Fano–Tsybakov method*: relating the minimax risk to the mutual information or average Kullback–Leibler divergence among codewords/hypotheses.

### Upper Bounds

Match the lower rate with a constructive procedure:
- For nonparametric/functional estimation: regularized local polynomial estimators, kNN, sieve-MLE, penalized splines, kernel methods, or tamed-LS estimators.
- For minimax optimization: carefully tuned first/second order methods with restarts or adaptive step sizes.
- For functional ANOVA and shape constraints: spline-ANOVA or convex spline estimators with adaptivity to constraints.

Matching upper and lower bounds demonstrates sharp minimax optimality.

## 3. Representative Examples Across Modern Statistics and Machine Learning

The minimax-optimal rate depends on the geometry and smoothness of the parameter class and the noise model. Below is a selection of precise rates from canonical settings, statistically and algorithmically:

| Problem                       | Model/Assumptions               | Minimax Rate                | arXiv ID       |
|-------------------------------|----------------------------------|-----------------------------|----------------|
| Manifold Estimation           | $d$-dim C² submanifold in $\mathbb{R}^D$, Hausdorff distance | $n^{-2/(d+2)}$               | [1007.0549]    |
| KL Divergence Estimation (Cont.) | $s$-Hölder densities, $d$-dim    | $n^{-2s/(2s+d)}$            | [2002.11599]   |
| KL Divergence Estimation (Discrete) | Alphabet size $k$, density-ratio bound $f(k)$ | $(\frac{k}{n\log k}+\frac{kf(k)}{n\log k})^2 + \frac{\log^2 f(k)}{n} + \frac{f(k)}{n}$ | [1607.02653]   |
| Flow Matching (Gen. models)    | Besov class, $W_p$-distance     | $n^{-(s+1)/(2s+d)}$         | [2405.20879]   |
| Distributional Regression (CRPS) | $h$-Hölder class               | $n^{-2h/(2h+d)}$            | [2205.04360]   |
| Adaptive kNN Classification/Regression | Bounded support/density margin | $N^{-4/(d+4)}$ (regression) | [1910.10513]   |
| Functional ANOVA with Derivatives | Sobolev order $m$, interaction, $p$ partials | $n^{-2m/(2m+1)}$ or $n^{-1}$ | [1706.00850]   |
| Convex-Concave Minimax Optimization | 2nd order, smooth convex-concave | $O(\varepsilon^{-2/3})$ iter. | [2406.02016]   |
| Nonlocal Kernel Learning       | Sobolev/Hölder $\beta$          | $M^{-2\beta/(2\beta+1)}$    | [2311.16852]   |
| Multivariate Deviated Models   | MLE, distinguishability cond.   | $n^{-1}$ in deviation, $n^{-1/2}/\lambda^*$ in param. | [2301.11808]   |
| Nonparametric Regression under Adversarial $L_q$-Risk | Hölder $s$, adversarial radius $\epsilon$ | $n^{-2s/(2s+d)}+\epsilon^{2(1\wedge s)}n^{-2(s-(1\wedge s))/(2s+d)}$ | [2506.01267]   |
| Shape-constrained Convex Estimation | Convex, Hölder $1<\alpha\leq 2$ | $n^{-\alpha/(2\alpha+1)}(\log n)^{\alpha/(2\alpha+1)}$ | [1306.1866]    |
| Mixture of Normals Density Estimation | Location mixtures, ISB loss | $n^{-1}\sqrt{\log n}$        | [1112.4565]    |
| High-Dim Covariance Estimation w/ Missing Data | Bandable/sparse, MCR model   | $(n_{\min}^*)^{-2\alpha/(2\alpha+1)} + \ln p/n_{\min}^*$ | [1605.04358]   |

These rates reflect the geometric and functional structure of the problem—the key determinant of statistical complexity.

## 4. Structural Determinants and Universality of Minimax Rates

- The **intrinsic dimension** ($d$) rather than the ambient dimension typically controls the exponent (e.g., manifold estimation [1007.0549], nonparametric regression).
- **Smoothness**/regularity (Sobolev, Hölder, Besov indices) manifests in the rate exponent denominator.
- **Noise structure** (e.g., adversarial, deconvolution, mixture) appears in additional rate terms, sometimes leading to phase transitions (e.g., shuffled regression [2404.09306]).
- **Constraints** (e.g., convexity, monotonicity) may slow the rate only by log-factors (e.g., convex estimation [1306.1866]).
- In high-dimensional sparse models, minimax rates incorporate both sparsity level and ambient dimension (covariance [1605.04358], lₚ-mixed-norm MKL [1103.5202]).

The minimax rate is universal in the sense that it cannot be improved by any estimator or algorithm under the stated assumptions, up to possible polylogarithmic terms.

## 5. Impact on Algorithm Design and Evaluation

Minimax theory serves as both a lower bound for impossibility results and a constructive goal for algorithmic innovation.

- In adaptive and robust statistics, establishing minimax-optimality of *data-driven* procedures (e.g., adaptive kNN, Lepski-type bandwidth selection) is nontrivial and ensures practical competitiveness [2506.01267,1910.10513].
- In minimax optimization, the rate prescribes the optimal convergence versus iteration complexity for first- and second-order methods, and drives the development of restarts, acceleration, and optimism (e.g., AG-OG [2210.17550], adaptive second-order methods [2406.02016]).
- For estimation under adversarial uncertainty, minimax-optimal plug-in estimators are modular and guarantee best possible trade-offs between estimation error and robustness [2410.09402,2506.01267].
- In high-dimensional settings, the minimax rate informs both estimator tuning (e.g., block size, threshold) and the necessary empirical process control for handling incomplete or structured data.

## 6. Extensions, Phase Transitions, and Open Problems

- **Phase transitions**: Statistical rates frequently change regime as a function of key problem parameters, e.g., adversarial-attack magnitude [2506.01267], signal-to-noise ratio in shuffled regression [2404.09306].
- **Boundary Case Behavior**: When the model regularity is at threshold (e.g., smoothness at 1/2), log-factors or even subpolynomial convergence terms arise.
- **Non-Euclidean, Structured, or Nonparametric Models**: Generalizing to graphs, manifolds, shapes, or dependent data requires sophisticated entropy and hypothesis-packing analyses.
- **Adaptivity and Robustness**: Simultaneously achieving minimax-optimal rates over collections of models (unknown smoothness, unknown attack size) often requires multi-scale or adaptive procedures [2506.01267].

Open problems include sharp minimax rates under composite or nonstandard noise, rates for high-dimensional inference under non-classical missingness, and the complexity of computing minimax-optimal estimators algorithmically.

## 7. References

Key references for foundational and contemporary results include:
- [1007.0549] Minimax Manifold Estimation
- [2002.11599] Minimax Optimal Estimation of KL Divergence for Continuous Distributions
- [1607.02653] Estimation of KL Divergence: Optimal Minimax Rate
- [2405.20879] Flow matching achieves almost minimax optimal convergence
- [2205.04360] Distributional regression and its evaluation with the CRPS: Bounds and convergence of the minimax risk
- [1910.10513] Minimax Rate Optimal Adaptive Nearest Neighbor Classification and Regression
- [1706.00850] Minimax Optimal Rates of Estimation in Functional ANOVA Models with Derivatives
- [2410.09402], [2506.01267] Minimax rates for adversarial learning
- [1306.1866] Minimax Optimal Estimation of Convex Functions in the Supreme Norm
- [2311.16852] Optimal minimax rate of learning nonlocal interaction kernels
- [2301.11808] Minimax Optimal Rate for Parameter Estimation in Multivariate Deviated Models
- [1605.04358] Minimax Rate-optimal Estimation of High-dimensional Covariance Matrices with Incomplete Data
- [2002.05683] An Optimal Multistage Stochastic Gradient Method for Minimax Problems

The minimax-optimal rate of convergence thus captures and crystallizes the fundamental limitations of statistical and algorithmic procedures for rich, high-complexity models.

Source: https://www.emergentmind.com/topics/minimax-optimal-rate-of-convergence