Math Is Fun Forum

  Discussion about math, puzzles, games and fun.   Useful symbols: ÷ × ½ √ ∞ ≠ ≤ ≥ ≈ ⇒ ± ∈ Δ θ ∴ ∑ ∫ • π ƒ -¹ ² ³ °

You are not logged in.

#1 2024-06-08 12:33:17

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Possible 'new knowledge'

I am 73 years old, and a private researcher. What I have been working on for thirty-five years, most people will not understand. However, most people agree and understand this fact, “currently the future is unknowable before it happens.” Proof of this, “if we knew what was going to happen in the future, we would have a perfect society able to sidestep or eliminate problems before they happen. The stupidity is thinking that “you know the future.” or “what will happen in the future is obvious.” If that were true, we would all be Bitcoin millionaires.”

The PROBLEM is creating random numbers using a formula, as currently done. This is incorrect. Generating random numbers caused by a formula can be reverse engineered. Therefore, they are not secure. I can make secure random numbers because I do not use a formula, I use future knowledge.

Example of future knowledge: When you click the button on a stopwatch to start an event, the exact nano-second is unknowable till it happens.

I am interested in learning who and how to show this project too. Data as Excel365 and Word365.

Understanding Project Goals:
1. Make an indeterminate system from a deterministic system.
2. Formula to qualify ‘random number generator’ output.
3. Create “Real Random Numbers” with a digital computer.

Output goals:
1. It looks random. This means that it passes all the statistical tests of randomness that we can find.
2. It is unpredictable. It must be computationally infeasible to predict what the next random bit will be, given complete knowledge of the algorithm or hardware generating the sequence and all the previous bits in the stream.
3. It cannot be reliably reproduced. If you run the sequence generator twice with the exact same input (at least as exact as humanly possible), you will get two completely unrelated random sequences.

The output of a generator satisfying these three properties will be good enough for a one-time pad, key generation, and any other cryptographic applications that require a truly random sequence generator.

This project’s output is unbreakable even with quantum computers.

Thanks,

Leonard Dye

Offline

#2 2024-06-08 15:40:41

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

Stopwatch Problem
1.       Time, it includes hours, minutes, seconds and nanoseconds. True or False
2.       Clicking the button at the start of an event marks the beginning of the event. True or False
3.       The value of the beginning of the event CANNOT be known before it happens.  True or False
4.       Output of a digital stopwatch CANNOT be known before it appears on screen.  True or False
5.       Therefore, time can be used as an unknowable data point.  True or False
                            ****************************************
The above is deductive logic. Every statement is either true or false. This leads to clear thinking about a problem. Knowledge learned and understood this way cannot be disproved unless ‘new knowledge’ on the problem is found.
If you agree that all five are true, then we can proceed with the knowledge that nobody can know the time at the beginning of an event.
Thanks
Leonard

Offline

#3 2024-06-08 20:25:23

Bob
Administrator
Registered: 2010-06-20
Posts: 10,507

Re: Possible 'new knowledge'

hi woodturner550

Welcome to the forum.

I've used the 'random generator' on Excel quite a few times and the BBC Basic one, and I've never thought to question how it's done. Each time you 'call' the function it yields a different value so it looks random. But, you're right, it must be using a formula and hence results could be predicted by someone who knows how it works.  Many years ago in the UK the Premium Bond organisation made a piece of equipment which they called ERNIE (= Electronic Random Number Indicator Equipment).  Folk who buy premium bonds don't get a percentage interest, rather their numbers are entered in a draw, which pays out money to the lucky winners.

As far as I'm aware it has never been 'hacked'.

All digital computers run from an internal clock.  If you can find out how to access this then you would have your stop watch moment. Since the clock cycles are very fast it would be very hard for anyone to predict the moment you did this.

Subsequent numbers could be generated from within your routine by the same means.  The length of time that would elapse between numbers would probably be indeterminate too as the computer is doing thousands of other things whilst running your routine, which would be taking an unpredictable amount of time each, so the clock cycles would have progresed by an indeterminate amount each time.

Bob


Children are not defined by school ...........The Fonz
You cannot teach a man anything;  you can only help him find it within himself..........Galileo Galilei
Sometimes I deliberately make mistakes, just to test you!  …………….Bob smile

Offline

#4 2024-06-09 05:29:07

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

Bob,
You are on the correct path. The real test is of the QUALITY of the random numbers.
"0.499999973    Standard Deviation of 12,000,000 bits       
0.5    Best Possible Standard Deviation of binary       

