Kaczmarz method

From testwiki
Revision as of 02:04, 19 February 2025 by 2600:6c5a:4c7f:7ba6:3ec5:f18b:eff0:5ac (talk) (External links)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Short description The Kaczmarz method or Kaczmarz's algorithm is an iterative algorithm for solving linear equation systems Ax=b. It was first discovered by the Polish mathematician Stefan Kaczmarz,[1] and was rediscovered in the field of image reconstruction from projections by Richard Gordon, Robert Bender, and Gabor Herman in 1970, where it is called the Algebraic Reconstruction Technique (ART).[2] ART includes the positivity constraint, making it nonlinear.[3]

The Kaczmarz method is applicable to any linear system of equations, but its computational advantage relative to other methods depends on the system being sparse. It has been demonstrated to be superior, in some biomedical imaging applications, to other methods such as the filtered backprojection method.[4]

It has many applications ranging from computed tomography (CT) to signal processing. It can be obtained also by applying to the hyperplanes, described by the linear system, the method of successive projections onto convex sets (POCS).[5][6]

Algorithm 1: Kaczmarz algorithm

Kaczmarz iteration example.

The original Kaczmarz algorithm solves a complex-valued system of linear equations Ax=b.

Let ai be the conjugate transpose of the i-th row of A. Initialize x0 to be an arbitrary complex-valued initial approximation. For k=0,1, compute:

Template:NumBlk

where i0,i1,i2, iterates over the rows of A in any order, deterministic or random. It is only necessary that each row is iterated infinitely often.

When we are in the space of real vectors, the Kaczmarz iteration has a clear geometric meaning. It means projecting xk orthogonally to the hyperplane defined by {x:ai,x=bi}. In this interpretation, it is clear that if the Kaczmarz iteration converges, then it must converge to one of the solutions to Ax=b.

A more general algorithm can be defined using a relaxation parameter λk

xk+1=xk+λkbikaik,xkaik2aik

If the system has a solution, xk converges to the minimum-norm solution, provided that the iterations start with the zero vector. If the rows are iterated in order, and λk=1, then convergence is exponential.

Template:Math proof

There are versions of the method that converge to a regularized weighted least squares solution when applied to a system of inconsistent equations and, at least as far as initial behavior is concerned, at a lesser cost than other iterative methods, such as the conjugate gradient method.[7]

Algorithm 2: Randomized Kaczmarz algorithm

In 2009, a randomized version of the Kaczmarz method for overdetermined linear systems was introduced by Thomas Strohmer and Roman Vershynin[8] in which the i-th equation is selected randomly with probability proportional to ai2.

This method can be seen as a particular case of stochastic gradient descent.[9]

Under such circumstances xk converges exponentially fast to the solution of Ax=b, and the rate of convergence depends only on the scaled condition number κ(A).

Theorem. Let x be the solution of Ax=b. Then Algorithm 2 converges to x in expectation, with the average error:
𝔼xkx2(1κ(A)2)kx0x2.

Proof

We have

Template:NumBlk

Using

A2=j=1maj2

we can write (Template:EquationNote) as

Template:NumBlk

The main point of the proof is to view the left hand side in (Template:EquationNote) as an expectation of some random variable. Namely, recall that the solution space of the jth equation of Ax=b is the hyperplane

{y:y,aj=bj},

whose normal is ajaj2. Define a random vector Z whose values are the normals to all the equations of Ax=b, with probabilities as in our algorithm:

Z=ajaj with probability aj2A2j=1,,m

Then (Template:EquationNote) says that

Template:NumBlk

The orthogonal projection P onto the solution space of a random equation of Ax=b is given by Pz=zzx,ZZ.

Now we are ready to analyze our algorithm. We want to show that the error xkx2 reduces at each step in average (conditioned on the previous steps) by at least the factor of (1κ(A)2). The next approximation xk is computed from xk1 as xk=Pkxk1, where P1,P2, are independent realizations of the random projection P. The vector xk1xk is in the kernel of Pk. It is orthogonal to the solution space of the equation onto which Pk projects, which contains the vector xkx (recall that x is the solution to all equations). The orthogonality of these two vectors then yields

xkx2=xk1x2xk1xk2.

To complete the proof, we have to bound xk1xk2 from below. By the definition of xk, we have

xk1xk=xk1x,Zk

where Z1,Z2, are independent realizations of the random vector Z.

Thus

xkx2(1|xk1xxk1x,Zk|2)xk1x2.

Now we take the expectation of both sides conditional upon the choice of the random vectors Z1,,Zk1 (hence we fix the choice of the random projections P1,,Pk1 and thus the random vectors x1,,xk1 and we average over the random vector Zk). Then

𝔼Z1,,Zk1xkx2=(1𝔼Z1,,Zk1,Zk|xk1xxk1x,Zk|2)xk1x2.

By (Template:EquationNote) and the independence,

𝔼Z1,,Zk1xkx2(1κ(A)2)xk1x2.

Taking the full expectation of both sides, we conclude that

𝔼xkx2(1κ(A)2)𝔼xk1x2.

