Question 1102022: Among all pairs of numbers whose sum is 8, find a pair whose product is as large as possible. What is the maximum product? Answer by ikleyn(52781) (Show Source):
Let x and y be the pair such that x + y = 8.
Then y = 8-x, and they want you find x and y in a way that the product x*y would be maximal.
x*y = x*(8-x) = -x^2 + 8x = -(x^2 -8x) = -(x^2 -8x + 16) + 16 = -(x-4)^2 + 16.
The right side is the parabola opened down in the vertex form
It has the maximum at x = 4, and the maximum value is 16.
So, your answer is: the pair (x,y) under the question is the pair x= 4, y= 4, or (4,4), and the maximum product is 4*4 = 16.