|
| 1 | +/* |
| 2 | + * java-math-library is a Java library focused on number theory, but not necessarily limited to it. It is based on the PSIQS 4.0 factoring project. |
| 3 | + * Copyright (C) 2018-2024 Tilman Neumann - [email protected] |
| 4 | + * |
| 5 | + * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License |
| 6 | + * as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. |
| 7 | + * |
| 8 | + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
| 9 | + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
| 10 | + * |
| 11 | + * You should have received a copy of the GNU General Public License along with this program; |
| 12 | + * if not, see <http://www.gnu.org/licenses/>. |
| 13 | + */ |
| 14 | +package de.tilman_neumann.jml.partitions; |
| 15 | + |
| 16 | +import java.math.BigInteger; |
| 17 | +import java.util.SortedSet; |
| 18 | + |
| 19 | +import org.apache.logging.log4j.Logger; |
| 20 | +import org.junit.BeforeClass; |
| 21 | +import org.junit.Test; |
| 22 | +import org.apache.logging.log4j.LogManager; |
| 23 | + |
| 24 | +import de.tilman_neumann.jml.Divisors; |
| 25 | +import de.tilman_neumann.util.ConfigUtil; |
| 26 | + |
| 27 | +import static org.junit.Assert.assertEquals; |
| 28 | + |
| 29 | +public class MpiPowerMapHypothesisTest { |
| 30 | + |
| 31 | + private static final Logger LOG = LogManager.getLogger(MpiPowerMapHypothesisTest.class); |
| 32 | + private static final boolean LOG_ALL = false; |
| 33 | + private static final boolean LOG_FEW = false; |
| 34 | + |
| 35 | + @BeforeClass |
| 36 | + public static void setup() { |
| 37 | + ConfigUtil.initProject(); |
| 38 | + } |
| 39 | + |
| 40 | + /** |
| 41 | + * Test a relationship between the set of divisors of some N and the "MPI powermap" for that N. |
| 42 | + * The hypothesis is: The number of divisors of N == the number of entries in the powermap + the number of unit entries (prime factors) + 1 (for the empty set) |
| 43 | + * |
| 44 | + * I confirmed the hypothesis for N from 0 to 60.000.000 in a 30-minute-run on a Ryzen 3900X. |
| 45 | + * |
| 46 | + * The sequence of the number of divisors is A000005(n) = the number of divisors of n = |
| 47 | + * (0,) 1, 2, 2, 3, 2, 4, 2, 4, 3, 4, 2, 6, 2, 4, 4, 5, 2, 6, 2, 6, 4, 4, 2, 8, 3, 4, 4, 6, 2, 8, 2, 6, 4, 4, 4, 9, 2, 4, 4, 8, 2, 8, 2, 6, 6, 4, 2, 10, 3, 6, ... |
| 48 | + * and the sequence of power map entries is A055212(n) = Number of composite divisors of n = |
| 49 | + * (0,) 0, 0, 0, 1, 0, 1, 0, 2, 1, 1, 0, 3, 0, 1, 1, 3, 0, 3, 0, 3, 1, 1, 0, 5, 1, 1, 2, 3, 0, 4, 0, 4, 1, 1, 1, 6, 0, 1, 1, 5, 0, 4, 0, 3, 3, 1, 0, 7, 1, 3, ... |
| 50 | + */ |
| 51 | + @Test |
| 52 | + public void testPowerMapHypothesis() { |
| 53 | + ConfigUtil.initProject(); |
| 54 | + for (int n=0; n<100000; n++) { |
| 55 | + BigInteger bigN = BigInteger.valueOf(n); |
| 56 | + SortedSet<BigInteger> divisors = Divisors.getDivisors(bigN); |
| 57 | + int numberOfDivisors = divisors.size(); |
| 58 | + PrimePowers primePowers = PrimePowers_DefaultImpl.valueOf(bigN); |
| 59 | + MpiPowerMap powerMap = MpiPowerMap.create(primePowers); |
| 60 | + int powerMapSize = powerMap.size(); |
| 61 | + if (LOG_ALL) { |
| 62 | + LOG.debug("n=" + n + " has " + numberOfDivisors + " divisors, and power map has " + powerMapSize + " entries"); |
| 63 | + } else if (LOG_FEW) { |
| 64 | + if (n%10000 == 0) LOG.debug("n=" + n + " has " + numberOfDivisors + " divisors, and power map has " + powerMapSize + " entries"); |
| 65 | + } |
| 66 | + int correctedPowerMapSize = n>0 ? powerMapSize + primePowers.getDim() + 1 : 0; |
| 67 | + // the power map is missing the unit entries (only one prime) and the empty entry! |
| 68 | + if (numberOfDivisors != correctedPowerMapSize) { |
| 69 | + LOG.error("n = " + n + " failed powerMap hypothesis: numberOfDivisors = " + numberOfDivisors + ", correctedPowerMapSize = " + correctedPowerMapSize); |
| 70 | + LOG.error("divisors = " + divisors); |
| 71 | + LOG.error("powerMap = " + powerMap); |
| 72 | + } |
| 73 | + assertEquals(numberOfDivisors, correctedPowerMapSize); |
| 74 | + } |
| 75 | + } |
| 76 | +} |
0 commit comments