The superiority of this selection was illustrated with the reconstruction of a bandlimited function from its nonuniformly spaced sampling values. However, it has been pointed out[10] that the reported success by Strohmer and Vershynin depends on the specific choices that were made there in translating the underlying problem, whose geometrical nature is to find a common point of a set of hyperplanes, into a system of algebraic equations. There will always be legitimate algebraic representations of the underlying problem for which the selection method in[8] will perform in an inferior manner.[8][10][11]

The Kaczmarz iteration (Template:EquationNote) has a purely geometric interpretation: the algorithm successively projects the current iterate onto the hyperplane defined by the next equation. Hence, any scaling of the equations is irrelevant; it can also be seen from (Template:EquationNote) that any (nonzero) scaling of the equations cancels out. Thus, in RK, one can use ai or any other weights that may be relevant. Specifically, in the above-mentioned reconstruction example, the equations were chosen with probability proportional to the average distance of each sample point from its two nearest neighbors — a concept introduced by Feichtinger and Gröchenig. For additional progress on this topic, see,[12][13] and the references therein.

Algorithm 3: Gower-Richtarik algorithm

In 2015, Robert M. Gower and Peter Richtarik[14] developed a versatile randomized iterative method for solving a consistent system of linear equations Ax=b which includes the randomized Kaczmarz algorithm as a special case. Other special cases include randomized coordinate descent, randomized Gaussian descent and randomized Newton method. Block versions and versions with importance sampling of all these methods also arise as special cases. The method is shown to enjoy exponential rate decay (in expectation) - also known as linear convergence, under very mild conditions on the way randomness enters the algorithm. The Gower-Richtarik method is the first algorithm uncovering a "sibling" relationship between these methods, some of which were independently proposed before, while many of which were new.

Insights about Randomized Kaczmarz

Interesting new insights about the randomized Kaczmarz method that can be gained from the analysis of the method include:

  • The general rate of the Gower-Richtarik algorithm precisely recovers the rate of the randomized Kaczmarz method in the special case when it reduced to it.
  • The choice of probabilities for which the randomized Kaczmarz algorithm was originally formulated and analyzed (probabilities proportional to the squares of the row norms) is not optimal. Optimal probabilities are the solution of a certain semidefinite program. The theoretical complexity of randomized Kaczmarz with the optimal probabilities can be arbitrarily better than the complexity for the standard probabilities. However, the amount by which it is better depends on the matrix A. There are problems for which the standard probabilities are optimal.
  • When applied to a system with matrix A which is positive definite, Randomized Kaczmarz method is equivalent to the Stochastic Gradient Descent (SGD) method (with a very special stepsize) for minimizing the strongly convex quadratic function f(x)=12xTAxbTx. Note that since f is convex, the minimizers of f must satisfy f(x)=0, which is equivalent to Ax=b. The "special stepsize" is the stepsize which leads to a point which in the one-dimensional line spanned by the stochastic gradient minimizes the Euclidean distance from the unknown(!) minimizer of f, namely, from x*=A1b. This insight is gained from a dual view of the iterative process (below described as "Optimization Viewpoint: Constrain and Approximate").

Six Equivalent Formulations

The Gower-Richtarik method enjoys six seemingly different but equivalent formulations, shedding additional light on how to interpret it (and, as a consequence, how to interpret its many variants, including randomized Kaczmarz):

  • 1. Sketching viewpoint: Sketch & Project
  • 2. Optimization viewpoint: Constrain and Approximate
  • 3. Geometric viewpoint: Random Intersect
  • 4. Algebraic viewpoint 1: Random Linear Solve
  • 5. Algebraic viewpoint 2: Random Update
  • 6. Analytic viewpoint: Random Fixed Point

We now describe some of these viewpoints. The method depends on 2 parameters:

  • a positive definite matrix B giving rise to a weighted Euclidean inner product x,yB:=xTBy and the induced norm
xB=(x,xB)12,
  • and a random matrix S with as many rows as A (and possibly random number of columns).

1. Sketch and Project

Given previous iterate xk, the new point xk+1 is computed by drawing a random matrix S (in an iid fashion from some fixed distribution), and setting

xk+1=arg minxxxkB subject to STAx=STb.

That is, xk+1 is obtained as the projection of xk onto the randomly sketched system STAx=STb. The idea behind this method is to pick S in such a way that a projection onto the sketched system is substantially simpler than the solution of the original system Ax=b. Randomized Kaczmarz method is obtained by picking B to be the identity matrix, and S to be the ith unit coordinate vector with probability pi=ai22/AF2. Different choices of B and S lead to different variants of the method.

2. Constrain and Approximate

A seemingly different but entirely equivalent formulation of the method (obtained via Lagrangian duality) is

xk+1=arg minxxx*B subject to x=xk+B1ATSy,

where y is also allowed to vary, and where x* is any solution of the system Ax=b. Hence, xk+1 is obtained by first constraining the update to the linear subspace spanned by the columns of the random matrix B1ATS, i.e., to

{h:h=B1ATSy,y can vary },

