Interesting.
I always translate these things to Cartesian coords, even if they have clever geometric solutions which are hard to spot.
[Sidenote: if we wanted to minimize MA + MB - MC, it would be the Steiner centre]
There may also be symmetry about the y-axis here.
I'm guessing the answer is the asymptote (0,+y) as y→∞
So by translation, rotation and scaling, let the coords ABC be
A (-1,0) B (1,0) C (0,k) for some k>0
>with AC = BC ≥ AB
=> √(1²+k²) > 2
=> 1+k² > 4
=> k² > 3
=> k > √3
For which point M(x,y) in the plane of the triangle will MA + MB - MC be a minimum?
Well MA + MB - MC is some fn of (x,y), call it f(x,y)
Remember A (-1,0) B (1,0) C (0,k)
MA = √((x+1)² + y²)
MB = √((x-1)² + y²)
MC = √(x² + (y-k)²)
f(x,y) = √((x+1)² + y²) + √((x-1)² + y²) - √(x² + (y-k)²)
I think we start by remarking that we always have f(x,+y) > f(x,-y) due to C being in the upper half-plane. Hence M must be in the upper half-plane.
Next, prove that the optimal M* must lie inside the triangle.
=> 0
Next, to justify why the optimal M* must lie on the y-axis,
consider f for some arbitrary M(x,y) and consider M'(0,y) i.e. when M is projected onto the y-axis.
We want to prove that in all cases, f(0,y)> f(x,y).
Consider that y is fixed and x is our variable
Now: f(x,y) = √((x+1)² + y²) + √((x-1)² + y²) - √(x² + (y-k)²)
and
f(0,y) = √(1 + y²) + √(1 + y²) - √((y-k)²)
Now can we prove this difference is always positive:
d(x,y) = f(0,y) - f(x,y)
= √(1 + y²) + √(1 + y²) - √((y-k)²) - √((x+1)² + y²) - √((x-1)² + y²) + √(x² + (y-k)²)
= [√(1 + y²) - √((x+1)² + y²)] + [√(1 + y²) - √((x-1)² + y²)]
+ [√((y-k)²) - √(x² + (y-k)²)]
I think you can use Triangle Inequality to prove that.
If we can justify all this, it reduces to minimizing:
f(0,y) = 2√(1 + y²) - √((y-k)²)
When 0
f(0,y) = 2√(1 + y²) + (k-y)
∂f/∂y = 2y/√(1 + y²) -1
∂f/∂y = 0 => 2y/√(1 + y²) = 1
2y = √(1 + y²)
4y² = 1 + y²
3y² = 1
y = 1/√3
Thus the solution is M*(0, 1/√3)
and the minimal value of f
is f*(0, 1/√3) = 2√(4/3) + (k-1/√3)
= 4/√3 + (k -1/√3)
= k + √3
[curious that M* is not influenced by k]
The general derivative would be:
(∂f/∂x, ∂f/∂y) =
( 2(x+1)/ √((x+1)² + y²) + 2(x-1)/√((x-1)² + y²) - 2x/√(x² + (y-k)²),
2y/ √((x+1)² + y²) + 2y/√((x-1)² + y²) - 2(y-k)/√(x² + (y-k)²) )
f(x,y) is minimized when del f(x,y) = (0,0)
For the y-component, solve:
2y/ √((x+1)² + y²) + 2y/√((x-1)² + y²) = 2(y-k)/√(x² + (y-k)²)
and so on.