Fixed-point computation

From testwiki
Jump to navigation Jump to search

Template:Short description Template:CS1 config Fixed-point computation refers to the process of computing an exact or approximate fixed point of a given function.[1] In its most common form, the given function f satisfies the condition to the Brouwer fixed-point theorem: that is, f is continuous and maps the unit d-cube to itself. The Brouwer fixed-point theorem guarantees that f has a fixed point, but the proof is not constructive. Various algorithms have been devised for computing an approximate fixed point. Such algorithms are used in economics for computing a market equilibrium, in game theory for computing a Nash equilibrium, and in dynamic system analysis.

Definitions

an example function with three fixed points
The graph of an example function with three fixed points

The unit interval is denoted by E:=[0,1], and the unit d-dimensional cube is denoted by Ed. A continuous function f is defined on Ed (from Ed to itself). Often, it is assumed that f is not only continuous but also Lipschitz continuous, that is, for some constant L, |f(x)f(y)|L|xy| for all x,y in Ed.

A fixed point of f is a point x in Ed such that f(x)=x. By the Brouwer fixed-point theorem, any continuous function from Ed to itself has a fixed point. But for general functions, it is impossible to compute a fixed point precisely, since it can be an arbitrary real number. Fixed-point computation algorithms look for approximate fixed points. There are several criteria for an approximate fixed point. Several common criteria are:[2]

  • The residual criterion: given an approximation parameter ε>0 , An Template:Mvar-residual fixed-point of f is a point x in Ed' such that |f(x)x|ε, where here || denotes the maximum norm. That is, all d coordinates of the difference f(x)x should be at most Template:Mvar.[3]Template:Rp
  • The absolute criterion: given an approximation parameter δ>0, A δ-absolute fixed-point of f is a point x in Ed such that |xx0|δ, where x0 is any fixed-point of f.
  • The relative criterion: given an approximation parameter δ>0, A δ-relative fixed-point of f is a point x in Ed such that |xx0|/|x0|δ, where x0 is any fixed-point of f.

For Lipschitz-continuous functions, the absolute criterion is stronger than the residual criterion: If f is Lipschitz-continuous with constant L, then |xx0|δ implies |f(x)f(x0)|Lδ. Since x0 is a fixed-point of f, this implies |f(x)x0|Lδ, so |f(x)x|(1+L)δ. Therefore, a δ-absolute fixed-point is also an Template:Mvar-residual fixed-point with ε=(1+L)δ.

The most basic step of a fixed-point computation algorithm is a value query: given any x in Ed, the algorithm is provided with an oracle f~ to f that returns the value f(x). The accuracy of the approximate fixed-point depends upon the error in the oracle f~(x).

The function f is accessible via evaluation queries: for any x, the algorithm can evaluate f(x). The run-time complexity of an algorithm is usually given by the number of required evaluations.

Contractive functions

A Lipschitz-continuous function with constant L is called contractive if L<1; it is called weakly-contractive if L1. Every contractive function satisfying Brouwer's conditions has a unique fixed point. Moreover, fixed-point computation for contractive functions is easier than for general functions.

computing a fixed point using function iteration
Computing a fixed point using function iteration

The first algorithm for fixed-point computation was the fixed-point iteration algorithm of Banach. Banach's fixed-point theorem implies that, when fixed-point iteration is applied to a contraction mapping, the error after t iterations is in O(Lt). Therefore, the number of evaluations required for a δ-relative fixed-point is approximately logL(δ)=log(δ)/log(L)=log(1/δ)/log(1/L). Sikorski and Wozniakowski[4] showed that Banach's algorithm is optimal when the dimension is large. Specifically, when dlog(1/δ)/log(1/L), the number of required evaluations of any algorithm for δ-relative fixed-point is larger than 50% the number of evaluations required by the iteration algorithm. Note that when L approaches 1, the number of evaluations approaches infinity. No finite algorithm can compute a δ-absolute fixed point for all functions with L=1.[5]

When L < 1 and d = 1, the optimal algorithm is the Fixed Point Envelope (FPE) algorithm of Sikorski and Wozniakowski.[4] It finds a δ-relative fixed point using O(log(1/δ)+loglog(1/(1L))) queries, and a δ-absolute fixed point using O(log(1/δ)) queries. This is faster than the fixed-point iteration algorithm.[6]

When d>1 but not too large, and L1, the optimal algorithm is the interior-ellipsoid algorithm (based on the ellipsoid method).[7] It finds an Template:Mvar-residual fixed-point using O(dlog(1/ε)) evaluations. When L<1, it finds a δ-absolute fixed point using O(d[log(1/δ)+log(1/(1L))]) evaluations.

