Examples comparisons for random partition algorithms Kenneth Locey 10.6084/m9.figshare.96310.v2 https://figshare.com/articles/dataset/Examples_comparisons_for_random_partition_algorithms/96310 <p><strong>Topic:</strong> generating uniform random samples from the set of all integer partitions for a given total N and a number of parts S.<br><br><strong>Problem:</strong> current random integer partitioning functions of mathematical software can take a long time to generate a single partition for a given N (regardless of S) and an untennable amount of time generating partitions of N with S parts.</p> <p>Currently, no function among math softwares, peer-reviewed literature, and on stackexchange and arxiv.org generates random partitions with respect to both N and S. Consequently, if one is interested in generating random integer partitions for N having S parts, then one must usually waste time generating random partitions of N and rejecting those not matching S.</p> <p><strong>Note!</strong> I have since solved this problem definitively:</p> <p>The question is asked and the solution is presented here: stackoverflow.com/questions/10287021/an-algorithm-for-randomly-generating-integer-partitions-of-a-particular-length/12742508#12742508</p> <p>I've recently published a preprint of a manuscript on figshare outlining a simple and unbiased solution to this question. figshare.com/articles/Random_integer_partitions_with_restricted_numbers_of_parts/156290</p> <p>However, below is an approach I tried and was unable to eliminate sampling bias from while keeping reasonable speed. I guess this page is more useful as a good way to <strong>NOT</strong> go about getting random integer partitions for N and S.</p> <p><strong>Deprecated alternative approach (often biased and slower than the above solution):</strong> Generate a single random partition of N and randomly manipulate it until its number of parts equals S. Why? Because randomly perturbing a partition of N until it satisfies S can be faster than generating random partitions based solely on N and rejecting those without S parts.<br><br><strong>Contents (results of deprecated algorithm):</strong></p> <p>Visual comparisons of 500 random samples generated from the new function derived by myself (red curves) against 500 random samples generated using the random partition function found in the Sage mathematical environment (black curves). <br><br>Kernel density curves (red ones and black ones) are for statistical evenness across the partition. Statistical evenness is a standardized log-transform of the variance. Kernel density cures that overlap nearly completely reveal that the random samples of partitions generated between the two approaches share a similar structure.</p> <p>Evenness is estimated using Evar, a transform of the variance of log summand values. Evar is standardized to take values between 0.0 (no evenness) and 1.0 (perfect evenness). </p> <p>Close agreement between the random manipulation approach and the Sage function (very high rejection rates as most partitions of N don't match S) was also found using other statistical characteristics (e.g. median summand, relative size of largest summand). These results reveal that the statistical quality of evenness (a transform of the variance) is in high agreement between the two approaches (Sage's function and the potential alternative of randomly manipulating integer partitions using conjugates).<br><br><strong>Note:</strong> I have found biases in skewness and the median summand value with this type of method (randomly manipulate an integer partition to arrive at a uniform random sample based on N and S), and would not recommend this approach.</p> <p> </p> 2013-02-05 16:04:20 scientific computing integer partitioning combinatorics Applied Computer Science