If you're seeing this message, it means we're having trouble loading external resources on our website.

If you're behind a web filter, please make sure that the domains *.kastatic.org and *.kasandbox.org are unblocked.

Main content

Lagrange multipliers, examples

Examples of the Lagrangian and Lagrange multiplier technique in action.

Lagrange multiplier technique, quick recap

Constrained optimization
Image credit: By Nexcis (Own work) [Public domain], via Wikimedia Commons
When you want to maximize (or minimize) a multivariable function f(x,y,) subject to the constraint that another multivariable function equals a constant, g(x,y,)=c, follow these steps:
  • Step 1: Introduce a new variable λ, and define a new function L as follows:
    L(x,y,,λ)=f(x,y,)λ(g(x,y,)c)
    This function L is called the "Lagrangian", and the new variable λ is referred to as a "Lagrange multiplier"
  • Step 2: Set the gradient of L equal to the zero vector.
    L(x,y,,λ)=0Zero vector
    In other words, find the critical points of L.
  • Step 3: Consider each solution, which will look something like (x0,y0,,λ0). Plug each one into f. Or rather, first remove the λ0 component, then plug it into f, since f does not have λ as an input. Whichever one gives the greatest (or smallest) value is the maximum (or minimum) point your are seeking.

Example 1: Budgetary constraints

Problem

Suppose you are running a factory, producing some sort of widget that requires steel as a raw material. Your costs are predominantly human labor, which is $20 per hour for your workers, and the steel itself, which runs for $170 per ton. Suppose your revenue R is loosely modeled by the following equation:
R(h,s)=200h2/3s1/3
  • h represents hours of labor
  • s represents tons of steel
If your budget is $20,000, what is the maximum possible revenue?

Solution

The $20 per hour labor costs and $170 per ton steel costs tell us that the total cost of production, in terms of h and s, is
20h+170s
Therefore the budget of $20,000 can be translated to the constraint
20h+170s=20,000
Before we dive into the computation, you can get a feel for this problem using the following interactive diagram. You can see which values of (h,s) yield a given revenue (blue curve) and which values satisfy the constraint (red line).
Since we need to maximize a function R(h,s), subject to a constraint, 20h+170s=20,000, we begin by writing the Lagrangian function for this setup:
L(h,s,λ)=200h2/3s1/3λ(20h+170s20,000)
Next, set the gradient L equal to the 0 vector. This is the same as setting each partial derivative equal to 0. First, we handle the partial derivative with respect to h.
0=Lh0=h(200h2/3s1/3λ(20h+170s20,000))0=20023h1/3s1/320λ
Next, we handle the partial derivative with respect to s.
0=Ls0=s(200h2/3s1/3λ(20h+170s20,000))0=20013h2/3s2/3170λ
Finally we set the partial derivative with respect to λ equal to 0, which as always is just the same thing as the constraint. In practice, you can of course just write the constraint itself, but I'll write out the partial derivative here just to make things clear.
0=Lλ0=λ(200h2/3s1/3λ(20h+170s20,000))0=20h170s+20,00020h+170s=20,000
Putting it together, the system of equations we need to solve is
0=20023h1/3s1/320λ0=20013h2/3s2/3170λ20h+170s=20,000
In practice, you should almost always use a computer once you get to a system of equations like this. Especially because the equation will likely be more complicated than these in real applications. Once you do, you'll find that the answer is
h=2,0003666.667s=2,0005139.2157λ=A8,00045932.593
This means you should employ about 667 hours of labor, and purchase 39 tons of steel, which will give a maximum revenue of
R(667,39)=200(667)2/3(39)1/3$51,777
The interpretation of this constant λ=2.593 is left to the next article

Example 2: Maximizing dot product

Problem: Let the three-dimensional vector v be defined as follows.
v=[231]
Consider every possible unit vector u^ in three-dimensional space. For which one is the dot product u^v the greatest?
The diagram below is two-dimensional, but not much changes in the intuition as we move to three dimensions.
Unit vector dot product
Two-dimensional analogy to the three-dimensional problem we have. Which unit vector u^ maximizes the dot product u^v?
If you are fluent with dot products, you may already know the answer. It's one of those mathematical facts worth remembering. If you don't know the answer, all the better! Because we will now find and prove the result using the Lagrange multiplier method.
Solution:
First, we need to spell out how exactly this is a constrained optimization problem. Write the coordinates of our unit vectors as x, y and z:
u^=[xyz]
The fact that u^ is a unit vector means its magnitude is 1:
||u^||=x2+y2+z2=1x2+y2+z2=1
This is our constraint.
Maximizing u^v means maximizing the following quantity:
[xyz][231]=2x+3y+z
The Lagrangian, with respect to this function and the constraint above, is
L(x,y,z,λ)=2x+3y+zλ(x2+y2+z21).
We now solve for L=0 by setting each partial derivative of this expression equal to 0.
x(2x+3y+zλ(x2+y2+z21))=2λ2x=0y(2x+3y+zλ(x2+y2+z21))=3λ2y=0z(2x+3y+zλ(x2+y2+z21))=1λ2z=0
Remember, setting the partial derivative with respect to λ equal to 0 just restates the constraint.
λ(2x+3y+zλ(x2+y2+z21))=x2y2z2+1=0
Solving for x, y and z in the first three equations above, we get
x=212λy=312λz=112λ
Ah, what beautiful symmetry. Each of these expressions has the same 12λ factor, and the coefficients 2, 3 and 1 match up with the coordinates of v. Being good math students as we are, we won't let good symmetry go to waste. In this case, combining the three equations above into a single vector equation, we can relate u^ and v as follows:
u^=[xyz]=12λ[231]=12λv
Two-dimensional analogy showing the two unit vectors which maximize and minimize the quantity u^v.
Therefore u^ is proportional to v! Geometrically, this means u^ points in the same direction as v. There are two unit vectors proportional v,
  • One which points in the same direction, this is the vector that maximizes u^v.
  • One which points in the opposite direction. This one minimizes u^v.
We can write these two unit vectors by normalizing v, which just means dividing v by its magnitude:
u^max=v||v||u^min=v||v||
The magnitude ||v|| is 22+32+12=14, so we can write the maximizing unit vector u^max explicitly as like this:
u^max=[2/143/141/14]

Just skip the Lagrangian

If you read the last article, you'll recall that the whole point of the Lagrangian L is that setting L=0 encodes the two properties a constrained maximum must satisfy:
  • Gradient alignment between the target function and the constraint function,
    f(x,y)=λg(x,y)
  • The constraint itself,
    g(x,y)=c
When working through examples, you might wonder why we bother writing out the Lagrangian at all. Wouldn't it be easier to just start with these two equations rather than re-establishing them from L=0 every time? The short answer is yes, it would be easier. If you find yourself solving a constrained optimization problem by hand, and you remember the idea of gradient alignment, feel free to go for it without worrying about the Lagrangian.
In practice, it's often a computer solving these problems, not a human. Given that there are many highly optimized programs for finding when the gradient of a given function is 0, it's both clean and useful to encapsulate our problem into the equation L=0.
Furthermore, the Lagrangian itself, as well as several functions deriving from it, arise frequently in the theoretical study of optimization. In this light, reasoning about the single object L rather than multiple conditions makes it easier to see the connection between high-level​ ideas. Not to mention, it's quicker to write down on a blackboard.
In either case, whatever your future relationship with constrained optimization might be, it is good to be able to think about the Lagrangian itself and what it does. The examples above illustrate how it works, and hopefully help to drive home the point that L=0 encapsulates both f=λg and g(x,y)=c in a single equation.

Want to join the conversation?