Evolution Selection

From BloomWiki
Revision as of 01:50, 25 April 2026 by Wordpad (talk | contribs) (BloomWiki: Evolution Selection)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

How to read this page: This article maps the topic from beginner to expert across six levels � Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Scan the headings to see the full scope, then read from wherever your knowledge starts to feel uncertain. Learn more about how BloomWiki works ?

Evolution and Natural Selection are the unifying principles of all biology. Evolution is the change in the heritable characteristics of biological populations over successive generations, while Natural Selection is the primary mechanism that drives this change. Proposed by Charles Darwin and Alfred Russel Wallace in the 19th century, this theory explains how the immense diversity of life on Earth emerged from common ancestors. By favoring traits that enhance survival and reproduction, natural selection "sculpts" organisms to fit their environments, leading to the complex adaptations we see in the natural world.

Remembering[edit]

  • Evolution — The change in heritable traits of a population over generations.
  • Natural Selection — The process where individuals with favorable traits are more likely to survive and reproduce.
  • Adaptation — A trait that increases an organism's fitness in its environment.
  • Fitness — A measure of an organism's ability to survive and produce viable offspring.
  • Common Descent — The idea that all living things share a single ancestral origin.
  • Mutation — A random change in an organism's DNA; the ultimate source of new genetic variation.
  • Genetic Drift — Random changes in allele frequencies in a population, especially in small groups.
  • Gene Flow — The transfer of genetic material between populations (migration).
  • Speciation — The formation of new and distinct species in the course of evolution.
  • Phylogeny — The evolutionary history and relationship of a group of organisms.
  • Homology — Similarities in traits resulting from common ancestry (e.g., the arm of a human and the wing of a bat).
  • Convergent Evolution — When unrelated species evolve similar traits due to similar environments (e.g., wings in birds and insects).
  • Vestigial Structure — A structure that has lost its original function through evolution (e.g., the human appendix or whale pelvic bones).
  • Artificial Selection — Selective breeding by humans for specific traits (e.g., dog breeds or modern corn).

Understanding[edit]

Evolution is a simple mathematical inevitability if three conditions are met: Variation, Heritability, and Differential Success.

The Darwinian Mechanism: 1. Overproduction: More offspring are produced than can survive. 2. Variation: Individuals in a population differ in their traits. 3. Selection: Those with "advantageous" traits (better camouflage, faster speed, better metabolism) survive the "Struggle for Existence." 4. Transmission: Survivors pass these traits to the next generation. Over millions of years, these small changes accumulate into major transformations.

The Modern Synthesis: Darwin knew traits were inherited, but he didn't know how. The modern synthesis merged Darwin's theory with Genetics (Mendel's work). We now understand that evolution is a change in "allele frequencies" within a gene pool over time.

Sexual Selection: Darwin realized that some traits (like the peacock's tail) actually hinder survival. He proposed Sexual Selection to explain traits that evolve because they increase an individual's success in attracting mates, even if they come at a survival cost.

Applying[edit]

Simulating Allele Frequency Change (Selection): <syntaxhighlight lang="python"> import random

def simulate_generation(pop_size, p_freq, selection_coefficient):

   """
   p_freq: Frequency of allele A (favorable)
   selection_coefficient: Advantage of A over a (0 to 1)
   """
   next_gen_p = 0
   # Simplified haploid model
   for _ in range(pop_size):
       # Pick an allele based on current frequency
       allele = 'A' if random.random() < p_freq else 'a'
       
       # Selection step: if 'A', always survive. If 'a', might die.
       if allele == 'a' and random.random() < selection_coefficient:
           # This 'a' individual dies; replace it with 'A' from a survivor
           allele = 'A'
           
       if allele == 'A': next_gen_p += 1
           
   return next_gen_p / pop_size
  1. Start with 10% frequency of favorable allele

freq = 0.1 for i in range(10):

   freq = simulate_generation(1000, freq, 0.05)
   print(f"Gen {i+1}: Frequency of favorable allele = {freq:.3f}")
  1. Watch how a 5% advantage takes over the population.

</syntaxhighlight>

Evidence for Evolution
The Fossil Record → Transition fossils like Archaeopteryx (dinosaur to bird) or Tiktaalik (fish to tetrapod).
Biogeography → Species on islands resembling those on the nearest mainland (e.g., Darwin's Finches).
Molecular Biology → Comparing DNA sequences; humans and chimps share ~98% of their coding DNA.
Direct Observation → Antibiotic resistance in bacteria or the shift in peppered moth coloration during the Industrial Revolution.

Analyzing[edit]

Microevolution vs. Macroevolution
Feature Microevolution Macroevolution
Scale Within a single population Above the species level
Timeframe Short (days to centuries) Long (millions of years)
Evidence Observed changes (e.g., viruses) Fossil record, phylogeny
Result Change in color, size, resistance New families, classes, phyla

The Spandrels of San Marco: Stephen Jay Gould argued that not every trait is an adaptation. Some are "spandrels"—byproducts of other architectural/biological changes. For example, the human chin might not have a "purpose"; it might just be the result of the face shrinking and the jawbone remaining. Analyzing what is an "adaptation" vs. a "byproduct" is a central challenge in evolutionary biology.

Evaluating[edit]

Evaluating evolutionary claims:

  1. Predictive Power: Does the theory predict where we should find certain fossils (e.g., the prediction and discovery of Tiktaalik)?
  2. Falsifiability: As J.B.S. Haldane famously said, "fossil rabbits in the Precambrian" would disprove evolution. No such anomalies have been found.
  3. Consistency: Does the molecular data match the morphological data? (Usually, they align perfectly).
  4. Handling Complexity: How do complex organs (like the eye) evolve via small steps? (The "mousetrap" argument was debunked by showing that "partial" eyes are still highly useful).

Creating[edit]

Future Frontiers:

  1. Directed Evolution: Using evolutionary principles in the lab to "breed" new enzymes or proteins for medicine (2018 Nobel Prize).
  2. De-extinction: Attempting to use CRISPR and cloning to "bring back" the Woolly Mammoth or Passenger Pigeon.
  3. Evolutionary Medicine: Using our knowledge of the "Paleolithic body" to treat modern diseases like diabetes or autoimmune disorders.
  4. Astrobiology: Predicting how life might evolve on other planets based on different chemical and physical constraints.