0. Lagrange multipliers technique¶
First of all, let's wrapp you head around lagrange multipliers technique. To make it simple, we're gonna deal with only 2 dimention in this article.
Let's say you wanna maximize multivariate function f(x,y). subject to the constraint that another multivariate function equals a constant, g(x,y)=C
In that situation we can apply lagrange multiplier technique. At first introduce new variable λ. And define new function L which takes form
L is called "Lagrange function", λ is "Lagrange multiplier".
Suppose (x0,y0) maximaize (or minimize) f(x,y) subject to φ(x,y)=0, the following equality holds,
1. Intuitive understanding¶
From above equality,
∂{f(x,y)−λφ(x,y)}∂x=0∂f(x)∂x=λ∂g(x)∂x
Therefore, ∇f=λ∇φ
You can tell gradient of f(x,y) and g(x,y) are parallel at the point of (x,y) which maximaize (or minimize) f(x,y) subject to g(x,y).
2. What the ∇f(x,y) is ??¶
Let's think about contour of f(x,y) where f(x,y)=C. Suppose moving the point along contour by (Δx,Δy). At the time, total derivative can be captured as below,
∂f∂xdx+∂y∂ydy=∇f(x)⋅Δx=0Therefore gradient ∇f is gonna be normal vector to tangent vector of contour.
No comments:
Post a Comment