|
|
|
|
|
by minkeymaniac
587 days ago
|
|
How long would it take a computer or set of computers to pick random characters and generate the complete work how long for 1 paragraph
how long for 1 page
how long for 1 chapter etc etc Does it get harder/slower by a factor? would be an interesting exercise |
|
With multiple searchers it’s trickier, but we use the probability complement (probability of all possible events must add to 100%) to figure out the chances that our searchers all miss, and subtract that chance by 1. This gives the chance of at least one agent getting it right. Two searchers looks like 1-(27/28)^2 for the first char, and you can follow the same logic for any length string.
Your answer will heavily depend on your assumptions - how fast the computers guess, what they can guess, etc. But searching in parallel would speed things up dramatically. If you had like 100 computers searching simultaneously, 3 or 4 would likely get the first char right every time, giving you a big speed up on the problem.