My geometry text sometimes asks some question about a polygon defined by the coordinates of the vertices. For example, we might be given the coordinates of four points and asked whether they are the vertices of a rectangle. The model answer might involve checking whether the diagonals are congruent.
Each time I solve a problem like this I wonder whether it is necessary to graph in order to determine which segments will be sides and which will be diagonals. The students always assume that the points are stated in order, so that non-consecutive vertices lie on diagonals. And this is in fact how the problems always seem to turn out.
Is there an easy comparison of the coordinates that reveals where the sides and diagonals are?
Is there a set of n points that can be the vertices of more than one n-gon, so that two of these points will lie on either a side or a diagonal, depending on the order in which the points are named? Are some sets of points "ambiguous" in this way, and some sets unambiguous? Is that ambiguity also easily detected?
From the wording of your questions you silently assume that the points lie within a single plane. Then you could check any pair of points, deriving the being spanned line, whether all the remaining points lie on a single side of that line. If so the segment between those 2 points would be a part of the hull polygon; else that line segment would be internal. Note that also some of the provided points might lie within the internal of that hull!
When considering the same problem in any arbitrary dimensional setting, you first would have to detect the dimension d of the span of those points. Then you would have to consider any subset of d points instead, which again would define a containing hyperplane. Again you would have to check whether there are all remaining points on a single side thereof. This, if positive, would provide you one by one with the facets of the hull.
--- rk