Discussion about this post

User's avatar
Aaron M's avatar

I think your explanation of the factorial number system may be off by one place. The base 2 digit has a factor of 1!, the base 3 digit has a factor of 2!, etc. Otherwise, you can’t write out odd numbers. https://en.m.wikipedia.org/wiki/Factorial_number_system

Expand full comment
Steve Curry's avatar

Can You Light Up the Pinball Machine

I was hoping to see that someone had derived a closed-form solution for the function E(N), but they haven't. It appears that E(N) has a rational value and I hoped for some insight into this function by examining prime factor ratios that yield the first fourteen values. I discovered a method to calculate the exact probabilities P(N,m) of success on the "m"th pinball flip for any N, but to find E(N) I had to sum the infinite series

E(N) = (1→Inf)∑m*P(N,m)

to a sufficient number of terms and with sufficiently high precision to obtain accurate values of E(N).

Using a computer program with extended-precision (10 byte) floating point variables, I obtained the following decimal values for E(N):

N E(N) Calculated E(N) Actual ???

1 1.000000000000 = 1

2 4.000000000000 = 2²

3 10.000000000000 = 2*5

4 21.333333333333 = 2⁶/3

5 42.666666666667 = 2⁷/3

6 83.200000000000 = 2⁵*13/5

7 161.066666666667 = 2⁴*151/3/5

8 312.076190476190 ≈ 312+2³*11*13*37/5/111111

9 607.085714285714 ≈ 607+3²*11*13*37/5/111111

10 1186.539682539683 ≈ 1186+2*11*13*17*37/3/111111

11 2329.193650793651 ≈ 2329.1+11*13*37*59/2/3/5/111111

12 4588.938528138528 ≈ 4588.9+13*37*89/2/5/111111

13 9067.350072150072 ≈ 9067.3+13*37*347/2/3/5/111111

14 17956.83853923853 ≈ 17956.8+2³*7*31*37/3/5/111111

The values of E(N) for N = 1→7 look like exact values, but then it gets strange. The values of E(N) for N = 8→14 *look* like repeating decimals with a period of six digits. This indicates that if the E(N) were expressed as a rational fraction, there would have to be a factor of 111111 in the denominator of E(N) for all seven values N = 8→14 shown above. That just doesn't seem reasonable to me. What is going to give the prime number 111111? Are these values of E(N) *really* repeating decimals? Does anyone have an explanation for this surprising result?

Expand full comment
23 more comments...

No posts