Expectancy value for the percentage of points lying in the Convex Hull (3D)

Suppose I chose n uniformly distributed random points in a 3D cube. What is the expected value for the percentage of points lying on the convex hull as a function of n?

Just as a reference, I made the following experiment in Mathematica 8:

Needs["TetGenLink`"]; Show[
 DiscretePlot[
  1/k Mean[Length /@ Union /@ (Flatten /@ (TetGenConvexHull /@ 
          RandomReal[{0, 1}, {500, k, 3}]))], {k, 4, 200, 3}, 
  AxesOrigin -> {0, 0}, Joined -> True], Plot[.5, {x, 1, 200}]]

enter image description here

Edit

Again as a reference, if we plot the mean number of points in the convex hull (not the percentage) as a function of the total number of points we get:

enter image description here

Edit 2

The second plot in Log and Log-Log forms:

enter image description here

Edit 3

As noted by @Raskolnikov in the comments below, and confirmed by the "experimental" result, the case n=5 can be though as the Cube Tetrahedron Picking Formula wich is basically the probability of the fifth point being inside the tetrahedron determined by the other four points.

As noted by @Steven Stadnicki that is not completely obvious because you are choosing the four points beforehand and some permutation could have been left aside ... but the experiments confirm the @Raskolnicov reasoning.

Edit 4

I fitted the data using Eureqa, a nice package from Cornell for guessing fitting functions, and got as a probable fit for the number of points in the convex hull:

f[x_] := 1.4723399 Log@x Log@(3.0543704 + x)

which gives:

enter image description here

In line with Raskolnicov's answer about the asymptotic behavior. I wasn't able to read the cited paper, though (restricted access)


Solution 1:

In the meantime, I have found this article which addresses an even more general issue, namely the same problem but for the interior of a $d$-dimensional polytope.

So, for the 3D-cube, this implies $O((\log n)^2)$ for the number of points.