I need to find the global minimum and maximum points of the linear function $f (x, y) = 5x − 8y$ over the set $S =\{(x, y) \in \mathbb R^2: 5x^2 − 8xy + 4y^2 + 8x − 8y ≤ 5\}$
2025-01-13 07:59:59.1736755199
how to find global minimum and max over set s
319 Views Asked by Noam Ben Shimol https://math.techqa.club/user/noam-ben-shimol/detail At
1
There are 1 best solutions below
Related Questions in OPTIMIZATION
- How to solve word problems about polynomials given a rectangle and the following I have tried all i know?
- Finding the closest vector to an observation
- if $x\in [2009,2010],y\in [2008,2009]$then $(x+y)(\frac{1}{x}+\frac{a}{y})\ge 9,a>0$ find $a_{min}$
- How do you find the greatest rectangle of given ratios that can be cut from another fixed rectangle?
- Nonlinear Least Squares vs. Extended Kalman Filter
- Maximisation and minimisation of sum of squares, if sum is equal to 15
- quasi-newton method converges in at most n+1 iterations
- Show that $\bf x$ is a basic feasible solution
- Maximizing $3 x^2+2 \sqrt{2} x y$ with $x^4+y^4=1$
- Optimization Question, Finding Maximum and Minimum Values of $30x^2 + 480/x$
Related Questions in MAXIMA-MINIMA
- Prove inequality $\left| \frac{x+yz}{x^2+y^2} \right| \leq 1$ for $x^2+y^2-z^2=1$
- Finding the coordinates of R such that PR+RQ is minimum
- Find $x,y,z>0$ such that $x+y+z=1$ and $x^2+y^2+z^2$ is minimal
- Finding the maximum value of $ab+ac+ad+bc+bd+3cd$
- constrained extrema (absolute)
- Shortest distance to a straight line
- Using Calculus, find the point on circle $(x-3)^2+(y-1)^2=16$ that is closest to arbitrary point $(-2,2)$ in $x-y$ plane that is not on the circle.
- Lagrange multipliers and the extrema of $f(x,y) = -x^2-y^2+x+y$
- Find a maximum of: $x^{2016} \cdot y+y^{2016} \cdot z+z^{2016} \cdot x $
- Find the minimum $k$
Related Questions in GLOBAL-OPTIMIZATION
- Rigorous global optimization
- Do initial parameters in this global optimization problem matter?
- $f(\theta)<f(\theta^*)$ $\forall \theta\in \Theta$ implies $\theta^*=argmax_{\theta\in \Theta}f(\theta)$
- how to find global minimum and max over set s
- Proof KKT points are inside a ball and find the Lagrange multipliers
- Can we find a minimizer of $\sum_{i=1}^k\int a_iw_i$ satisfying $\sum_{i=1}^kw_i=1$?
- Finding $n$ points $x_i$ in the plane, with $\sum_{i=1}^n \vert x_i \vert^2=1$, minimizing $\sum_{i\neq j}^n \frac{1}{\sqrt{\vert x_i-x_j \vert}}$
- Find a global maximum and show that it is unique
- What if we have 2 same local extrema, how do we deal with global extrema?
- Is there any way to solve df(t)/dt = 0 for t and f(tsolved) value if we know F(s), the Laplace transform of f?
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Refuting the Anti-Cantor Cranks
- Find $E[XY|Y+Z=1 ]$
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- What are the Implications of having VΩ as a model for a theory?
- How do we know that the number $1$ is not equal to the number $-1$?
- Defining a Galois Field based on primitive element versus polynomial?
- Is computer science a branch of mathematics?
- Can't find the relationship between two columns of numbers. Please Help
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- A community project: prove (or disprove) that $\sum_{n\geq 1}\frac{\sin(2^n)}{n}$ is convergent
- Alternative way of expressing a quantied statement with "Some"
Popular # Hahtags
real-analysis
calculus
linear-algebra
probability
abstract-algebra
integration
sequences-and-series
combinatorics
general-topology
matrices
functional-analysis
complex-analysis
geometry
group-theory
algebra-precalculus
probability-theory
ordinary-differential-equations
limits
analysis
number-theory
measure-theory
elementary-number-theory
statistics
multivariable-calculus
functions
derivatives
discrete-mathematics
differential-geometry
inequality
trigonometry
Popular Questions
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- How to find mean and median from histogram
- Difference between "≈", "≃", and "≅"
- Easy way of memorizing values of sine, cosine, and tangent
- How to calculate the intersection of two planes?
- What does "∈" mean?
- If you roll a fair six sided die twice, what's the probability that you get the same number both times?
- Probability of getting exactly 2 heads in 3 coins tossed with order not important?
- Fourier transform for dummies
- Limit of $(1+ x/n)^n$ when $n$ tends to infinity
first of all, your problem is convex:
$$\text{min./max. }f(x,y) = 5x - 8y$$
$$\text{s.t. } 5x^2 - 8xy + 4y^2 + 8x-8y \leq 5$$
You can see that the inequality constraint could be written as $(x~y)^T = z$ and $z^T A z + c^T z \leq 5$, which might be the more intuitive equation to see it's an ellipse (see the plot).
Affine functions (as your objective) are convex, any set $S$ bound by an ellipse is a convex set
$$S = \{x\in\mathbb{R}^n| x^T A x + c^T x \leq b\}$$
For convex problems Karush-Kuhn-Tucker holds, there exists one unique solution (the global maximum/minimum), hence you are searching for each one minimum and maximum. As @Matti P. has already mentioned, it will be on the edge of the ellipse, which means
$$5x^2 - 8xy + 4y^2 + 8x-8y = 5$$
Solving this equation and plugging it into the now un-constrained problem, I come up with:
$$(x, y)_{min} = \left(\frac{9}{5}, 4 \right)$$
$$(x, y)_{max} = \left(-\frac{9}{5}, -2 \right)$$
with $f((x, y)_{min}) = -23$ and $f((x, y)_{max}) = 7$, which looks rougly looks like this solution plot. I hope this helps.