mmcooley33
Max (x,y) is defined as the maximum of x and y , and min(x,y) is defined as the minimum of x and y . What is the average of Max(x,60) and Min(40,x) ?
1. Min(x,60)=x
2. Max(40,x)=x
I read the explanation given by
MGMAT, ill post below so as not to spoil. However, after reading, I am still confused about what this means. Perhaps someone could give a more clear and consice explanation? thanks for the help.
First of all: max(x,y) and min(x,y) are just some functions defined as:
max(x,y)=the maximum of x and y and
min(x,y)=the minimum of x and y.
Question is: \(average=\frac{min(40,x)+max(x,60)}{2}=?\)
If \(x<{40}\) then \(min(40,x)=x\), \(max(x,60)=60\) and \(average=\frac{x+60}{2}=?\);
If \(40<x<60\) then \(min(40,x)=40\), \(max(x,60)=60\) and \(average=\frac{40+60}{2}=50\);
If \(x>{60}\) then \(min(40,x)=40\), \(max(x,60)=x\) and \(average=\frac{40+x}{2}=?\).
(1) Min(x,60)=x --> just says that \(x<60\), so we have either the first or the second case. Not sufficient.
(2) Max(40,x)=x --> just says that \(x>40\), so we have either the second or the third case. Not sufficient.
(1)+(2) \(40<x<60\) so we have the second case: \(min(40,x)=40\), \(max(x,60)=60\) and \(average=\frac{40+60}{2}=50\). Sufficient.
Answer: C.