内容简介:The Lagrange Multiplier is a method for optimizing a function under constraints. In this article, I show how to use the Lagrange Multiplier for optimizing a relatively simple example with two variables and one equality constraint. I use Python for solving
Lagrange Multiplier on a function with 2 variables with 1 equality constraint
May 15 ·6min read
The Lagrange Multiplier is a method for optimizing a function under constraints. In this article, I show how to use the Lagrange Multiplier for optimizing a relatively simple example with two variables and one equality constraint. I use Python for solving a part of the mathematics.
You can follow along with the Python notebook over here.
As an example, let’s take an online marketing department of a company that has received a fixed budget to spent on a mix of Social Media and TV campaigns:
- Suppose we have a fixed budget for spending on marketing of 2500 dollar.
- Suppose we can choose to invest in two types of campaigns: Social Media and TV, where you have to decide
- To simplify, let’s say that one campaign on social media costs 25 dollar and one campaign on TV costs 250 dollar.
- Suppose we have experimented a lot in the past and that we have been able to define the Revenues as a function of the two types of media investments.
- In this notebook, I will show how to find the maximum revenue and the number of different types of campaigns you should buy using Lagrange Multiplier.
Inspecting the costs
The equation for costs is:
25 dollars times the number of social campaigns + 250 times the number of TV campaigns
Since we want to spend exactly the budget we know that this is equal to 2500 dollar, giving the following constraint:
25 * social + 250 * tv = 2500
Plotting the possible ways of spending the budget
In the following graph, I plot the different ways of spending the budget. Since the budget is fixed, if we spend more money on social campaigns we automatically spend less on TV campaigns and the other way around.
- Every combination of hours and materials that is under the line is inside the budget.
- Every combination of hours and materials that is above the line is outside the budget.
- If we want to spend the whole budget (we generally do), we have to be exactly on the line.
Inspecting the revenues
Suppose that through experimentation and analysis, somebody has been able to identify the revenue curve for your business and that it is defined as:
Revenue (in k$) is 7 times the number of social campaigns to the power 3/4 times the number of TV campaigns to the power 1/4 .
This can be presented in a Python function as follows:
The 3D representation of the problem
In our exercise, we have three variables: the revenue, the number of social campaigns and the number of TV campaigns on materials.
Of course, we want to maximize revenues.
We also have a budget constraint which is the 2D line shown above: the maximum amount that we can spend.
The goal is to find the maximum revenue as long as it is under the budget.
I will first show a 3D representation of the problem in which we see:
- The revenue in 3D as a function of social campaigns and TV campaigns.
- The constraint line presented in 2D below the revenue graph.
The goal is to identify the highest point on the 3D curve that is exactly on the constraint line.
The 2D representation of the problem
The 3D is cool to look at, but relatively hard to read. Therefore, I made two 2D graphs that show exactly the same information: instead of adding the revenues on a Z-axis, the revenues are now represented as a color gradient (left) and as a contour gradient (right).
The goal stays the same: finding the highest revenue as long as it’s below the budget constraint line.
Visual solution
If we check the graph (whether in gradient or in contour), we can read that on the red line (max budget), the highest revenue value would be roughly around 3 TV campaigns and 70 social campaigns.
It is great to have this first visual estimate, now let’s find the exact value with mathematics.
Mathematical solution
Where is the maximum?
We need to find the point where the revenue contour is tangent to the constraint line.
The method we use for this is Lagrange Multiplier.
In short, it works as follows:
We can find the maximum at the point where the gradient of the Revenue contour is proportional to the gradient of the constraint line.
You can check back to the contour graph to see that this is true.
How to represent proportionality?
So we need to solve a proportionality rather than an equality.
So not: “gradient of revenues” = “gradient of constraint”
But: “gradient of revenues” is proportional to “gradient of constraint”
We do this mathematically by stating
“gradient of revenues” = lambda times “gradient of constraint”
This lambda makes it a statement of proportionality.
This lambda is called the Lagrange Multiplier.
Gradients are derivatives
One tricky step now before using the inbuilt python optimizer is to get the gradients by getting the Derivatives of the Revenue function and of the constraint function. Since there are two variables in each, we need two partial derivatives to get a vector of those two derivatives.
Computing the derivatives
In the below graphic I have shown how to create the three equations that we can pass in the python solver.
- The first thing to do is go from the revenue function and the constraint into their derivatives.
- Then set the derivatives of the revenue function equal to lambda times the derivative of the constraint. This gives the first two equations for the solver.
- The third equation is simply the constraint itself.
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。