Editing
Mechanisms of Evolution
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'Genetic Drift' (The Random Walk):''' <syntaxhighlight lang="python"> import random def simulate_drift(population_size, initial_freq, generations): """ Shows how 'Random Chance' can wipe out a gene in small groups. """ freq = initial_freq for gen in range(generations): # Flipping coins to see who survives/mates # Binomial sampling offspring = [random.random() < freq for _ in range(population_size)] freq = sum(offspring) / population_size print(f"Gen {gen+1:02}: Frequency of 'Blue Eyes' = {freq:.2f}") if freq == 0 or freq == 1: break return freq # A tiny island of 20 lizards print(f"Final State: {simulate_drift(20, 0.5, 50)}") # Note how easily a gene can vanish (0.0) or 'fix' (1.0) # purely by luck in a small group. </syntaxhighlight> ; Evolutionary Landmarks : '''The Peppered Moth''' β The classic example of "Natural Selection" in action during the Industrial Revolution. : '''Antibiotic Resistance''' β Evolution happening in "Fast Forward"; bacteria evolving to survive our drugs in just a few years. : '''The Cheetah Bottleneck''' β 10,000 years ago, cheetahs nearly went extinct. The few survivors had almost identical genes, which is why today's cheetahs have health problems. : '''Darwin's Finches''' β Showing how one original bird species branched into 13 different ones based on the food available on different islands. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information