sneakypenguin said:
Mutations usually don't get passed on to offspring IIRC, so they only last one generation. Mutations are just a scrambling of DNA and are generally non beneficial.
The amount in which everything has to work just defies my reasoning. Random chance for a genetic mutation+ random chance that this mutation can be passed on+ random chance that this mutation is beneficial somehow..... I mean randomly typing "evolution" the odds would be 26 raised to the 9ths power wouldn't it? thats 1 in 5,429,503,678,976 if i did it right on the cell typing 400 characters per minute that would take 226,229,319 minutes or 150,000(or so days) or 430 years. Just to type out a 9 letter word.
So to me the probability of random chance leading from single celled organisms to us is even greater. I mean how in the hell do you go from a single celled organism to something like humans? Yes it's possible but nowhere near probable.
It's not science it's speculation, and to accept it as a fact is insane to me.
This is where a background in something like computer science, discrete math, or information theory would really help you.
Your random search isn't an appropriate model of an evolutionary process.
You're searching the possibility space randomly, taking big steps and throwing away the history of past results. Evolutionary processes mostly involve small, localized changes.
Your generator: mash nine characters.
A more appropriate generator: start with a random combination of nine characters; at each timestep, pick a certain position in your word and "increment" or "decrement" the character (assume you just flip a coin to decide which).
That's a very simple approximation of a random but localized "mutation".
Your only check is "Am I done?" Real selective pressure doesn't operate that way. It's more like (roughly speaking) "Is this better?"
Your fitness function: is my word "evolution" yes? if so, stop.
A more appropriate fitness function: for each letter, calculate how far it is from the desired letter, then sum these values together to get the word's total "suckitude"; try to minimize "suckitude" -- if the new word you made is better, keep it, otherwise, throw it out and keep the old word.
Selective pressure is always acting on a population (though, in reality, it can change over time), so this is a condition that you check at
each iteration.
So, a
very crude estimate of how long something like this takes to turn "argtuewii" into "evolution" is roughly 26 (options to search for each letter -- worst case) * 9 (number of letters) * 2 (since every time you pick a letter, there's about a 50% chance you'll "improve" it -- slightly-better-than-average-case) = 468. Roughly five hundred steps, on average, to go from any random nine-letter gibberish word to "evolution" using a simple change-one-letter-at-a-time search process. Not that bad, huh? And this is just a really naive search algorithm.
Now, I'm ignoring something else here -- natural selection isn't about producing (for example) tigers, it's about producing an animal that can fill a tiger's ecological niche. That animal needs to be a large pouncy predator with certain well-developed senses and natural camouflage. But it doesn't need to be orange, it doesn't necessarily need whiskers, it doesn't necessarily need to have a tail, it doesn't need to have icky smelly urine, it doesn't need adorable little white ear spots, and it doesn't necessarily need to roar.
-- Alex