What do you think about this, below?
The question is which of these options maximizes both x and y. We’re trying to think about maximizing two (or more) different things.
- x=5,y=5
- x=4,y=10
- x=11,y=1
One way to view it is there are multiple specific things you could try to maximize. I’ll list some of them with the correct answer for each in parentheses after.
x (3)
y (2)
minimum(x,y) (1)
maximum(x,y) (3)
x+y (2)
x*y (2)
2x+y (3)
x+2y (2)
x^2+y^2 (3)
sqrt(x)+sqrt(y) (2)
y-x (2)
x+10y (2)
FYI, the minimum function returns the lowest number from all its inputs. The maximum function returns the highest number from all its inputs.
Option 1 won once, 2 won seven times and 3 won four times. So 2 won the most times, and it won more times than the other options combined. But that might not mean much: you could make a different list and get a different option to win the most times.
For each expression on my list, there is a clear, well-defined answer about which of the three options maximizes it. You can just use math. (We didn’t run into a tie here, but in general ties are possible. Multiple options can tie for the maximum. That’s fine. Due to ties, sometimes maximization has more than one correct answer. Ties are a tangential issue from what we’re talking about.)
Does maximizing x and y (or more generally, maximizing two or more things) have a clear, well-defined answer? If so, is it one of the expressions on the list or some other expression/formula you could write down? If so, which expression and why?