First, a word of caution: When comparing graphs I post, be sure to look at the range of the x-axis. Most of them start at Area = 50
, but their upper limits may differ. This is because I run the algorithm for as long as I have patience for (a few seconds if I’m at my desk working, a few hours if I’m leaving to go to class, overnight if I’m going to bed, etc) when generating sample images.
Last week, Prof. Khanna gave me a very valuable tip. In this counting, we do want to count states I had previously considered degenerate: permutations of states. For example, the states
and
should be considered distinct. However, some permutations do lead to identical states and shouldn’t be counted, for example
and
.
is
under the permutation of switching the first and second elements.
Right now (assuming this part of it works correctly) the algorithm only counts states that are unique under any permutation. This means that whenever a factor of
is added to the total count, it should be multiplied by

where
are the numbers of identical elements in
. I’ve written a process for finding this factor which works correctly in a test project on a pre-determined set.
One more thing. In their article Black Hole Entropy from Quantum Geometry, Domagala and Lewandowski state that the case
is unphysical and not allowed. This was very easy to integrate into the existing code. So, with all those changes (and a few other minor things) the results I get are
This is a great improvement over my previous results since the error (or disagreement with Corichi) is concave down. The errors I’ve gotten before this have all been concave up, and usually exponential-looking.