To really understand this, the data is important and must be understood.
Thanks,
Leonard Dye

Another way to view this:
The Challenge!
This is a thought challenge. The “seed” for random numbers is unknowable, using time. When you click on a stopwatch at the beginning of an event, that marks the beginning of the event. Do you know the EXACT nano-second the event started? No. It was moved out of the future and moved into the “NOW,” it is an unknowable data point till it happens.

To make this something common, let us use shuffling cards.

Python is used for this example. Using “list methods” therefore using “pop” and “insert,” which is the same as “remove from list” and “add to list.”

Rule 1. The length of the list changes with every pop or insert before the next random number is
               generated. This is reflected on every random number generated using time (Nano) or no
               seed (input).

Rule 2. When it is time to do “discard recovery” a random number is generated for each card and
                inserted. For this exercise, each card should be reinserted before the next one is drawn.

1. Make a list of fifty-two card values. Any order is just one state of the cards.
2. Set the number of cards in the list.
3. Get a random number.
4. Print card value.
5. Set the number of cards on the list.
6. Get a random number.
7. Insert card
8. Repeat 1010 times, 2 through 7 in a single command.
9. Print the first 999 cards for the public.
10. Print the last ten cards for the secret part. The easiest way is to print two copies, one secret and
remove the last ten cards before making 999 public.
11. When the answer is arrived at, check it against the secret list. Understanding the pure logic of this is important. But your wrong answer is the proof that this is correct.
***End of Challenge**
Note: This works just as well dealing with multiple cards before “discard recovery” and replacing in list before next hand. Most important before every random number must update the length of the list. Even knowing the ten cards that are secret, proving that you know what the card should be is not possible.

Offline

#5 2024-06-09 08:42:50

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

I understand that this is not a programing forum, but in this case, it is necessary to say that so far all that is known is the theory and the deductive logic. A little knowledge can be very dangerous. Do not be afraid that you have wasted your time. I will be showing how the algorithm is applied to get quality ‘random numbers.’ If ‘time’ is not used correctly the output will not have the needed quality.
I work with Python 3.7+ for the programing language. I also used PyCharm for my IDE, it is great.

# This program was written in spaghetti code style. This is done for clarity. Output is the same when written normally.
# Programing can be misunderstood by some people who want to try splitting hairs.
# Author: Leonard Dye, tomanytroubles@gmail.com, May 31, 2024 - Copyrighted 10/14/2023
import time
import random


def challenge():
    number_of_needed_numbers = 10
    count = 0
    lowest_random_number_needed = 0
    highest_random_number_needed = 1

    while count < number_of_needed_numbers:
        start_time = time.time()  # get first time
        print("start time ", start_time)
        time.sleep(0.00000000000001)  # wait
        end_time = time.time()  # get second time
        print("end time ", end_time)
        low_time = ((end_time + start_time) / 2)  # covert to one time
        print("low time ", low_time)
        start_time1 = time.time()  # get third time
        print("start time1 ", start_time1)
        time.sleep(0.00000000000001)  # wait
        end_time1 = time.time()  # get fourth time
        print("end time1 ", end_time1)
        high_time = ((end_time1 + start_time1) / 2)  # convert to one time
        print("high time ", high_time)
        random.seed((high_time + low_time) / 2)
        random_number = random.randint(lowest_random_number_needed, highest_random_number_needed)
        count += 1
        print(random_number)
        print("")
        print("")


if __name__ == '__main__':
    challenge()  # go to top, 'def challenge'

If there are any questions, please ask! I have tried to make things clear with out over writing the subject. If it is not clear to you then most likely there are other people with the same problem.
Thanks,
woodturner550

Offline

#6 2024-06-09 23:35:54

KerimF
Member
From: Aleppo-Syria
Registered: 2018-08-10
Posts: 215

Re: Possible 'new knowledge'

Very interesting. So far, so I might be wrong, I see just one application which can benefit from this study.


Every living thing has no choice but to execute its pre-programmed instructions embedded in it (known as instincts).
But only a human may have the freedom and ability to oppose his natural robotic nature.
But, by opposing it, such a human becomes no more of this world.

Offline

#7 2024-06-10 03:18:19

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

Thanks for your reply. This is what this program will affect.

Number Theory; Linear and Multilinear Algebra; Potential Theory; Statistics; Numerical Analysis; Statistical Mechanics, Structure of Matter.

Also this has a direct bearing on cryptography, because it is unbreakable by quantum computers.

