Finding Max/Min Points of f(x,y) in R^2

  • Context: Undergrad 
  • Thread starter Thread starter ArnfinnS
  • Start date Start date
Click For Summary
SUMMARY

The discussion focuses on finding the maximum and minimum points of the function f(x,y) = x^2 * y * e^(-x^2 - 2y^2) in R^2. Participants calculated the first partial derivatives, f_x and f_y, and identified the stationary point at (0,0). They emphasized the importance of setting the partial derivatives to zero to find critical points and suggested calculating second derivatives to classify these points. The corrected form of the partial derivative f_y was provided, highlighting the need for accuracy in derivative calculations.

PREREQUISITES
  • Understanding of partial derivatives in multivariable calculus
  • Familiarity with exponential functions and their properties
  • Knowledge of critical points and their significance in optimization
  • Ability to compute second derivatives for classification of critical points
NEXT STEPS
  • Learn how to compute second derivatives for multivariable functions
  • Study the method of Lagrange multipliers for constrained optimization
  • Explore the Hessian matrix and its role in determining local maxima and minima
  • Practice finding critical points of other multivariable functions
USEFUL FOR

Students and professionals in mathematics, particularly those studying calculus and optimization techniques, as well as researchers working with multivariable functions in applied fields.

ArnfinnS
Messages
11
Reaction score
0
hi...
i need to find the mex and min point of the function f(x,y) = x^2*y*e^(-x^2 - 2y^2) for (x,y) in R^2

here is what i tried : i found the partial derivatives :

f_x = 2x*y*e^8-x^2 - 2y^2) + x^2*y*e^(-x^2 -2y^2)*(-2x)

and f_y = x^2*y*(-4y)*e^(-x^2 - 2y^2)

i see that those partials equals 0 in the point (0,0). is this the only stationary point here?

what is max / and what is minimum?
can anyone help me?
 
Physics news on Phys.org
I assume you mean the points where the plane tangent to the surface is parallel to the x-y plane, would this be where Fxy = 0? I've not quite got that far on my calc course.

Edit: oh by the way my graph below is a picture of what the general equation looks like,
 

Attachments

  • Clipboard02.jpg
    Clipboard02.jpg
    62.8 KB · Views: 521
Last edited:
ArnfinnS said:
(x,y) = x^2*y*e^(-x^2 - 2y^2) for (x,y) in R^2

Alright, this'll be a bit easier to read in Latex:

[tex]f(x,y)=x^2ye^{-x^2-2y^2}[/tex]


here is what i tried : i found the partial derivatives :

f_x = 2x*y*e^8-x^2 - 2y^2) + x^2*y*e^(-x^2 -2y^2)*(-2x)

and f_y = x^2*y*(-4y)*e^(-x^2 - 2y^2)

Alright, here's a first problem. You have:

[tex]f_x = 2xye^{-x^2 - 2y^2} - 2x^3ye^{-x^2 -2y^2}[/tex]
[tex]f_y = -4x^2y^2e^{-x^2 - 2y^2}[/tex]

The partial with respect to x looks fine, but you missed a term in the y partial. It should be:

[tex]f_y = x^2e^{-x^2 - 2y^2}-4x^2y^2e^{-x^2 - 2y^2}[/tex]

To find the critical points, you just set these to zero. This will eliminate those pesky exponentials.

[tex]-x^2+1=0[/tex]
[tex]-4y^2+1=0[/tex]

This will give you your critical points. I'll leave that part to you. Now, if you want to classify them, you have to calculate the second derivatives at your critical points and see if they're positive or negative in each direction. Do you know how to do that?
 
Last edited:

Similar threads

  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 8 ·
Replies
8
Views
2K
Replies
3
Views
2K
  • · Replies 17 ·
Replies
17
Views
5K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
1
Views
1K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
4K