---
title: Non-Euclidean Trust-Region Optimization
url: https://www.emergentmind.com/topics/non-euclidean-trust-region-optimization
type: topic
---

# Non-Euclidean Trust-Region Optimization

Non-Euclidean trust-region optimization generalizes classical trust-region (TR) methods by allowing the definition of the “trust” set via non-Euclidean norms, metrics, or proximities, and, in some cases, formulating the subproblems on spaces lacking vector space structure. This framework encompasses both second-order methods with adaptive geometry and first-order approaches relevant to large-scale, composite, or non-smooth problems. The non-Euclidean perspective interfaces directly with modern quasi-Newton methods, Riemannian optimization, as well as stochastic and momentum methods, as detailed in recent works [2412.11991][2209.12057][2010.07547][2503.12645]. The overarching motivation is improved convergence behavior, problem-adapted step selection, and algorithmic flexibility, particularly for high-dimensional or geometrically intricate problems.

## 1. Formalism and Abstract Metric-Space Trust-Region Methods

Classical TR methods seek a step $s$ by minimizing a (typically quadratic) local model of the objective $f$ subject to $\|s\|_2 \leq \Delta$, using the Euclidean norm. Non-Euclidean generalizations replace the Euclidean norm by a user-chosen norm, a shape-adaptive norm, or, more generally, a metric, or even formulate the method on a metric space $(X, d)$, possibly lacking vector addition or scaling.

### Metric-Space Trust Regions

Let $(X, d)$ be a compact metric space and $J: X \to \mathbb{R}$ an objective. At each iteration $k$, a model $m_k: X \to \mathbb{R}$ with $m_k(x_k) = J(x_k)$ and trust-region radius $\Delta_k > 0$ are used. The subproblem is
\[
\text{minimize} \ \ m_k(y) \quad \text{subject to} \ d(x_k, y) \leq \Delta_k, \quad y \in X,
\]
where $d(x_k, y)$ measures proximity and does not require vector-space operations. The acceptance criterion involves the ratio $\rho_k = \frac{J(x_k) - J(y_k)}{m_k(x_k) - m_k(y_k)}$, analogous to classical TR methods, and $\Delta_k$ is updated based on this ratio, typically via doubling or halving rather than resetting to an initial value [2412.11991].

Convergence in this setting relies on a "criticality" function $C: X \to [0, \infty)$, with $C(x) = 0$ characterizing first-order stationarity, and a suite of regularity/finiteness conditions on the model decrease, reduction ratios, and small-move properties. Under these, the method produces accumulation points that are stationary (i.e., $C(\bar{x}) = 0$).

## 2. Non-Euclidean Trust-Region Subproblems

In non-Euclidean settings, the trust-region constraint is defined by a norm $\|\cdot\|$ (not necessarily Euclidean), or a geometry adapting to the local curvature or problem structure.

### Shape-Changing Norms and Curvature-Adaptive Geometry

At each iteration, define the model $m_k(s) = g_k^\top s + \frac{1}{2}s^\top B_k s$, where $B_k$ is an approximation to $\nabla^2 f(x_k)$. The trust region is given by a "shape-changing" norm
\[
\|s\|_{P,\alpha} = \max\{\|P_\parallel^\top s\|_\alpha, \|P_\perp^\top s\|_2\},
\]
where $P_\parallel$ and $P_\perp$ are determined by the eigenspaces of $B_k$. The resulting subproblem typically decouples into lower-dimensional or coordinate-wise constrained quadratic problems, often admitting closed-form solutions. This construction enables effective preconditioning and efficient solution even when $B_k$ is constructed via low-rank or memory-limited quasi-Newton updates, e.g., multipoint symmetric secant (MSS) methods [2209.12057].

### Non-Euclidean First-Order Trust-Region Steps

A first-order non-Euclidean TR step solves
\[
\min_{s\in V}\; \langle \nabla f(x), s \rangle \ \text{subject to}\ \|s\| \leq \Delta,
\]
where $V$ is a finite-dimensional vector space, and $\|\cdot\|$ is any norm (such as $\ell_p$, spectral, or others). For deep learning, when $\|\cdot\|$ is the matrix spectral norm, the solution is the orthogonalized gradient projector, and for other norms, corresponds to normalized gradient or signSGD-type updates [2503.12645].

## 3. Riemannian and Geometry-Adaptive Trust-Region Methods

Non-Euclidean TR methods on manifolds and with variable metrics extend the algorithm to structured domains with intrinsic geometric constraints.

### Riemannian Trust-Region Framework

For the boundary trust-region subproblem (BTRS)
\[
\min_{x\in \mathbb{R}^n}\ x^\top A x + b^\top x + c\quad \text{subject to } x^\top M x = \Delta^2,
\]
the feasible set is a Riemannian submanifold (ellipsoid or sphere) in $\mathbb{R}^n$. The Riemannian gradient and Hessian are computed using the chosen metric (e.g., $M \succ 0$), and retraction steps ensure feasibility [2010.07547]. Riemannian TR (RTR) methods solve subproblems in the tangent space subject to the manifold constraints, preserving curvature and geometric fidelity. Preconditioning can be incorporated via a variable metric $M_x$, tuned to local Hessian properties, facilitating globally convergent, matrix-free methods.

Critical points correspond to affine eigenpairs, and the distinction between "easy" and "hard" cases for global optimality is made explicit in this framework.

## 4. Algorithmic Structures and Theoretical Guarantees