Shellman and Sikorski[8] presented an algorithm called BEFix (Bisection Envelope Fixed-point) for computing an Template:Mvar-residual fixed-point of a two-dimensional function with 'L1, using only 2log2(1/ε)+1 queries. They later[9] presented an improvement called BEDFix (Bisection Envelope Deep-cut Fixed-point), with the same worst-case guarantee but better empirical performance. When L<1, BEDFix can also compute a δ-absolute fixed-point using O(log(1/ε)+log(1/(1L))) queries.

Shellman and Sikorski[2] presented an algorithm called PFix for computing an Template:Mvar-residual fixed-point of a d-dimensional function with L ≤ 1, using O(logd(1/ε)) queries. When L < 1, PFix can be executed with ε=(1L)δ, and in that case, it computes a δ-absolute fixed-point, using O(logd(1/[(1L)δ])) queries. It is more efficient than the iteration algorithm when L is close to 1. The algorithm is recursive: it handles a d-dimensional function by recursive calls on (d-1)-dimensional functions.

Algorithms for differentiable functions

When the function f is differentiable, and the algorithm can evaluate its derivative (not only f itself), the Newton method can be used and it is much faster.[10][11]

General functions

For functions with Lipschitz constant L > 1, computing a fixed-point is much harder.

One dimension

For a 1-dimensional function (d = 1), a δ-absolute fixed-point can be found using O(log(1/δ)) queries using the bisection method: start with the interval E:=[0,1]; at each iteration, let x be the center of the current interval, and compute f(x); if f(x)>x then recurse on the sub-interval to the right of x; otherwise, recurse on the interval to the left of x. Note that the current interval always contains a fixed point, so after O(log(1/δ)) queries, any point in the remaining interval is a δ-absolute fixed-point of f Setting δ:=ε/(L+1), where L is the Lipschitz constant, gives an Template:Mvar-residual fixed-point, using O(log(L/ε)=log(L)+log(1/ε)) queries.[3]

Two or more dimensions

For functions in two or more dimensions, the problem is much more challenging. Shellman and Sikorski[2] proved that for any integers d ≥ 2 and L > 1, finding a δ-absolute fixed-point of d-dimensional L-Lipschitz functions might require infinitely many evaluations. The proof idea is as follows. For any integer T > 1 and any sequence of T of evaluation queries (possibly adaptive), one can construct two functions that are Lipschitz-continuous with constant L, and yield the same answer to all these queries, but one of them has a unique fixed-point at (x, 0) and the other has a unique fixed-point at (x, 1). Any algorithm using T evaluations cannot differentiate between these functions, so cannot find a δ-absolute fixed-point. This is true for any finite integer T.

Several algorithms based on function evaluations have been developed for finding an Template:Mvar-residual fixed-point

  • The first algorithm to approximate a fixed point of a general function was developed by Herbert Scarf in 1967.[12][13] Scarf's algorithm finds an Template:Mvar-residual fixed-point by finding a fully labeled "primitive set", in a construction similar to Sperner's lemma.
  • A later algorithm by Harold Kuhn[14] used simplices and simplicial partitions instead of primitive sets.
  • Developing the simplicial approach further, Orin Harrison Merrill[15] presented the restart algorithm.
  • B. Curtis Eaves[16] presented the homotopy algorithm. The algorithm works by starting with an affine function that approximates f, and deforming it towards f while following the fixed point. A book by Michael Todd[1] surveys various algorithms developed until 1976.
  • David Gale[17] showed that computing a fixed point of an n-dimensional function (on the unit d-dimensional cube) is equivalent to deciding who is the winner in a d-dimensional game of Hex (a game with d players, each of whom needs to connect two opposite faces of a d-cube). Given the desired accuracy Template:Mvar
    • Construct a Hex board of size kd, where k>1/ε. Each vertex z corresponds to a point z/k in the unit n-cube.
    • Compute the difference f(z/k) - z/k; note that the difference is an n-vector.
    • Label the vertex z by a label in 1, ..., d, denoting the largest coordinate in the difference vector.
    • The resulting labeling corresponds to a possible play of the d-dimensional Hex game among d players. This game must have a winner, and Gale presents an algorithm for constructing the winning path.
    • In the winning path, there must be a point in which fi(z/k) - z/k is positive, and an adjacent point in which fi(z/k) - z/k is negative. This means that there is a fixed point of f between these two points.

In the worst case, the number of function evaluations required by all these algorithms is exponential in the binary representation of the accuracy, that is, in Ω(1/ε).

Query complexity

