This problem asks us to find the best location for a new facility to serve four demand points, minimizing the total weighted distance using the rectilinear (Manhattan) distance. The rectilinear distance between two points (x1,y1) and (x2,y2) is given by d=∣x1−x2∣+∣y1−y2∣. Our objective is to minimize ∑i=1nwi(∣x−xi∣+∣y−yi∣), where (x,y) is the facility's location, (xi,yi) are demand point coordinates, and wi are their demands. A crucial property of rectilinear distance is that the optimal x and y coordinates can be found independently.
First, let's find the optimal x-coordinate. We need to find the weighted median of the x-coordinates.
The demand points and their demands are:
Point 1: (1,2), w1=700
Point 2: (2,3), w2=100
Point 3: (3,5), w3=300
Point 4: (4,1), w4=500
The total demand is W=700+100+300+500=1600. Half of the total demand is W/2=1600/2=800.
Now, we sort the x-coordinates and calculate the cumulative demand:
| X-coordinate (xi) | Demand (wi) | Cumulative Demand |
|:----------------------:|:---------------:|:-----------------:|
| 1 | 700 | 700 |
| 2 | 100 | 700+100=800 |
| 3 | 300 | 800+300=1100|
| 4 | 500 | 1100+500=1600|
The cumulative demand first reaches or exceeds W/2=800 at x=2. Since the cumulative demand exactly equals 800 at x=2, the optimal x-coordinate can be any value between x=2 and the next x-coordinate, x=3. So, the optimal x-coordinate is in the interval [2,3].
Next, we find the optimal y-coordinate by finding the weighted median of the y-coordinates.
The total demand is still W=1600, and W/2=800.
Sort the y-coordinates and calculate the cumulative demand:
| Y-coordinate (yi) | Demand (wi) | Cumulative Demand |
|:----------------------:|:---------------:|:-----------------:|
| 1 | 500 | 500 |
| 2 | 700 | 500+700=1200|
| 3 | 100 | 1200+100=1300|
| 5 | 300 | 1300+300=1600|
The cumulative demand first reaches or exceeds W/2=800 at y=2 (where the cumulative demand is 1200). Thus, the optimal y-coordinate is y=2.
Combining these results, the optimal facility location (x,y) must satisfy x∈[2,3] and y=2. This describes the line segment connecting the points (2,2) and (3,2). This matches option A.