ArticleslgStudy

computer science

Powell's method

Powell's method is a computer 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 Powell's method rather than just read about it. In short: Powell's method, strictly Powell's conjugate direction method, is an algorithm proposed by Michael J. D.

Key takeaways

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

Reference excerpt

Powell's method, strictly Powell's conjugate direction method, is an algorithm proposed by Michael J. D. Powell for finding a local minimum of a function. The function need not be differentiable, and no derivatives are taken. The function must be a real-valued function of a fixed number of real-valued inputs. The caller passes in the initial point. The caller also passes in a set of initial search vectors. Typically N search vectors (say { s 1 , … , s N } {\textstyle \{s_{1},\dots ,s_{N}\}} ) are passed in which are simply the normals aligned to each axis. The method minimises the function by a bi-directional search along each search vector, in turn. The bi-directional line search along each search vector can be done by Golden-section search or Brent's method. Let the minima found during each bi-directional line search be { x 0 + α 1 s 1 , x 0 + ∑ i = 1 2 α i s i , … , x 0 + ∑ i = 1 N α i s i } {\textstyle \{x_{0}+\alpha _{1}s_{1},{x}_{0}+\sum _{i=1}^{2}\alpha _{i}{s}_{i},\dots ,{x}_{0}+\sum _{i=1}^{N}\alpha _{i}{s}_{i}\}} , where x 0 {\textstyle {x}_{0}} is the initial starting point and α i {\textstyle \alpha _{i}} is the scalar determined during bi-directional search along s i {\textstyle {s}_{i}} . The new position ( x 1 {\textstyle x_{1}} ) can then be expressed as a linear combination of the search vectors i.e. x 1 = x 0 + ∑ i = 1 N α i s i {\textstyle x_{1}=x_{0}+\sum _{i=1}^{N}\alpha _{i}s_{i}} . The new displacement vector ( ∑ i = 1 N α i s i {\textstyle \sum _{i=1}^{N}\alpha _{i}s_{i}} ) becomes a new search vector, and is added to the end of the search vector list. Meanwhile, the search vector which contributed most to the new direction, i.e. the one which was most successful ( i d = arg ⁡ max i = 1 N | α i | ‖ s i ‖ {\textstyle i_{d}=\arg \max _{i=1}^{N}|\alpha _{i}|\|s_{i}\|} ), is deleted from the search vector list. The new set of N search vectors is { s 1 , … , s i d − 1 , s i d + 1 , … , s N , ∑ i = 1 N α i s i } {\textstyle \{s_{1},\dots ,s_{i_{d}-1},s_{i_{d}+1},\dots ,s_{N},\sum _{i=1}^{N}\alpha _{i}s_{i}\}} . The algorithm iterates an arbitrary number of times until no significant improvement is made. The method is useful for calculating the local minimum of a continuous but complex function, especially one without an underlying mathematical definition, because it is not necessary to take derivatives. The basic algorithm is simple; the complexity is in the linear searches along the search vectors, which can be achieved via Brent's method.

References

… excerpt ends here. Continue reading the full article.

Worked examples

Example 1 — a first encounter with Powell's method

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

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

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

Frequently asked questions

What is Powell's method in simple terms?

Powell's method, strictly Powell's conjugate direction method, is an algorithm proposed by Michael J. D.

Why does Powell's method matter?

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

Tags

  • Optimization algorithms and methods

Keep exploring