Offline

#8 2024-06-11 06:12:59

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

I’m very pleased that this forum understands what has been done. This is just the first step in bringing ‘new knowledge’ to all. This must be peer reviewed! It has been sent to NSA and they don’t reply or even acknowledge receiving the project.

Understanding that it is taught in computer classes that a digital computer cannot make ‘real’ random numbers because it follows a set of commands, it will always only make ‘pseudo’ random numbers. This is incorrect as has been shown. However, those educated in digital computers, including professors, are so blinded by their educated understanding that they won’t even look at possible ‘new knowledge.’

How to bring this forward is the part I don’t have the answer to. I’m hoping this forum entry will be shown to others and maybe people will open up to new learning.

Just as a side note, this has the possibility of being able to help in the stopping of ‘Ransomware’ attacks.

Offline

#9 2024-06-11 10:56:16

KerimF
Member
From: Aleppo-Syria
Registered: 2018-08-10
Posts: 215

Re: Possible 'new knowledge'

From my rather long experience, I ended up realizing that 'new knowledge' could be welcomed (assuming it is understood by some people) if it makes direct money only (or the like).

Anyway, speaking practically, 'new knowledge' in any field has to be useful to the one who needed it in the first place. For example, about forty years ago, I needed to connect my house and workplace (3 km distance) via RF voice inks. For about 5 years, I achieved this connection/communication by using a novel technique so that my RF links (on MW band then on FM band) couldn't be noticed by the radio listeners or authorities. Even in these days, this technique is supposed non-existent, at all universities around the world.

Last edited by KerimF (2024-06-11 10:57:38)


Every living thing has no choice but to execute its pre-programmed instructions embedded in it (known as instincts).
But only a human may have the freedom and ability to oppose his natural robotic nature.
But, by opposing it, such a human becomes no more of this world.

Offline

#10 2024-06-11 12:11:48

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

So, I need to sell it. Explain how and what this does, making the world a better place. Let us look at a few:

1.    Privacy: This makes personal privacy a reality. Private thoughts, journals of all types, political discussions, business secrets and governments. This program’s output cannot be calculated by a quantum computer because it uses future knowledge, therefore, encryption is secure for all.

2.    Games: The program for the random numbers that games use, such as dealing cards are being generated by a pseudo random number generator. Their output is slanted from truly random. We as a people have agreed to accept it as REAL RANDOM in everyday life. Now games can really be fair.

3.    Mathematics: There are few mathematical fields that do not used random numbers. Mathematics is the language that helps make
        sense of our world. Therefore, our view of the world might be clearer.
       
        a.Especially important is the fact that real random numbers are easy and cheap to make with any digital computer capable of
        running Python 3.7+.

This ‘new knowledge’ is free to use for personal use. For any other use must be licensed to ensure there are no back doors in the program, but the program is free to use once in compliance.

Offline

#11 2024-06-11 20:00:23

Bob
Administrator
Registered: 2010-06-20
Posts: 10,507

Re: Possible 'new knowledge'

hi woodturner550

I'd be interested to see some output from your program.

In Python,  time.time() returns a UTC value ; in seconds and decimal fractions of a second. A computer's motherboard must save and increment this value using the computer's internal clock.  As the motherboard keeps running even when the computer is switched off this will get out of step with the standard time and so the operating system must, from time to time, log in to a standard time somewhere to get the current UTC.  This will take time (no pun intended) so the computer's version of UTC will never be exact. But that doesn't matter for your purposes, in fact, it helps because your version of UTC will be different from anyone else's.

Do you know how, for example, MS Excel makes up it's random numbers. Could it be that it already uses something similar to what you are proposing ?  If it does then MS probably already has the copyright on this.  It may also be that they don't publish this coding;  precisely because they don't want it hacked.

If a computer virus were able to modify the system's record of UTC, could this be a weakness that would allow a hacker to predict your numbers ?  If you can devise a way to be certain that the internal value ( of UTC) held by the computer's operating system is genuine; then you've got a way to be certain your method is reliable.

I think there are statistical tests for the reliability of randomness.  You'd need a large set of random outputs.

you wrote:

I understand that this is not a programing forum

We do have a computer section called Coder's corner.  I can move this thread across if you would like.

Bob


Children are not defined by school ...........The Fonz
You cannot teach a man anything;  you can only help him find it within himself..........Galileo Galilei
Sometimes I deliberately make mistakes, just to test you!  …………….Bob smile

Offline

#12 2024-06-12 05:42:21

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

