0

Consider a semicircle C with radius r in the plane and a set P of n points lying on or inside C. Can we give an upper bound on the cost of an MST of P as a function of r (independent of n)?

user2311963
  • 143
  • 6

1 Answers1

1

There is no upper bound independent of n.

Consider, for example, the Koch snowflake: https://en.wikipedia.org/wiki/Koch_snowflake

It fits into a finite area, and the perimeter is an MST, but its length is infinite (or approaches infinity as you iterate the construction).

More generally, you can force an MST to follow any curve you like, however closely you want, by sampling the curve at sufficiently small increments. Since there is no limit on the length of a curve you can stuff into an area, there is no limit on the cost of an MST you can stuff into an area.

Matt Timmermans
  • 53,709
  • 3
  • 46
  • 87