Non-Euclidean TR methods are characterized by their subproblem structure, step acceptance, radius update, and global convergence properties. The following table summarizes main algorithmic steps in several settings:

| Setting                            | Subproblem (TR)                      | Model/Norm         | Optimality     |
|-------------------------------------|--------------------------------------|--------------------|---------------|
| Metric-space (abstract) [2412.11991]| $\min m_k(y)$ s.t. $d(x_k, y)\leq\Delta_k$ | Model $m_k$ on $(X,d)$ | $C(x)=0$      |
| Shape-changing TR [2209.12057]      | $\min m_k(s)$ s.t. $\|s\|_{P,\alpha}\leq\Delta_k$ | Adaptive norm   | $\nabla f\approx 0$ |
| Riemannian TR [2010.07547]          | Quadratic in tangent space, $\|\eta\|_M\leq\Delta_k$ | Riemannian metric | $\grad f=0$   |
| First-order TR [2503.12645]         | $\min \langle g, s \rangle$ s.t. $\|s\|\leq\Delta$ | Arbitrary norm  | $\nabla f=0$  |

Convergence results follow under mild conditions:
- In abstract metric spaces, accumulation points are stationary provided the criticality gap and reduction conditions (A1)-(A4) hold.
- For shape-changing and Riemannian methods, under Lipschitz, boundedness, and subproblem accuracy assumptions, iterates converge to stationary points and possess complexity bounds matching Euclidean methods.
- First-order non-Euclidean TR methods with momentum are proven to achieve state-of-the-art convergence rates for smooth, non-convex, and star-convex problems [2503.12645].

## 5. Applications in Integer Optimal Control and Deep Learning

Non-Euclidean TR methods have been applied to problems where classical approaches are inadequate, including discrete-valued (integer) control, total variation (TV)-regularized estimation, and stochastic training of deep neural networks.

### Integer Optimal Control with TV Regularization

When controls are restricted to discrete values and the penalty involves total variation, the admissible set has no vector-space structure. The trust-region subproblem is formulated using an $L^1$-metric:
\[
\min_{w \in X} (g, w-w_k)_{L^2} + TV(w) - TV(w_k) \quad \text{s.t.} \ \|w-w_k\|_{L^1} \leq \Delta_k,\; w(x)\in W,
\]
where $X\subset BV(0,1)$ and $W$ is discrete [2412.11991]. This setting requires the non-Euclidean, metric-space formulation. Convergence is shown via properties of the total variation jump sum and TV regularization, and computational benchmarks reveal that no-reset radius adaptation yields 40–80% faster algorithms with less than 10% degradation in final objectives.

### Deep Learning Optimization via Non-Euclidean Trust-Regions

Matrix gradient orthogonalization can be interpreted as a spectral-norm trust-region step. The Muon optimizer applies a stochastic non-Euclidean TR method with momentum and spectral-norm constraint. Algorithmic and theoretical analyses reveal improved convergence rates, tighter variance bounds, and practical superiority over methods that orthogonalize at the gradient level but not in the momentum (such as Orthogonal-SGDM) [2503.12645].

The stochastic non-Euclidean TR framework also unifies normalized SGD ($\ell_2$-norm), signSGD ($\ell_\infty$-norm), and other variants by suitable norm selection. Convergence bounds are established for both deterministic and stochastic, smooth and star-convex settings.

## 6. Practical Implications, Computational Performance, and Guidelines

Empirical results across large-scale CUTEst test sets indicate that shape-changing norm TR methods, especially those with dense initialization in the MSS matrix, consistently outperform classical Euclidean-norm approaches, both in function evaluations and CPU time, typically closing 85% of problems within twice the optimal time (versus 60% for classical truncated-CG) [2209.12057]. In integer optimal control with TV, the avoidance of radius resets leads to 40–80% runtime reduction at minimal loss in objective [2412.11991].

Best practice guidelines derived from applications include:
- Adapting the norm to the problem structure, e.g., using spectral norm for matrix layers or $\ell_\infty$ for quantized setups in deep learning.
- Employing momentum and step-size selection mechanisms that harmonize with the underlying geometry.
- Leveraging dense quasi-Newton initializations and memory selection (e.g., $m=3$, subspace-initialization window $q=5$) for robust performance in shape-changing TRs [2209.12057].
- Decoupling weight decay from the main update, as in AdamW, integrating regularization directly into the trust-region projected step [2503.12645].
- Employing variable-metric preconditioning in Riemannian TR settings to moderate the Hessian condition number and accelerate local convergence [2010.07547].

## 7. Connections, Extensions, and Outlook

Non-Euclidean trust-region optimization subsumes a spectrum of modern algorithmic paradigms by allowing problem-adapted local geometry, non-vector-space admissible sets, and non-Euclidean constraints. This enables seamless extension to Riemannian manifolds, convex-composite models, and combinatorial feasible sets.

A plausible implication is that further development of efficient solvers for non-Euclidean TR subproblems, especially in stochastic or high-dimensional regimes, will be central to advances in optimization for structured deep networks, large-scale discrete control, and machine learning problems with intricate regularization or geometry. Connection to affine eigenproblem perspectives via Riemannian TRs suggests fruitful avenues for theoretical unification and efficient solver design [2010.07547].

Open research questions include refined complexity bounds under typical loss landscapes in deep learning, optimal adaptive norm selection, and characterization of global convergence in highly nonconvex non-Euclidean settings. Non-Euclidean trust-region optimization thus remains a central and expanding theme in theoretical and applied optimization research.

Source: https://www.emergentmind.com/topics/non-euclidean-trust-region-optimization