ArticleslgStudy

science

Steffensen's method

Steffensen's method is a science 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 Steffensen's method rather than just read about it. In short: In numerical analysis, Steffensen's method is an iterative method named after Johan Frederik Steffensen for numerical root-finding that is similar to the secant method and to Newton's method. Steffensen's method achieves a quadratic order of convergence without using derivatives, whereas the more familiar Newton's method also converges quadratically, but requires derivatives and the secant method does not require de…

Key takeaways

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

Reference excerpt

In numerical analysis, Steffensen's method is an iterative method named after Johan Frederik Steffensen for numerical root-finding that is similar to the secant method and to Newton's method. Steffensen's method achieves a quadratic order of convergence without using derivatives, whereas the more familiar Newton's method also converges quadratically, but requires derivatives and the secant method does not require derivatives but also converges less quickly than quadratically. Steffensen's method has the drawback that it requires two function evaluations per step, whereas the secant method requires only one evaluation per step, so it is not necessarily most efficient in terms of computational cost, depending on the number of iterations each requires. Newton's method also requires evaluating two functions per step – for the function and for its derivative – and its computational cost varies between being at best the same as the secant method, and at worst the same as Steffensen's method. For most functions, calculation of the derivative is just as computationally costly as calculating the original function, and so the normal case is that Newton's method is equally costly as Steffensen's. Steffensen's method can be derived as an adaptation of Aitken's delta-squared process applied to fixed-point iteration. Viewed in this way, Steffensen's method naturally generalizes to efficient fixed-point calculation in general Banach spaces, whenever fixed points are guaranteed to exist and fixed-point iteration is guaranteed to converge, although possibly slowly, by the Banach fixed-point theorem.

Simple description The simplest form of the formula for Steffensen's method occurs when it is used to find a zero of a real function f {\displaystyle f} ; that is, to find the real value x ⋆ {\displaystyle \ x_{\star }\ } that satisfies f ( x ⋆ ) = 0 . {\displaystyle \ f(x_{\star })=0~.} Near the solution x ⋆ , {\displaystyle \ x_{\star }\ ,} the derivative of the function, f ′ , {\displaystyle \ f'\ ,} needs to either exactly or very nearly satisfy − 1 < f ′ ( x ⋆ ) < 0 . {\displaystyle -1<f'(x_{\star })<0~.}

For some functions, Steffensen's method can work even if this condition is not met, but in such a case, the starting value x 0 {\displaystyle \ x_{0}\ } must be very close to the actual solution x ⋆ , {\displaystyle \ x_{\star }\ ,} and convergence to the solution may be slow. Adjustment of the size of the method's intermediate step, mentioned later, can improve convergence in some of these cases. Given an adequate starting value x 0 , {\displaystyle \ x_{0}\ ,} a sequence of values x 0 , x 1 , x 2 , … , x n , … {\displaystyle \ x_{0},\ \ x_{1},\ x_{2},\ \dots ,\ x_{n},\ \dots \ } can be generated using the formula below. When it works, each value in the sequence is much closer to the solution x ⋆ {\displaystyle \ x_{\star }\ } than the prior value. The value x n {\displaystyle \ x_{n}\ } from the current step generates the value x n + 1 {\displaystyle \ x_{n+1}\ } for the next step, via the formula

x n + 1 = x n − f ( x n ) g ( x n ) {\displaystyle x_{n+1}=x_{n}-{\frac {f(x_{n})}{g(x_{n})}}}

for n = 0 , 1 , 2 , 3 , . . . , {\displaystyle \ n=0,1,2,3,...\ ,} where the slope function g ( x ) {\displaystyle \ g(x)\ } is a composite of the original function f {\displaystyle \ f\ } given by the formula

… excerpt ends here. Continue reading the full article.

Worked examples

Example 1 — a first encounter with Steffensen's method

Start with the simplest possible case. Write down what Steffensen's method claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In science, 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 Steffensen's 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 Steffensen's 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 Steffensen's method

In research
Steffensen's method appears in science 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 Steffensen's 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
Steffensen's method is common in secondary-school and first-year university syllabi. It links to neighbouring topics Quasi-Newton methods, so understanding it makes those chapters shorter.
In everyday life
Look for Steffensen's 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 Steffensen's method in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Steffensen's 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 Steffensen's method out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Steffensen's method in simple terms?

In numerical analysis, Steffensen's method is an iterative method named after Johan Frederik Steffensen for numerical root-finding that is similar to the secant method and to Newton's method. Steffensen's method achieves a quadratic order of convergence without using derivatives, whereas the more f…

Why does Steffensen's method matter?

Because it connects several science 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 Steffensen's 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 Steffensen's method.

Tags

  • Quasi-Newton methods

Keep exploring