argmin
Denotes the argument that minimizes a given function or expression in mathematical optimization.
Overview
Essential in optimization theory, machine learning, and computational mathematics for finding input values that yield the minimum output of an objective function.
- Commonly used in statistical estimation and model parameter optimization
- Appears frequently in research papers and technical documentation describing minimization problems
- Often paired with subscripts to specify the variable or domain over which minimization occurs
- Distinguished from min by returning the argument (input value) rather than the minimum value itself
Examples
Finding the value of x that minimizes a quadratic function.
x^* = \argmin_{x \in \mathbb{R}} (x^2 + 2x + 1)Expressing the least squares solution in linear regression.
\beta = \argmin_{\beta} \sum_{i=1}^n (y_i - X_i\beta)^2Optimization problem in machine learning with regularization term.
w = \argmin_{w} \left(\frac{1}{n}\sum_{i=1}^n L(w;x_i) + \lambda\|w\|^2\right)