Bob,
Thanks for your input. Email me and I will send the data to you, two hundred sets of sixty thousand binary bits put into Excel 365. The email address is in the Copyright notice. As for moving this, it is up to the forum. However, remember that computer programmers are taught that this is not possible.

One thing that I do not think people think about is that our country monitors other countries including their internet forums. Do you think other countries don't monitor our forums? Do you think that China or Russia already has this now! Yes. They monitor me. This is basic math. It is just as necessary as addition or subtraction for proper understanding of mathematics.

Yes Bob, there are a lot of tests for randomness. However, if one looks carefully, they are just approximations of randomness. I will be glad to send them to you or you can download them from NIST for free.

This is part of the data. This covers the entire 12,000,000 bits.
Maximum           Minimum        Spread   
0.504966667    0.493466667    0.0115           Mean
           
0.5                    0.499957314    4.2686E-05    Standard Deviation
           
298                    -392                    690                    Over and under 30,000
           
           
0.499999973    Standard Deviation of 12,000,000 bits       
0.5    Best Possible Standard Deviation of binary   

Thanks for everyone's interest.   
woodturner550

Offline

#13 2024-06-19 10:03:22

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

What more can I do to bring this forward? I tried to publish, didn't interest enough people and did not 'flow.' The one place I have not tried is the 'dark web.' Part of the problem is I'm giving away for private use.

Any other ideas?

Thanks,
woodturner550

Offline

#14 2024-07-01 08:32:43

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

Bob,
I want to thank you for allowing my post! This is the first forum to allow it. As you know this breaks new ground. That is hard for people educated to believe that what they ‘know’ will always be that way. They also have the major problem of not being able to use deductive logic, therefore they have problems thinking clearly about a problem. It is easier to just go with the flow as taught. Tried to post it to the ‘coder’s corner’ section, they took it down as fast as they could.

One thing that no one has asked about, the wait time. Count how small the time is in the program. Something is not correct here, to many 0’s. This is one of those times where being old school, having to be familiar with ‘assemble language’. I’m indirectly addressing the register in the CPU and resetting it so it will latch onto the next nano second time. Try commenting out the wait time and see what it does. The second time will be exactly as the first time.

Please, I would like any comments on how to get this out to the public? I have tried to get this ‘published’ only to be rejected. I cannot get it past the gate keepers.

Please, share this.

Thanks,
Leonard Dye

Offline

#15 2024-07-01 19:36:28

KerimF
Member
From: Aleppo-Syria
Registered: 2018-08-10
Posts: 215

Re: Possible 'new knowledge'

For instance, in year 1980, I presented a novel simple demodulator (claimed non-existent at the universities, even in these days) to the local authorities so that they can have real secure communications (being non-existent to the engineers in the developed countries).
I got many negative reactions. The worst one was in a meeting at a room in the military headquarters. I was with three persons: a (so-called) professor in electronics, his assistant and a high officer (as a supervisor). This professor insisted on saying one thing while avoiding talking about anything else: "You cannot know something not known in the West". When I knew he is a professor in electronics, I thought he was able to discuss with me, scientifically, many things about the presented project. Instead, he kept repeating that I am a dreamer while refusing to do any further step to verify if my work is real or not. After about 20 minutes, I recalled what happened to Galileo because I had the impression that I will end up be in prison if I don't play the ignorant and please that professor. So, thanks to Galileo, I was able to return home sane and safe smile
By the way, at the National Research Center (at the capital), I was told clearly that a local engineer has no right to work on any novel project.
Also, a high security officer was sincere with me (in private) that having secure RF communications whose sets are not imported from abroad is out of question (in other words, their so-called secure communications have to be monitored by certain foreigners).
As I mentioned earlier, I simply took advantage of my unknown demodulator when I needed to have secure private RF links for many years in the 80's.

Conclusion:
'New knowledge' has to wait till the World's Masters know (usually by their close servants) how to let it serve well their own interests and be under their full direct control too. This took about 2 centuries in case of Galileo sad

Kerim


Every living thing has no choice but to execute its pre-programmed instructions embedded in it (known as instincts).
But only a human may have the freedom and ability to oppose his natural robotic nature.
But, by opposing it, such a human becomes no more of this world.

Offline

#16 2024-07-02 01:17:05

KerimF
Member
From: Aleppo-Syria
Registered: 2018-08-10
Posts: 215

Re: Possible 'new knowledge'

Did you try Wikipedia?