and then choosing the point x from this subspace which best approximates x*. This formulation may look surprising as it seems impossible to perform the approximation step due to the fact that x* is not known (after all, this is what we are trying the compute!). However, it is still possible to do this, simply because xk+1 computed this way is the same as xk+1 computed via the sketch and project formulation and since x* does not appear there.

5. Random Update

The update can also be written explicitly as

xk+1=xkB1ATS(STAB1ATS)ST(Axkb),

where by M we denote the Moore-Penrose pseudo-inverse of matrix M. Hence, the method can be written in the form xk+1=xk+hk, where hk is a random update vector.

Letting M=STAB1ATS, it can be shown that the system My=ST(Axkb) always has a solution yk, and that for all such solutions the vector xk+1B1ATSyk is the same. Hence, it does not matter which of these solutions is chosen, and the method can be also written as xk+1=xkB1ATSyk. The pseudo-inverse leads just to one particular solution. The role of the pseudo-inverse is twofold:

  • It allows the method to be written in the explicit "random update" form as above,
  • It makes the analysis simple through the final, sixth, formulation.

6. Random Fixed Point

If we subtract x* from both sides of the random update formula, denote

Z:=ATS(STAB1ATS)STA,

and use the fact that Ax*=b, we arrive at the last formulation:

xk+1x*=(IB1Z)(xkx*),

where I is the identity matrix. The iteration matrix, IB1Z, is random, whence the name of this formulation.

Convergence

By taking conditional expectations in the 6th formulation (conditional on xk), we obtain

𝔼[xk+1x*|xk]=(IB1𝔼[Z])[xkx*].

By taking expectation again, and using the tower property of expectations, we obtain

𝔼[xk+1x*]=(IB1𝔼[Z])𝔼[xkx*].

Gower and Richtarik[14] show that

ρ:=IB12𝔼[Z]B12B=λmax(IB1𝔼[Z]),

where the matrix norm is defined by

MB:=maxx0MxBxB.

Moreover, without any assumptions on S one has 0ρ1. By taking norms and unrolling the recurrence, we obtain

Theorem [Gower & Richtarik 2015]

𝔼[xkx*]Bρkx0x*B.

Remark. A sufficient condition for the expected residuals to converge to 0 is ρ<1. This can be achieved if A has a full column rank and under very mild conditions on S. Convergence of the method can be established also without the full column rank assumption in a different way.[15]

It is also possible to show a stronger result:

Theorem [Gower & Richtarik 2015]

The expected squared norms (rather than norms of expectations) converge at the same rate:

𝔼[xkx*]B2ρkx0x*B2.

Remark. This second type of convergence is stronger due to the following identity[14] which holds for any random vector x and any fixed vector x*:

𝔼[xx*]2=𝔼[xx*2]𝔼[x𝔼[x]2].

Convergence of Randomized Kaczmarz

We have seen that the randomized Kaczmarz method appears as a special case of the Gower-Richtarik method for B=I and S being the ith unit coordinate vector with probability pi=ai22/AF2, where ai is the ith row of A. It can be checked by direct calculation that

ρ=IB1𝔼[Z]B=1λmin(ATA)AF2.

Further Special Cases

Algorithm 4: PLSS-Kaczmarz

Since the convergence of the (randomized) Kaczmarz method depends on a rate of convergence the method may make slow progress on some practical problems.[10] To ensure finite termination of the method, Johannes Brust and Michael Saunders (academic) [16] have developed a process that generalizes the (randomized) Kaczmarz iteration and terminates in at most m iterations to a solution for the consistent system Ax=b. The process is based on Dimensionality reduction, or projections onto lower dimensional spaces, which is how it derives its name PLSS (Projected Linear Systems Solver). An iteration of PLSS-Kaczmarz can be regarded as the generalization

xk+1=xk+A:,1:kT(A1:k,:A:,1:kT)(b1:kA1:k,:xk)

where A1:k,: is the selection of rows 1 to k and all columns of A. A randomized version of the method uses k non repeated row indices at each iteration: {i1,,ik1,ik} where each ij is in 1,2,...,m. The iteration converges to a solution when k=m. In particular, since A1:m,:=A it holds that

Axm+1=Axm+AAT(AAT)(bAxm)=b

and therefore xm+1 is a solution to the linear system. The computation of iterates in PLSS-Kaczmarz can be simplified and organized effectively. The resulting algorithm only requires matrix-vector products and has a direct form

algorithm PLSS-Kaczmarz is
    input: matrix A right hand side b
    output: solution x such that Ax=b

    x := 0, P = [0]
    for k in 1,2,...,m do
        
        a := A(ik,:)'                   // Select an index ik in 1,...,m without resampling
        d := P' * a        
        c1 := norm(a)
        c2 := norm(d)
        c3 := (bik-x'*a)/((c1-c2)*(c1+c2))
        p := c3*(a - P*(P'*a))
        P := [ P, p/norm(p) ]           // Append a normalized update
        x := x + p

    return x


Notes

Template:Reflist

References


  • [1] A randomized Kaczmarz algorithm with exponential convergence
  • [2] Comments on the randomized Kaczmarz method
  • [3] Kaczmarz algorithm in training Kolmogorov-Arnold network

Template:Numerical linear algebra