Is the local max point also a global max?Unique critical point does not imply global maximum/global minimumFinding global max./min.Finding global minumum maximumGlobal Maximums and MinimumsGlobal max/min of surfacesFinding global maximizers and minimizersIf a function of two variables has a unique critical point, which is a local maximum, is it a global maximum?Finding if a crit point is a min/max/saddle after assembling the matrix.Debate on definition of Critical point and local / absolute extremasUsing the Hessian Matrix to classify points
Be in awe of my brilliance!
Humanity loses the vast majority of its technology, information, and population in the year 2122. How long does it take to rebuild itself?
In-house repeater?
How do I hide Chekhov's Gun?
Why is stat::st_size 0 for devices but at the same time lseek defines the device size correctly?
What is the greatest age difference between a married couple in Tanach?
Do I need life insurance if I can cover my own funeral costs?
How do anti-virus programs start at Windows boot?
Make a transparent 448*448 image
Does the statement `int val = (++i > ++j) ? ++i : ++j;` invoke undefined behavior?
Pinhole Camera with Instant Film
Rules about breaking the rules. How do I do it well?
Welcoming 2019 Pi day: How to draw the letter π?
Why must traveling waves have the same amplitude to form a standing wave?
Bash: What does "masking return values" mean?
Instead of Universal Basic Income, why not Universal Basic NEEDS?
The use of "touch" and "touch on" in context
What is a good source for large tables on the properties of water?
Why does Deadpool say "You're welcome, Canada," after shooting Ryan Reynolds in the end credits?
Theorems like the Lovász Local Lemma?
How to generate globally unique ids for different tables of the same database?
How to deal with taxi scam when on vacation?
Informing my boss about remarks from a nasty colleague
How is the Swiss post e-voting system supposed to work, and how was it wrong?
Is the local max point also a global max?
Unique critical point does not imply global maximum/global minimumFinding global max./min.Finding global minumum maximumGlobal Maximums and MinimumsGlobal max/min of surfacesFinding global maximizers and minimizersIf a function of two variables has a unique critical point, which is a local maximum, is it a global maximum?Finding if a crit point is a min/max/saddle after assembling the matrix.Debate on definition of Critical point and local / absolute extremasUsing the Hessian Matrix to classify points
$begingroup$
Consider the following function $f$ of three variables, defined on $mathbbR^3$: $$f(x,y,z) = 15x + xy - 4x^2 - 2y^2 - z^2 + 2yz + 7$$
Is each of the critical points a local maximum? Is each of them a global maximum? Explain.
I've found the critical points after taking the first-order derivatives $$f_x = 15 + y - 8x = 0,$$ $$f_y = x - 4y + 2z = 0,$$ $$fz=-2z + 2y = 0.$$
So there's only one critical point $left ( 2,1,1 right )$.
To figure out whether the critical point is a local maximum I've computed the partial derivatives and have obtained:
$$H = beginbmatrix
-f_xx &f_xy &f_xz \
f_yx&f_yy &f_yz \
f_zx &f_zy &zz
endbmatrix$$
$$ Rightarrow H = beginbmatrix
-8 &1 &0 \
1&-4 &2 \
0 &2 &-2
endbmatrix.$$
After using the Method of Leading principal minors, I've figured out that $H$ is negative definite so $left ( 2,1,1 right )$ is a local maximum.
However, I'm a bit confused about whether this local maximum point is also a global maximum point. I know that for a global maximum point, the first-order condition must be satisfied and $H$ (the matrix of partial derivatives) must be negative definite for all $x, y, z in mathbbR^3$.
So based on this, can I say that this local max point is also a global max because $H$ does not depend on the arguments?
calculus multivariable-calculus optimization
$endgroup$
add a comment |
$begingroup$
Consider the following function $f$ of three variables, defined on $mathbbR^3$: $$f(x,y,z) = 15x + xy - 4x^2 - 2y^2 - z^2 + 2yz + 7$$
Is each of the critical points a local maximum? Is each of them a global maximum? Explain.
I've found the critical points after taking the first-order derivatives $$f_x = 15 + y - 8x = 0,$$ $$f_y = x - 4y + 2z = 0,$$ $$fz=-2z + 2y = 0.$$
So there's only one critical point $left ( 2,1,1 right )$.
To figure out whether the critical point is a local maximum I've computed the partial derivatives and have obtained:
$$H = beginbmatrix
-f_xx &f_xy &f_xz \
f_yx&f_yy &f_yz \
f_zx &f_zy &zz
endbmatrix$$
$$ Rightarrow H = beginbmatrix
-8 &1 &0 \
1&-4 &2 \
0 &2 &-2
endbmatrix.$$
After using the Method of Leading principal minors, I've figured out that $H$ is negative definite so $left ( 2,1,1 right )$ is a local maximum.
However, I'm a bit confused about whether this local maximum point is also a global maximum point. I know that for a global maximum point, the first-order condition must be satisfied and $H$ (the matrix of partial derivatives) must be negative definite for all $x, y, z in mathbbR^3$.
So based on this, can I say that this local max point is also a global max because $H$ does not depend on the arguments?
calculus multivariable-calculus optimization
$endgroup$
$begingroup$
$f_z'$ should be $-2z+2y$, not $2z+2y$.
$endgroup$
– manooooh
Oct 13 '18 at 23:53
1
$begingroup$
@manooooh Sorry, it's a typo. Have edited.
$endgroup$
– OGC
Oct 13 '18 at 23:56
add a comment |
$begingroup$
Consider the following function $f$ of three variables, defined on $mathbbR^3$: $$f(x,y,z) = 15x + xy - 4x^2 - 2y^2 - z^2 + 2yz + 7$$
Is each of the critical points a local maximum? Is each of them a global maximum? Explain.
I've found the critical points after taking the first-order derivatives $$f_x = 15 + y - 8x = 0,$$ $$f_y = x - 4y + 2z = 0,$$ $$fz=-2z + 2y = 0.$$
So there's only one critical point $left ( 2,1,1 right )$.
To figure out whether the critical point is a local maximum I've computed the partial derivatives and have obtained:
$$H = beginbmatrix
-f_xx &f_xy &f_xz \
f_yx&f_yy &f_yz \
f_zx &f_zy &zz
endbmatrix$$
$$ Rightarrow H = beginbmatrix
-8 &1 &0 \
1&-4 &2 \
0 &2 &-2
endbmatrix.$$
After using the Method of Leading principal minors, I've figured out that $H$ is negative definite so $left ( 2,1,1 right )$ is a local maximum.
However, I'm a bit confused about whether this local maximum point is also a global maximum point. I know that for a global maximum point, the first-order condition must be satisfied and $H$ (the matrix of partial derivatives) must be negative definite for all $x, y, z in mathbbR^3$.
So based on this, can I say that this local max point is also a global max because $H$ does not depend on the arguments?
calculus multivariable-calculus optimization
$endgroup$
Consider the following function $f$ of three variables, defined on $mathbbR^3$: $$f(x,y,z) = 15x + xy - 4x^2 - 2y^2 - z^2 + 2yz + 7$$
Is each of the critical points a local maximum? Is each of them a global maximum? Explain.
I've found the critical points after taking the first-order derivatives $$f_x = 15 + y - 8x = 0,$$ $$f_y = x - 4y + 2z = 0,$$ $$fz=-2z + 2y = 0.$$
So there's only one critical point $left ( 2,1,1 right )$.
To figure out whether the critical point is a local maximum I've computed the partial derivatives and have obtained:
$$H = beginbmatrix
-f_xx &f_xy &f_xz \
f_yx&f_yy &f_yz \
f_zx &f_zy &zz
endbmatrix$$
$$ Rightarrow H = beginbmatrix
-8 &1 &0 \
1&-4 &2 \
0 &2 &-2
endbmatrix.$$
After using the Method of Leading principal minors, I've figured out that $H$ is negative definite so $left ( 2,1,1 right )$ is a local maximum.
However, I'm a bit confused about whether this local maximum point is also a global maximum point. I know that for a global maximum point, the first-order condition must be satisfied and $H$ (the matrix of partial derivatives) must be negative definite for all $x, y, z in mathbbR^3$.
So based on this, can I say that this local max point is also a global max because $H$ does not depend on the arguments?
calculus multivariable-calculus optimization
calculus multivariable-calculus optimization
edited Oct 14 '18 at 0:01
Bernard
123k741116
123k741116
asked Oct 13 '18 at 23:45
OGCOGC
1,43821229
1,43821229
$begingroup$
$f_z'$ should be $-2z+2y$, not $2z+2y$.
$endgroup$
– manooooh
Oct 13 '18 at 23:53
1
$begingroup$
@manooooh Sorry, it's a typo. Have edited.
$endgroup$
– OGC
Oct 13 '18 at 23:56
add a comment |
$begingroup$
$f_z'$ should be $-2z+2y$, not $2z+2y$.
$endgroup$
– manooooh
Oct 13 '18 at 23:53
1
$begingroup$
@manooooh Sorry, it's a typo. Have edited.
$endgroup$
– OGC
Oct 13 '18 at 23:56
$begingroup$
$f_z'$ should be $-2z+2y$, not $2z+2y$.
$endgroup$
– manooooh
Oct 13 '18 at 23:53
$begingroup$
$f_z'$ should be $-2z+2y$, not $2z+2y$.
$endgroup$
– manooooh
Oct 13 '18 at 23:53
1
1
$begingroup$
@manooooh Sorry, it's a typo. Have edited.
$endgroup$
– OGC
Oct 13 '18 at 23:56
$begingroup$
@manooooh Sorry, it's a typo. Have edited.
$endgroup$
– OGC
Oct 13 '18 at 23:56
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
When there is only one critical point and the critical point is a local maximum, that critical point is global maximum as well.
$endgroup$
4
$begingroup$
This is false. Consider $f(x,y) = -(x^2+y^2(1+x)^3)$. It has a unique critical point at $(0,0)$ which is a local maximum, but restricted to the line $y=x$, it's a polynomial of odd degree which must be unbounded.
$endgroup$
– KReiser
Oct 14 '18 at 0:04
1
$begingroup$
It is true that in this case, the given local maximum is a global maximum, but your proof as currently presented requires some adjustment.
$endgroup$
– KReiser
Oct 14 '18 at 0:16
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2954452%2fis-the-local-max-point-also-a-global-max%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
When there is only one critical point and the critical point is a local maximum, that critical point is global maximum as well.
$endgroup$
4
$begingroup$
This is false. Consider $f(x,y) = -(x^2+y^2(1+x)^3)$. It has a unique critical point at $(0,0)$ which is a local maximum, but restricted to the line $y=x$, it's a polynomial of odd degree which must be unbounded.
$endgroup$
– KReiser
Oct 14 '18 at 0:04
1
$begingroup$
It is true that in this case, the given local maximum is a global maximum, but your proof as currently presented requires some adjustment.
$endgroup$
– KReiser
Oct 14 '18 at 0:16
add a comment |
$begingroup$
When there is only one critical point and the critical point is a local maximum, that critical point is global maximum as well.
$endgroup$
4
$begingroup$
This is false. Consider $f(x,y) = -(x^2+y^2(1+x)^3)$. It has a unique critical point at $(0,0)$ which is a local maximum, but restricted to the line $y=x$, it's a polynomial of odd degree which must be unbounded.
$endgroup$
– KReiser
Oct 14 '18 at 0:04
1
$begingroup$
It is true that in this case, the given local maximum is a global maximum, but your proof as currently presented requires some adjustment.
$endgroup$
– KReiser
Oct 14 '18 at 0:16
add a comment |
$begingroup$
When there is only one critical point and the critical point is a local maximum, that critical point is global maximum as well.
$endgroup$
When there is only one critical point and the critical point is a local maximum, that critical point is global maximum as well.
answered Oct 13 '18 at 23:56
Mohammad Riazi-KermaniMohammad Riazi-Kermani
41.6k42061
41.6k42061
4
$begingroup$
This is false. Consider $f(x,y) = -(x^2+y^2(1+x)^3)$. It has a unique critical point at $(0,0)$ which is a local maximum, but restricted to the line $y=x$, it's a polynomial of odd degree which must be unbounded.
$endgroup$
– KReiser
Oct 14 '18 at 0:04
1
$begingroup$
It is true that in this case, the given local maximum is a global maximum, but your proof as currently presented requires some adjustment.
$endgroup$
– KReiser
Oct 14 '18 at 0:16
add a comment |
4
$begingroup$
This is false. Consider $f(x,y) = -(x^2+y^2(1+x)^3)$. It has a unique critical point at $(0,0)$ which is a local maximum, but restricted to the line $y=x$, it's a polynomial of odd degree which must be unbounded.
$endgroup$
– KReiser
Oct 14 '18 at 0:04
1
$begingroup$
It is true that in this case, the given local maximum is a global maximum, but your proof as currently presented requires some adjustment.
$endgroup$
– KReiser
Oct 14 '18 at 0:16
4
4
$begingroup$
This is false. Consider $f(x,y) = -(x^2+y^2(1+x)^3)$. It has a unique critical point at $(0,0)$ which is a local maximum, but restricted to the line $y=x$, it's a polynomial of odd degree which must be unbounded.
$endgroup$
– KReiser
Oct 14 '18 at 0:04
$begingroup$
This is false. Consider $f(x,y) = -(x^2+y^2(1+x)^3)$. It has a unique critical point at $(0,0)$ which is a local maximum, but restricted to the line $y=x$, it's a polynomial of odd degree which must be unbounded.
$endgroup$
– KReiser
Oct 14 '18 at 0:04
1
1
$begingroup$
It is true that in this case, the given local maximum is a global maximum, but your proof as currently presented requires some adjustment.
$endgroup$
– KReiser
Oct 14 '18 at 0:16
$begingroup$
It is true that in this case, the given local maximum is a global maximum, but your proof as currently presented requires some adjustment.
$endgroup$
– KReiser
Oct 14 '18 at 0:16
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2954452%2fis-the-local-max-point-also-a-global-max%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
$f_z'$ should be $-2z+2y$, not $2z+2y$.
$endgroup$
– manooooh
Oct 13 '18 at 23:53
1
$begingroup$
@manooooh Sorry, it's a typo. Have edited.
$endgroup$
– OGC
Oct 13 '18 at 23:56