Every living thing has no choice but to execute its pre-programmed instructions embedded in it (known as instincts).
But only a human may have the freedom and ability to oppose his natural robotic nature.
But, by opposing it, such a human becomes no more of this world.

Offline

#17 2024-07-03 06:11:21

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

Thanks for the idea of wikipedia! I am checking out "if" and 'how' to do it.

Any other ideas?

Just got this from wikipedia. "No original research is allowed here. Your forum post is best disseminated on some other more suitable platform actively soliciting such material."

World makes it hard to bring new knowledge to the general public.

Gain access to ResearchGate
Your institution email
tomanytroubles@gmail.com
Sorry, we couldn't verify that you are a researcher from the information you provided.
We therefore require you to enter your institution email address to verify that you are a scientific professional.

Last edited by woodturner550 (2024-07-03 06:31:50)

Offline

#18 2024-07-04 19:25:47

KerimF
Member
From: Aleppo-Syria
Registered: 2018-08-10
Posts: 215

Re: Possible 'new knowledge'

Well, this is what I discovered too but I thought it was just me.
In brief, Wikipedia is for 'old knowledge' only. And its rules are made so that it can, when necessary, be biased legitimately about 'any topic', very clever.


Every living thing has no choice but to execute its pre-programmed instructions embedded in it (known as instincts).
But only a human may have the freedom and ability to oppose his natural robotic nature.
But, by opposing it, such a human becomes no more of this world.

Offline

#19 2024-07-06 09:29:13

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

Maybe the Romans did the world a big disservice by conquering Greece. There new knowledge was cherished and debated, now not so much.

More programs for a better understanding:
https://codefile.io/f/p95ZebEuC0
https://codefile.io/f/QUhgJeuuwd
https://codefile.io/f/95iu8pP712
https://codefile.io/f/EPpON7BGQJ
https://codefile.io/f/9bizl8rtgt

Last edited by woodturner550 (2024-07-06 10:48:37)

Offline

#20 2024-07-09 09:27:45

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

Now all the files can be found at https://drive.google.com/drive/folders/1wpd5-2-4SZkZka284sbpyYjHIdLNQ60T

Thanks Michael

Offline

#21 2024-07-15 06:29:28

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

So far what has been done is to prove that digital computers CAN create “real random numbers” that are secure from cracking by brut force or calculation. The Challenge showed how to encrypt a data set (cards) securely. The Challenge used dynamic variables to stop linguists from counting characters to try to crack the code.

As already stated, “one time pad” is the only secure encryption scheme. We now can make secure “one-time pads”. Why make a small “one time pad” instead of a larger one that can be used more than once? For example: a 26 by 385 grid gives us 10, 010 containers to put letters in. I use 81 characters for my “one time pad. "A", "B", 'C', 'D', "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", ",", ".", "?", ":", "!", "@", "$", %", "&", "(", ")", "/", "*", "-", "+", "=", " ", "/n", ";".

That gives us 123.5 containers for each character average. How long can this be used before it needs to be changed with a new “one time pad”? I call this new “one time pad”, the “many times pad.”
By doing it with a large “many times pad”, it solves one of the big problems with ”one time pads”. Getting the next “many times pad” is easy, just send it encrypted with the current “many times pad.” This means we only have to move one “many times pad” securely to the receiver.

Many programmers are “fighting the war” of security, with before computers mentality. Computers can handle data very efficiently compared with humans by hand. So, let’s use that to our advantage with the “many times pad.”

Offline

#22 2024-07-17 05:35:58

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

Time to talk concepts to go further. Problem: How to keep the key for decrypting safe.

Understanding the problem: If a person has a key, even if it is in memory only, then the “rubber hose to the bottom of your feet” is the answer. So even with secure random numbers and a “one time pad” it is not secure yet.

This is the best I could come up with: To keep it simple, the model is just between two people. Each part is about 35k. Encrypt part and the decrypt part, has 100 sets of data keys. Each person has their half only of 3.5mb in a USB drive. This could be an example of a decrypt key, D0.55484938621521.txt. It takes about a minute to make one key data with an average computer. Then the ‘decrypt USB drive’ is given to the other party as securely as possible.

When encrypting a file, the “encrypt” keys on the USB drive must be made available to the program, all 100 of them at the beginning. The program will then randomly choose one for this message. The key that is used, is deleted both from sending computer and sender’s USB drive at end of use. The last four digits of the key will be at the beginning of the file name, example: “1521A Sexy birthday wish.txt.” to your friend.

