I solved it. Now, you try!
-+-
College ThingamajigANameIForget on Mars is building seven new cafeterias. The college campus is a perfect planar circle with a radius of 1 km. The college wants to build the cafeteria so that each of them is located within the planar circle. The cafeterias should be so arranged as to minimize the
In mathematical terms: you are given a circle C of radius 1 km and seven points. Arrange the seven points inside the circle so that you solve the following constrained optimization problem.
Let d(P, i) denote the linear distance between point P and cafeteria i.
Let dist(P) = min(d(P,i) for i ranging from 1 to 6)
That is, dist(P) is the minimum distance a student located at P would have to travel to reach some cafeteria.
Arrange the 7 cafeterias such that dist(P) is minimized when P is ranged over all points within the circle C.
-+-
Update: fixed typo in post.