Recent content by ppnl

  1. P

    Are Turing's and Godel's theorems the same thing?

    If there are programs whose halting status is undecidable then there are clearly undecidable mathematical propositions. After all asking if a program will halt is a math problem.
  2. P

    Are Nuclear Plants Required to Shut Down During Tornado Warnings?

    How long does it take to come back from a hot zero?
  3. P

    Are Nuclear Plants Required to Shut Down During Tornado Warnings?

    I mean purposely taken off line during a tornado warning. if so how often does this happen?
  4. P

    Are Nuclear Plants Required to Shut Down During Tornado Warnings?

    Do nuclear plants shut down during a tornado warning? I have heard that they do but really can't think why.
  5. P

    A proof that a computer cannot generate a truly random number?

    Ok, forget about the coin flip. Let's say you have a box that contains 100000 molecules of a gas bouncing randomly. At any point in time there is a 50% chance that any given molecule will be on the left side of the box rather than the right side. Would you say that if you looked and found all...
  6. P

    A proof that a computer cannot generate a truly random number?

    No. Choose a compression algorithm. Then you can spend your entire life flipping coins and never find a 100000 bit sequence that will compress appreciably. The number of compressible sequences is so small that you will never see them by accident. And every bit you add to the sequence you want...
  7. P

    A proof that a computer cannot generate a truly random number?

    Meh, first there is no reason a computer can't generate random sequences. There is no requirement that a computer be fully deterministic. If its operation contains a random component then it can extract that random component and produce a random sequence. If we are restricted to deterministic...
  8. P

    'Advantages' of Quantum Encryption

    In QKD it only distributes a key so that you can communicate by a classical channel. As long as the classical channel is public I don't see how man in the middle systems can break it. But you do need some kind of authentication system for the classical channel. That should not be hard with a...
  9. P

    Consecutive integers divisible by a set of Primes

    I ask a very similar question here: https://www.physicsforums.com/showthread.php?t=632458 What was your motivation for excluding 2? I would be interested in what language and algorithm you used. I'm useing purebasic. I generated permutations of the prime list and constructed a gap by fitting...
  10. P

    Relative Prime Gaps: Fast Algorithm for Calc.

    And for N=7 we get a gap of 2*13=26 as expected and with N=8 we get 2*17=34 as expected. But for N=9 we expect a maximum gap of 2*19=38. A gap of that size does exist but we have a larger gap with of 40 with an irregular structure...
  11. P

    Relative Prime Gaps: Fast Algorithm for Calc.

    OOPS! Sorry, my bad. That should be: N=3--- P,2,3,2,5,2,P=2*3 N=4--- P,2,3,2,5,2,7,2,3,2,P=2*5 N=5--- P,2,5,2,3,2,7,2,11,2,3,2,5,2,P=2*7 To construct this gap we place the two largest primes in the middle with a two between: ...17,2,19... Now going to the right we number the...
  12. P

    Relative Prime Gaps: Fast Algorithm for Calc.

    Now we are getting somewhere. It is easy to show that the max gap for the first N prime numbers is at least two times the N-1th prime. We can always construct a gap of exactly this size. We construct the gap by listing the smallest prime a position in the gap is divisible by like this...
  13. P

    Discovering formula for a sequence with recurring digits

    Why does it matter that they are not digits? why can't you have: ...1,2,3,4,5,6,7,8,9,10,11,12,1,2,3,4,5,6,7,8,9,10,11,12,13,14... for example? If you really need a sequence of digits rather than numbers you can just take out the commas: ...1234567891011121234567891011121314...
  14. P

    Relative Prime Gaps: Fast Algorithm for Calc.

    Yes I think that's it but it really obscures what is going on. Just do a sieve of Eratosthenes using only the first N primes and find the largest relative prime gap that it leaves. But this method of finding the gaps is very slow. There is another method using permutations of the prime list...
  15. P

    Relative Prime Gaps: Fast Algorithm for Calc.

    Ok, let me try again. What is the biggest gap between consecutive numbers not divisible by two? Obviously it is two. 3 and 5 for example are consecutive numbers not divisible by two. They are not consecutive integers but they are consecutive numbers not divisible by two. They are also...
Back
Top