Hirsch, Papadimitriou and Vavasis proved that[3] any algorithm based on function evaluations, that finds an Template:Mvar-residual fixed-point of f, requires Ω(L/ε) function evaluations, where L is the Lipschitz constant of the function f(x)x (note that L1LL+1). More precisely:

  • For a 2-dimensional function (d=2), they prove a tight bound Θ(L/ε).
  • For any d ≥ 3, finding an Template:Mvar-residual fixed-point of a d-dimensional function requires Ω((L/ε)d2) queries and O((L/ε)d) queries.

The latter result leaves a gap in the exponent. Chen and Deng[18] closed the gap. They proved that, for any d ≥ 2 and 1/ε>4d and L/ε>192d3, the number of queries required for computing an Template:Mvar-residual fixed-point is in Θ((L/ε)d1).

Discrete fixed-point computation

A discrete function is a function defined on a subset of d (the d-dimensional integer grid). There are several discrete fixed-point theorems, stating conditions under which a discrete function has a fixed point. For example, the Iimura-Murota-Tamura theorem states that (in particular) if f is a function from a rectangle subset of d to itself, and f is hypercubic direction-preserving, then f has a fixed point.

Let f be a direction-preserving function from the integer cube {1,,n}d to itself. Chen and Deng[18] prove that, for any d ≥ 2 and n > 48d, computing such a fixed point requires Θ(nd1) function evaluations.

Chen and Deng[19] define a different discrete-fixed-point problem, which they call 2D-BROUWER. It considers a discrete function f on {0,,n}2 such that, for every x on the grid, f(x) - x is either (0, 1) or (1, 0) or (-1, -1). The goal is to find a square in the grid, in which all three labels occur. The function f must map the square {0,,n}2to itself, so it must map the lines x = 0 and y = 0 to either (0, 1) or (1, 0); the line x = n to either (-1, -1) or (0, 1); and the line y = n to either (-1, -1) or (1,0). The problem can be reduced to 2D-SPERNER (computing a fully-labeled triangle in a triangulation satisfying the conditions to Sperner's lemma), and therefore it is PPAD-complete. This implies that computing an approximate fixed-point is PPAD-complete even for very simple functions.

Relation between fixed-point computation and root-finding algorithms

Given a function g from Ed to R, a root of g is a point x in Ed such that g(x)=0. An Template:Mvar-root of g is a point x in Ed such that g(x)ε.

Fixed-point computation is a special case of root-finding: given a function f on Ed, define g(x):=|f(x)x|. X is a fixed-point of f if and only if x is a root of g, and x is an Template:Mvar-residual fixed-point of f if and only if x is an Template:Mvar-root of g. Therefore, any root-finding algorithm (an algorithm that computes an approximate root of a function) can be used to find an approximate fixed-point.

The opposite is not true: finding an approximate root of a general function may be harder than finding an approximate fixed point. In particular, Sikorski[20] proved that finding an Template:Mvar-root requires Ω(1/εd) function evaluations. This gives an exponential lower bound even for a one-dimensional function (in contrast, an Template:Mvar-residual fixed-point of a one-dimensional function can be found using O(log(1/ε)) queries using the bisection method). Here is a proof sketch.[3]Template:Rp Construct a function g that is slightly larger than Template:Mvar everywhere in Ed except in some small cube around some point x0, where x0 is the unique root of g. If g is Lipschitz continuous with constant L, then the cube around x0 can have a side-length of ε/L. Any algorithm that finds an Template:Mvar-root of g must check a set of cubes that covers the entire Ed; the number of such cubes is at least (L/ε)d.

However, there are classes of functions for which finding an approximate root is equivalent to finding an approximate fixed point. One example[18] is the class of functions g such that g(x)+x maps Ed to itself (that is: g(x)+x is in Ed for all x in Ed). This is because, for every such function, the function f(x):=g(x)+x satisfies the conditions of Brouwer's fixed-point theorem. X is a fixed-point of f if and only if x is a root of g, and x is an Template:Mvar-residual fixed-point of f if and only if x is an Template:Mvar-root of g. Chen and Deng[18] show that the discrete variants of these problems are computationally equivalent: both problems require Θ(nd1) function evaluations.

Communication complexity

Roughgarden and Weinstein[21] studied the communication complexity of computing an approximate fixed-point. In their model, there are two agents: one of them knows a function f and the other knows a function g. Both functions are Lipschitz continuous and satisfy Brouwer's conditions. The goal is to compute an approximate fixed point of the composite function gf. They show that the deterministic communication complexity is in Ω(2d).

References

Template:Reflist

Further reading