In summary, given n+1 points in n-dimensional Euclidean space, the number of polytopes that can be defined by representing each point as a possible vertex is 2^(n+1) - n - 2. This is a more rapidly increasing series than that of ordinary partitions, which can be seen through examples such as the Traveling Salesman problem and the Ackermann function. Another example of a rapidly increasing function is the Busy Beaver function, which is provably uncomputable and grows faster than any computable function.
Given n+1 points in n-dimensional Euclidean space, how many polytopes (generalizations of polygons of n to as few as 2 dimensions) may be defined by the representation of each point as a possible vertex?
I am trying to develop a combinatorics which surpasses the progression of partitioning, thus the above definition. Even partitioning does not have an exact heuristic to determine its nth term.
Can anyone show the derivation of an approximate heuristic for this problem, or at least whether the magnitude of its nth term is significantly greater than that of partitions?
#5
damgo
^^^ Can you restate that? I don't understand what you're saying. I can derive my formula if that's what you want...
Take n+1 points in n dimensions. Count all possible 2-dimensional polygons and their n-dimensional generalizations, formed with any or all points as vertices.
I believe that the count should yield a more rapidly increasing series than that of ordinary partitions. An example of partitioning is the simply stated Traveling Salesman problem, which asks to count the possible paths covering all "cities" on a map. The number of paths increases astronomically against the number of locations.
My guess is that the number of polytopes outlined by arbitrary connections between n points in n dimensions is on the order of p[p[n]], where p[n] is the partition of n. Even [p[n]] (recall the "Traveling Salesman" problem) eventually increases much more rapidly than 2^(n+1)-n-2, or any other exponential relation. In turn, p[p[n]] almost immediately reaches incalculable numeration.
#9
damgo
The # of paths in the traveling salesman problem go as Permutations(n) = n! ~ (n/e)^n (Stirling's approx). The # of polytopes is slower, ~2^n , since order does not matter.
If you want to see *really* quickly increasing things, try Ackerman's function, or the Busy Beaver function.
I've seen the Ackermann function (and boy does it grow fast!), what's the busy beaver function?
Hurkyl
#11
damgo
Consider Turing machines with 2 symbols (call them 0 and 1) and n states, starting on a blank (0's) tape. Look at just the ones that eventually halt with a consecutive series of 1's on the tape. BB(n) is the length of the longest series of 1's produced in this manner.
Roughly, it's the biggest number a computer with n states and infinite storage can create. It's known for n<5... BB(6) is crazy huge, at least 10^100. It's provably uncomputable, and IIRC you can prove that it grows faster (in a rough sense) than any computable function.