Arg max

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found.

As an example, both unnormalised and normalised sinc functions above have arg max of {0} because both attain their global maximum value of 1 at x = 0.

The unnormalised sinc function (red) has arg min of {−4.49, 4.49}, approximately, because it has 2 global minimum values of approximately −0.217 at x = ±4.49. However, the normalised sinc function (blue) has arg min of {−1.43, 1.43}, approximately, because their global minima occur at x = ±1.43, even though the minimum value is the same.[1]

In mathematics, the argument of the maximum (abbreviated arg max or argmax) is the set of points of the given argument for which the given function attains its maximum value.[note 1] In contrast to global maximums, which refer to a function's largest outputs, the arg max refers to the inputs which create those maximum outputs.

Definition

The arg max is defined by

\operatorname*{arg\,max}_x  f(x) := \{x \mid \forall y : f(y) \le f(x)\}.

In other words, it is the set of points x for which f(x) attains its largest value. This set may be empty, have one element, or have multiple elements. For example, if f(x) is 1−|x|, then it attains its maximum value of 1 only at x = 0, so

\operatorname*{arg\,max}_x (1-|x|) = \{0\}.

The arg max operator is the natural complement of the max operator which, given the same function, returns the maximum value instead of the point or points that reach that value; in other words

\max_x f(x) is the element in \{f(x) \mid  \forall y : f(y) \le f(x)\}.

This set can contain no elements (in which case the maximum is undefined) or one element, but cannot contain multiple elements.

Equivalently, if M is the maximum of f, then the arg max is the level set of the maximum:

\operatorname*{arg\,max}_x \, f(x) = \{ x \mid f(x) = M \} =: f^{-1}(M)

If the maximum is reached at a single point then this point is often referred to as the arg max, meaning we define the arg max as a point, not a set of points. So, for example,

\operatorname*{arg\,max}_{x\in\mathbb{R}} (x(10-x)) = 5

(rather than the singleton set {5}), since the maximum value of x(10 − x) is 25, which occurs for x = 5.[note 2] However, in case the maximum is reached at many points, arg max is a set of points.

Then, we have for example

\operatorname*{arg\,max}_{x \in [0,4\pi]} \cos(x) = \{0,2\pi,4\pi\}

since the maximum value of cos(x) is 1, which occurs on this interval for x = 0, 2π or 4π. On the whole real line, the arg max is \{0, 2\pi, -2\pi, 4\pi, \dots \}.

Note also that functions do not in general attain a maximum value, and hence will in general not have an arg max: \operatorname*{arg\,max}_{x\in\mathbb{R}} x^3 is the empty set, as x^3 is unbounded on the real line. However, by the extreme value theorem (or the classical compactness argument), a continuous function on a compact interval has a maximum, and thus an arg max.

Arg min

arg min (or argmin) stands for argument of the minimum, and is defined analogously. For instance,

\operatorname*{arg\,min}_x \, f(x)

are points x for which f(x) attains its smallest value. The complementary operator is, of course, min.

See also

Notes

  1. For clarity, we refer to the input (x) as points and the output (y) as values; compare critical point and critical value.
  2. Note that x(10-x) = 25-(x-5)^2\le 25 with equality if and only if x-5=0.

External links