Background of my question is, that I would like to implement a parallel preprocessing for a constructing the convex hull of very huge number of points in the euclidean plane;
the idea is to process 4-tuples of points in parallel, eliminating from each 4-tuple the point(s), that are not a corner of the respective convex hull.
After that parallel step has been iteratively executed on the "surviving" points several times, a serial algorithm would take care of finally constructing the convex hull.
In view of the comments, I see the need to clarify that, if $n$ is the total number of points, then the set of points is partitioned into $\lfloor\frac{n}{4}\rfloor$ of quadruplets of points such that each point is either in exactly one of those quadruplets or, one of the $n-4\times\lfloor\frac{n}{4}\rfloor$ remaining points.
The quadruplets could for example be four adjacent points in a list that is lexicographically sorted according to the point's coordinates.
Questions:
what is the probability, that 4 points chosen randomly from the euclidean plane are in convex configuration?
given a set of points, that is randomly and evenly distributed in the unit-disc (resp. unit-square), what is the expected portion of points that will survive the i-th parallel elimination step (as described above).