Let X be a set and d, e two metrics on it. How can I show that the function f defined by f(x,y) = min(d(x,y), e(x,y)) is again a metric? This has been bothering me for the past few days as it seems intuitively true but always get stuck trying to prove the triangle inequality for f. Perhaps there is something obvious I'm missing.
If the minimums are the same metric the problem is easy, but showing d(x,y) + e(y,z) >= d(x,z) and the similar cases have left me stuck. My best attempt so far has been to attempt to find a contradiction by assuming the inequality is false:
f(x,y) + f(y,z) < f(x,z)
d(x,y) + e(y,z) < e(x,z) (a specific case in the contradiction, specifics not important)
d(x,y) + d(y,z) + e(y,z) < e(x,z) + d(y,z)
d(x,z) + e(y,z) < e(x,z) + d(y,z) (Using fact d is a metric)
d(x,z) + e(y,z) - d(y,z) < e(x,z), but e(y,z) < d(y,z) so d(x,z) should be smaller than e(x,z) which contradicts f(x,z) = e(x,z).
Now clearly this is an incorrect argument, but it's the best I have at this point. Any ideas?