ArticleslgStudy

mathematics

Kaczmarz method

Kaczmarz method is a mathematics topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand Kaczmarz method rather than just read about it. In short: The Kaczmarz method or Kaczmarz's algorithm is an iterative algorithm for solving linear equation systems A x = b {\displaystyle Ax=b} . It was first discovered by the Polish mathematician Stefan Kaczmarz, 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).

Kaczmarz method — main illustration
Kaczmarz method — illustration

Key takeaways

  • Kaczmarz method belongs to mathematics; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect Kaczmarz method to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of Kaczmarz method from memory before moving on to harder problems.

Reference excerpt

The Kaczmarz method or Kaczmarz's algorithm is an iterative algorithm for solving linear equation systems A x = b {\displaystyle Ax=b} . It was first discovered by the Polish mathematician Stefan Kaczmarz, 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). ART includes the positivity constraint, making it nonlinear. 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. 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).

Algorithm 1: Kaczmarz algorithm

The original Kaczmarz algorithm solves a complex-valued system of linear equations A x = b {\displaystyle Ax=b} . Let a i {\displaystyle a_{i}} be the conjugate transpose of the i {\displaystyle i} -th row of A {\displaystyle A} . Initialize x 0 {\displaystyle x_{0}} to be an arbitrary complex-valued initial approximation. (e.g. x 0 = 0 {\displaystyle x_{0}=0} .) For k = 0 , 1 , … {\displaystyle k=0,1,\ldots } compute:

where i 0 , i 1 , i 2 , … {\displaystyle i_{0},i_{1},i_{2},\dots } iterates over the rows of A {\displaystyle 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 x k {\textstyle x_{k}} orthogonally to the hyperplane defined by { x : ⟨ a i , x ⟩ = b i } {\textstyle \{x:\langle a_{i},x\rangle =b_{i}\}} . In this interpretation, it is clear that if the Kaczmarz iteration converges, then it must converge to one of the solutions to A x = b {\textstyle Ax=b} . A more general algorithm can be defined using a relaxation parameter λ k {\displaystyle \lambda ^{k}}

x k + 1 = x k + λ k b i k − ⟨ a i k , x k ⟩ ‖ a i k ‖ 2 a i k {\displaystyle x_{k+1}=x_{k}+\lambda _{k}{\frac {b_{i_{k}}-\langle a_{i_{k}},x_{k}\rangle }{\|a_{i_{k}}\|^{2}}}a_{i_{k}}}

If the system has a solution, x k {\displaystyle x_{k}} 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 {\displaystyle \lambda _{k}=1} , then convergence is exponential.

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.

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 in which the i-th equation is selected randomly with probability proportional to ‖ a i ‖ 2 . {\displaystyle \|a_{i}\|^{2}.}

… excerpt ends here. Continue reading the full article.

Worked examples

Example 1 — a first encounter with Kaczmarz method

Start with the simplest possible case. Write down what Kaczmarz method claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In mathematics, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to Kaczmarz method before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about Kaczmarz method ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of Kaczmarz method

In research
Kaczmarz method appears in mathematics research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses Kaczmarz method in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
Kaczmarz method is common in secondary-school and first-year university syllabi. It links to neighbouring topics Medical imaging, Numerical linear algebra, Signal processing, so understanding it makes those chapters shorter.
In everyday life
Look for Kaczmarz method outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study Kaczmarz method in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Kaczmarz method means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain Kaczmarz method out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Kaczmarz method in simple terms?

The Kaczmarz method or Kaczmarz's algorithm is an iterative algorithm for solving linear equation systems A x = b {\displaystyle Ax=b} . It was first discovered by the Polish mathematician Stefan Kaczmarz, and was rediscovered in the field of image reconstruction from projections by Richard Gordon…

Why does Kaczmarz method matter?

Because it connects several mathematics ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study Kaczmarz method?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on Kaczmarz method.

Tags

  • Medical imaging
  • Numerical linear algebra
  • Signal processing

Keep exploring