Lagrange Multipliers to find the Maximum and Minimum values

brendan
Messages
64
Reaction score
0

Homework Statement



Use Lagrange Multipliers to find the Maximum and Minimum values of f(x,y) = x2-y.
Subject to the restraint g(x,y) = x2+y2=25

Homework Equations



gradient f(x,y)= gradient g(x,y)

The Attempt at a Solution



I have found the gradients of f and g to be

f(x,y) = 2xi + -1j
g(x,y) = 2xi + 2yj


I have put these to gether with the constraint to find the simutaneous equation

2x = lambda 2x
-1 = lambda 2y
x2+y2 = 25

Have I got this system right so far ?

I'm a bit concerned about the 2x = lambda 2x part.
I'm not sure if this is right or I should have used 2x = lambda 2y ?

In the original system I have Lambda = 1 and y = -1/2

Any help greatly appreciated
Brendan
 
Physics news on Phys.org
brendan said:
I'm a bit concerned about the 2x = lambda 2x part.
I'm not sure if this is right or I should have used 2x = lambda 2y?

Everything looks right to me, and no, you definitely should not have used 2x=\lambda 2y. The general system for a function f(x,y) constrained to g(x,y) = k is:
\begin{align*}<br /> f_x &amp;= \lambda g_x \\<br /> f_y &amp;= \lambda g_y \\<br /> g &amp;= k<br /> \end{align*}
So you have done this exactly right. You have found \lambda=1,y=-1/2 correctly. What about x?
 
Last edited:
What are you concerned about? I think you are doing fine. 2x = lambda 2y isn't right at all. Why would you think it is?
 
g(x,y) = x2+y2=25

Now we have y = -1/2

so x = sqrt(y2+25) or -sqrt(y2+25)

= sqrt(101)/2 or -sqrt(101)


So we have two solutions
f(x,y)= x2-y = f(sqrt(101)/2,-1/2) = 103/4 = 25.75
f(x,y)= x2-y = f(-sqrt(101)/2,-1/2) = 103/4 = 25.75

So they are both the maximum
 
brendan said:
g(x,y) = x2+y2=25

Now we have y = -1/2

so x = sqrt(y2+25) or -sqrt(y2+25)

Whoops, you have a sign error. It should have been x = \pm\sqrt{25-y^2}.
 
g(x,y) = x2+y2=25

Now we have y = -1/2

so x = sqrt(25-y2) or -sqrt(25-y2)

= sqrt(99/4) or -sqrt(99/4)


So we have two solutions
f(x,y)= x2-y = fsqrt(25-y2) ,-1/2) = 101/4= 25.25 (maximum)
f(x,y)= x2-y = f(-sqrt(25-y2) ,-1/2) = -97/4= -24.25 (Minimum)

Is that better?
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top