The decrypt computer with the USB drive connected, looks for the key on the USB drive. If it is there, it uses the key and deletes it from the USB drive and computer at end of use.

MESSAGE AND KEYS SECURE

If the USB drive is lost, it is not a problem, make new keys for new USB drives. Weak point, how to know ‘if and when’ the USB drive is compromised (copied etc.). To limit this weakness, wear the USB drive as a necklace. For a journal both encrypt and decrypt are on the USB drive. For journals a second copy of the keys should be keep in a safe and secure place, safe etc, in case of lost keys. Encrypted secure USB drives are available that erase completely if tampered with or ten chances at the password before deleting data. The question then is, “Is there a back door?”

But there is still a weak point. Remember anything written in secret, may be able to be read. All that can be done is limit the risk. We KNOW that without the key the data is totally secure. No matter what scheme is used, they all have the weakness of compromised keys.

Now available, my Google drive. Now all files can be shared.  https://drive.google.com/drive/folders/10sdIAKrlNCRP63OS87THpNN0RYn5oJ3R?usp=sharing

Look in the folder “one time pad” or “many times pad”. ONE TIME PAD.py shows the encrypt dictionaries and the decrypt dictionaries in the output, these go on the USB drives. “Many time pad” can be of any shape of rectangle, it does not matter to the computer. A ‘many times pad’ could be any size that would not be needed to change in the right situation, such as a corporation encrypting all data on the fly. The computers are secured under lock and key. But you still have the weakness of people being compromised. Maybe, encrypt within the computer itself. I am NOT a cryptographer, just using deductive logic.

Offline

#23 2024-07-17 06:05:06

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

I must THANK the forum for allowing this “new knowledge” to be on the forum. This is the only forum that would allow it on their forum. I have been able to get this possible ‘new knowledge’ out to the world. There is a need for more research into random numbers. If you read “ MONTHLY-D-23-00632.pdf”, you will see that there were two pieces of new knowledge. Because this has been so poorly received and not universally understood, the second part cannot be brought forward because it won’t be understood.

America is not an open society when it comes to who can bring new knowledge forward. If you are not part of the money-making scheme, colleges, and major corporations. New information cannot get past the publishing gate keepers unless it’s fits their need (control knowledge and money generation.)

You can lead a horse to water for a drink, but you cannot make him drink. The same is true about “new knowledge.” Think of how many books are incorrect about digital computers making “real random numbers” now. How long before this is corrected in schools and colleges?

I can now pass at the end of my time. I was able to get the information out to the world. There is something about coming to the end of your life and wanting the world to be better for your living.

Any comments and thoughts are appreciated,
woodturner550

Offline

#24 2024-07-17 22:38:39

KerimF
Member
From: Aleppo-Syria
Registered: 2018-08-10
Posts: 215

Re: Possible 'new knowledge'

woodturner550 wrote:

Think of how many books are incorrect about digital computers making “real random numbers” now. How long before this is corrected in schools and colleges?
woodturner550

I am afraid that many books are also incorrect about many other things (while many other books are correct).
We like it or not, this was always the case, for one reason or another. And it will be so till the end of time.

Therefore, the best thing that one can do is to present, as possible, what he has as 'new knowledge' without expecting any positive reaction... with the hope that his 'new knowledge' doesn't oppose, in any way, the interests of some powerful rich groups which are based on 'old knowledge'.


Every living thing has no choice but to execute its pre-programmed instructions embedded in it (known as instincts).
But only a human may have the freedom and ability to oppose his natural robotic nature.
But, by opposing it, such a human becomes no more of this world.

Offline

#25 2024-07-18 16:25:57

woodturner550
Member
Registered: 2024-06-08
Posts: 23

Re: Possible 'new knowledge'

KerimF wrote:

Therefore, the best thing that one can do is to present, as possible, what he has as 'new knowledge' without expecting any positive reaction... with the hope that his 'new knowledge' doesn't oppose, in any way, the interests of some powerful rich groups which are based on 'old knowledge'.

Thank you for the wise words of concern. I am a sixty percent disabled veteran, seventy-three years old, in poor health. I believe it would be like beating a dead horse if they did anything. First, it is basic mathematics because it takes random numbers to be able to see mathematics clearly. Second, I believe I have given enough to the country. NSA would not even acknowledge receiving my information, so I did my duty to the country. Third, because this is basic math, to withhold this from public knowledge would be a much larger harm, in time. Short term, it may cause some problems.

Offline

Board footer

Powered by FluxBB