ArticleslgStudy

computer science

Luus–Jaakola

Luus–Jaakola 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 Luus–Jaakola rather than just read about it. In short: In computational engineering, Luus–Jaakola (LJ) denotes a heuristic for global optimization of a real-valued function. In engineering use, LJ is not an algorithm that terminates with an optimal solution; nor is it an iterative method that generates a sequence of points that converges to an optimal solution (when one exists).

Luus–Jaakola — main illustration
Luus–Jaakola — illustration

Key takeaways

  • Luus–Jaakola 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 Luus–Jaakola to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of Luus–Jaakola from memory before moving on to harder problems.

Reference excerpt

In computational engineering, Luus–Jaakola (LJ) denotes a heuristic for global optimization of a real-valued function. In engineering use, LJ is not an algorithm that terminates with an optimal solution; nor is it an iterative method that generates a sequence of points that converges to an optimal solution (when one exists). However, when applied to a twice continuously differentiable function, the LJ heuristic is a proper iterative method, that generates a sequence that has a convergent subsequence; for this class of problems, Newton's method is recommended and enjoys a quadratic rate of convergence, while no convergence rate analysis has been given for the LJ heuristic. In practice, the LJ heuristic has been recommended for functions that need be neither convex nor differentiable nor locally Lipschitz: The LJ heuristic does not use a gradient or subgradient when one be available, which allows its application to non-differentiable and non-convex problems. Proposed by Luus and Jaakola, LJ generates a sequence of iterates. The next iterate is selected from a sample from a neighborhood of the current position using a uniform distribution. With each iteration, the neighborhood decreases, which forces a subsequence of iterates to converge to a cluster point. Luus has applied LJ in optimal control, transformer design, metallurgical processes, and chemical engineering.

Motivation

At each step, the LJ heuristic maintains a box from which it samples points randomly, using a uniform distribution on the box. For a unimodal function, the probability of reducing the objective function decreases as the box approach a minimum. The picture displays a one-dimensional example.

Heuristic Let f : R n → R {\displaystyle f:\mathbb {R} ^{n}\rightarrow \mathbb {R} } be the fitness or cost function which must be minimized. Let x ∈ R n {\displaystyle {\textbf {x}}\in \mathbb {R} ^{n}} designate a position or candidate solution in the search-space. The LJ heuristic iterates the following steps:

Initialize x ~ U(blo,bup) with a random uniform position in the search-space, where blo and bup are the lower and upper boundaries, respectively. Set the initial sampling range to cover the entire search-space (or a part of it): d = bup − blo Until a termination criterion is met (e.g. number of iterations performed, or adequate fitness reached), repeat the following: Pick a random vector a ~ U(−d, d) Add this to the current position x to create the new potential position y = x + a If (f(y) < f(x)) then move to the new position by setting x = y, otherwise decrease the sampling-range: d = 0.95 d Now x holds the best-found position.

Variations Luus notes that ARS (Adaptive Random Search) algorithms proposed to date differ in regard to many aspects.

Procedure of generating random trial points. Number of internal loops (NIL, the number of random search points in each cycle). Number of cycles (NEL, number of external loops). Contraction coefficient of the search region size. (Some example values are 0.95 to 0.60.) Whether the region reduction rate is the same for all variables or a different rate for each variable (called the M-LJ algorithm). Whether the region reduction rate is a constant or follows another distribution (e.g. Gaussian). Whether to incorporate a line search. Whether to consider constraints of the random points as acceptance criteria, or to incorporate a quadratic penalty.

Convergence Nair proved a convergence analysis. For twice continuously differentiable functions, the LJ heuristic generates a sequence of iterates having a convergent subsequence. For this class of problems, Newton's method is the usual optimization method, and it has quadratic convergence (regardless of the dimension of the space, which can be a Banach space, according to Kantorovich's analysis). The worst-case complexity of minimization on the class of unimodal functions grows exponentially in the dimension of the problem, according to the analysis of Yudin and Nemirovsky, however. The Yudin-Nemirovsky analysis implies that no method can be fast on high-dimensional problems that lack convexity:

"The catastrophic growth [in the number of iterations needed to reach an approximate solution of a given accuracy] as [the number of dimensions increases to infinity] shows that it is meaningless to pose the question of constructing universal methods of solving ... problems of any appreciable dimensionality 'generally'. It is interesting to note that the same [conclusion] holds for ... problems generated by uni-extremal [that is, unimodal] (but not convex) functions." When applied to twice continuously differentiable problems, the LJ heuristic's rate of convergence decreases as the number of dimensions increases.

See also Random optimization is a related family of optimization methods that sample from general distributions, for example the uniform distribution. Random search is a related family of optimization methods that sample from general distributions, for example, a uniform distribution on the unit sphere. Pattern search are used on noisy observations, especially in response surface methodology in chemical engineering. They do not require users to program gradients or hessians.

References

Illustrations

Luus–Jaakola: As we approach the optimum the probability of finding further improvements through uniform sampling decreases towards zero if the sampling-range d is kept fixed.
As we approach the optimum the probability of finding further improvements through uniform sampling decreases towards zero if the sampling-range d is kept fixed.

Worked examples

Example 1 — a first encounter with Luus–Jaakola

Start with the simplest possible case. Write down what Luus–Jaakola 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 Luus–Jaakola 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 Luus–Jaakola 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 Luus–Jaakola

In research
Luus–Jaakola 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 Luus–Jaakola 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
Luus–Jaakola is common in secondary-school and first-year university syllabi. It links to neighbouring topics Heuristic algorithms, Optimization algorithms and methods, so understanding it makes those chapters shorter.
In everyday life
Look for Luus–Jaakola 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.
Ask Teacher Smith questions about this articleOpens your AI tutor with a question about “Luus–Jaakola” →

Affiliate

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

How to study Luus–Jaakola in 20 minutes

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

Frequently asked questions

What is Luus–Jaakola in simple terms?

In computational engineering, Luus–Jaakola (LJ) denotes a heuristic for global optimization of a real-valued function. In engineering use, LJ is not an algorithm that terminates with an optimal solution; nor is it an iterative method that generates a sequence of points that converges to an optimal…

Why does Luus–Jaakola 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 Luus–Jaakola?

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 Luus–Jaakola.

Tags

  • Heuristic algorithms
  • Optimization algorithms and methods

Keep exploring