Could one million monkeys type out Hamlet?

What they found when they did the experiment with real monkeys is that the monkeys would get fixated on typing one key over and over (500 T's in a row), or they would break the keyboard.

So monkeys aren't even a good proxy for random probability, which is supposed to be at the heart of the theorem.
It's a theoretical exercise. We could do the same with a million retards with computer keyboards and it still take longer than their lifespans to randomly type Hamlet.

Example:
I could do it in an hour with enough monkeys.
 
I'm the only one who actually brought some MATH to the thread. LOL.

Outclassed you again!
LOLOLOLOLOL
:babydance:
fyfy PhD- level mathematicians have already done the math.

There was no reason for you to post incorrect math based on your faulty assumptions about probability, just to try to impress me.
 
PhD- level mathematicians have already done the math.

There was no reason for you to post incorrect math based on your faulty assumptions about probability, just to try to impress me.
Perry the Retard, besides having a severe case of OCD*, is also obsessed with being seen as the smartest person on the thread. Sad.

There are two ways to get ahead in the world: be better, or smarter in this case, than eveyrone else or to beat down all the competition until you're the only one left standing. Perry Pud-Puller always takes the second option. Always. He can't discuss like an adult due to his condition so he always attacks and belittles.


*Obsessive Cypress Disorder
As per usual all you do is quote other people and hope it makes you look smart.
 
Last edited:
It's a theoretical exercise. We could do the same with a million retards with computer keyboards and it still take longer than their lifespans to randomly type Hamlet.

Example:
lol, good example!

I think the assumption behind using monkeys is they supposedly could represent true random probability.

Humans, even Forrest Gump, unlike chimps know the alphabet and spelling, so if they sat at a keyboard they would be tempted to type words or phrases, recognizable patterns
 
Perry the Retard, besides having a severe case of OCD*, is also obsessed with being seen as the smartest person on the thread. Sad.

There are two ways to get ahead in the world: be better, or smarter in this case, than eveyrone else or to beat down all the competition until you're the only one left standing. Perry Pud-Puller always takes the second option. Always. He can't discuss like an adult due to his condition so you always attacks and belittles.


*Obsessive Cypress Disorder
Obviously Perry is keen to derail the thread with his petty grievances and low self esteem!
 
lol, good example!

I think the assumption behind using monkeys is they supposedly could represent true random probability.

Humans, even Forrest Gump, unlike chimps know the alphabet and spelling, so if they sat at a keyboard they would be tempted to type words or phrases, recognizable patterns
Agreed on monkeys. They also have the dexterity to use a typewriter even if they aren't very good at it. LOL

Still, even a million normal human beings randomly typing would take billions of years to type a complete Hamlet. Most of us can't even quote much from the play. Just short bits like “Something is rotten in the state of Denmark“, “Brevity is the soul of wit“ and “Alas, poor Yorick! I knew him, Horatio: A fellow of infinite jest“.
 
Last edited:
With one million monkeys typing at a rate of one key per second, we would have to wait 10^60 years for one them to just type these two sentences:


"To be or not to be. That is the question "


source credit: Edward B. Burger, professor of mathematics, Williams College
So ..never
 
Agreed on monkeys. They also have the dexterity to use a typewriter even if they aren't very good at it. LOL

Still, even a million normal human beings randomly typing would take billions of years to type a complete Hamlet. Most of us can't even quote much from the play. Just short bits like “Something is rotten in the state of Denmark“, “Brevity is the soul of wit“ and “Alas, poor Yorick! I knew him, Horatio: A fellow of infinite jest“.

Except this is pure hypothesis - hypothetical monkeys and hypothetical keyboards. Real world limitations are beside the point.
 
Exactly. A fact retards like Perry Penis-Lover can't accept.

Example:
The fact that researchers in England did this experiment with real monkeys means people are interested to know if this hypothesis would actually work in reality as a truth claim. Not as an untestable hypothesis that assumes a hypothetical army of infinity amounts of monkeys.
 
fyfy PhD- level mathematicians have already done the math.

There was no reason for you to post incorrect math based on your faulty assumptions about probability, just to try to impress me.

LOL. Such desperation. You couldn't do the math but now you sit and critique it like you had a say. LOL. No one is impressed by you Cy. Sorry to break it to you. Maybe your folks will care.
 
The fact that researchers in England did this experiment with real monkeys means people are interested to know if this hypothesis would actually work in reality as a truth claim. Not as an untestable hypothesis that assumes a hypothetical army of infinity amounts of monkeys.
Question is were the researchers in England researching or laughing?
 
Question is were the researchers in England researching or laughing?

Don't ask Cy. He's a complete drudge. No humor because he's absolutely struggling to understand this stuff. That's his "MO". He posts things without comment to impress you with how wide-ranging his interests are.

But if you try to actually talk technically about it, you'll get whining in the return.
 
The fact that researchers in England did this experiment with real monkeys means people are interested to know if this hypothesis would actually work in reality as a truth claim. Not as an untestable hypothesis that assumes a hypothetical army of infinity amounts of monkeys.
I think it was more of a fun way to test the ability of monkeys to work machines.

Let's not forget Ham was trained to manipulate some controls in his space flight. I bet even Perry could learn to do that! :)

View: https://www.youtube.com/watch?v=hY4EnPdJRJ4
Don't ask Cy. He's a complete drudge.
Sad that you are so angry and jealous, Perry. Why don't you run off and pull your pud? You might feel better. :thup:
 

Still the only person on here to actually use some math. Something you seem strangely incapable of.

import math

def calculate_probability(monkeys, time_seconds, target_phrase):
# Define the character set (assuming lowercase and space for simplicity)
charset = 'abcdefghijklmnopqrstuvwxyz '
charset_size = len(charset)

# Length of the target phrase
phrase_length = len(target_phrase.lower())

# Total number of characters typed by all monkeys
total_characters = monkeys * time_seconds

# Probability of typing the target phrase correctly in one attempt
phrase_probability = (1 / charset_size) ** phrase_length

# Number of possible attempts to type the phrase
possible_attempts = total_characters - phrase_length + 1

# Probability of at least one correct attempt
probability = 1 - (1 - phrase_probability) ** possible_attempts

return probability

# Inputs
monkeys = 100
time_seconds = 60 * 60 # 1 hour
target_phrase = "To be or not to be"

# Calculate and print the probability
prob = calculate_probability(monkeys, time_seconds, target_phrase)
print(f"Probability of typing '{target_phrase}' in {time_seconds} seconds with {monkeys} monkeys: {prob:.10f}")
 
Back
Top