5

I talked with a graduate computer science who said one challenge of making artificial human-like is making random decisions, and that computers can't be random, that they always need a "seed." But, if a computer's outcomes are determined by the chaotic movements of electrons, it doesn't seem like it should be difficult to program inherent uncertainty into a computer. So, what exactly is stopping people from harnessing this basic component of reality to allow artificial intelligence to make randomized decisions? I mean, all you'd need is different neural pathways that rely on the superposition of electrons, and that's it.

RayOfHope
  • 151
  • 1
  • Simply because we are at a level of Artificial Narrow Intelligence or ANI – quintumnia Jul 02 '17 at 10:15
  • 1
    True Randomness doesn't exist in classical physics (or world). It only exists in Quantum World. Systems doing random things is not very useful in itself. Though today we have many that can stimulate a certain degree of randomness that is useful in various fields. Imagine a system that performs its actions randomly and decided randomly to kill you or any other human or something even worse. Careful what you wish for. – Ugnes Jul 03 '17 at 12:21

1 Answers1

2

Computers (the processor in combination with the memory) are designed to be deterministic. Otherwise no software would ever work, because the computer would be executing it randomly.

The computer's outcomes are not determined by the chaotic movements of electrons, but by the much strong deterministic currents and voltages between the transistors. A digital machine is, simply speaking, not affected by noise. The noise is always present, but 0.13 volts or whatever gets rounded to 0 V (logic 0) and 3.02 volts or whatever gets rounded to 3.3 V (logic 1).

It is however possible to take advantage of the chaotic movement of electrons as well. This is done in special hardware called "hardware random number generators", (some use different forms of true randomness such as nuclear decays).

Oskar Skog
  • 128
  • 5