Population Simulation Using MatLab Jie Ma EPS 109 Professor. Militzer.

Slides:



Advertisements
Similar presentations
Peppered Moth Lab.
Advertisements

Create Effective Digital Presentations This is a powerpoint I created for a lesson on species adaptation. It was used with guided notes, class discussion,
Natural Selection Experiment Kit Fisher Catalog # S19454 Lab Aids No: 91 $65.00.
© red ©
Peppered Moth.avi. Peppered moth Moth comes in two “versions”:
1 6.3 Separation of Variables and the Logistic Equation Objective: Solve differential equations that can be solved by separation of variables.
Team Awesome Humble Nohemi, Tommy, Madison, Eric, Anna, and Marissa.
Charles Darwin & Natural Selection
Evolution, Natural Selection, and Genetic Variation What is Evolution? How does Natural Selection work? Who helped to understand the process of Natural.
Color. -Visual light -An integral part of the sculpture -Creates desired effect -Distinguish items -Strengthen interest.
Scientists who studied Natural Selection
Chapter 23 Using the Hardy-Weinberg Equation. p 2 + 2pq + q 2 = 1 p + q = 1 Chapter 23 Using the Hardy-Weinberg Equation A scientist goes out into the.
19.2 Public Exam Questions 6 men and the development of Evolution Theory You can expect 1-3 multiple choice questions from section 19.2.
Evolution The theory that species can change over time (more than one lifetime).
Natural Selection. The members of a species that live in a specific area are known as a _____________. population.
Organic Evolution A change in allele frequencies in a population or species.
Thursday April 17 Essential Question: What is a selective pressure? What are some examples? Today Peppered Moth Case Study. For Full points Answer Questions.
Wednesday, May 27, 2015 HOMEWORK: Finish Peppered Moths packet (Doc#8)
Tuesday, June 2, 2015 HOMEWORK: Evolution Test June 10,11,15,16 OBJECTIVE: I will be able to create a model that shows the change in a species over time/natural.
10.3 Theory of Natural Selection KEY CONCEPT Darwin proposed natural selection as a mechanism for evolution.
Chapter 3.4 (pages 84-87). Key concepts: Identify three kinds of adaptations that help organisms survive. Describe the four parts of natural selection.
Yellow background In this activity you are to write the information on all screens that have a yellow background.
Starter: What does the following term mean to you? “Natural selection by survival of the fittest”
Chameleons By Connor. This is how I would describe the Chameleons. They eat bugs, blends into anything and they have a curly tail. The chameleons hibernate.
The Story….. Evolution in Action. 19 th century industrial Britain *Increase in pollution, smog and soot. *Tends to stick to things.
1 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt Darwin.
Goal 3.05d: Applications of Evolution through Natural Selection
The Story of the Peppered Moth Laura Candler: Hands-On Science.
TYPES OF NATURAL SELECTION. DEFINITIONS.. Evolution is the change in a population’s genetic material (alleles) over generations.
LAB: Natural Selection Group Members: Problem Statement: What is the effect of environment on the survival of a population?
The Process of Microevolution Selection: Directional, Stabilizing, and Disruptive Selection Microevolution vs. Macroevolution Microevolution: change in.
How did Peppered Moth changed over time during industrial revolution?
Monkey, Monkey In the Tree. Monkey, monkey in the tree Throw the yellow coconut down to me!
GRAPHING RELATIONSHIPS For each graph, determine the graphing relationship and record it on a white board.
Activity 95: Hiding in the Background
Missing Moths and Camouflage
Discourse community A group of people communication.
The peppered moth is a common insect in Britain with two forms: the dark form and the light form. The light form has small black specks just like it has.
The story of the peppered moths. Once upon a time, there was a specie of moth called the peppered moth.
Artificial Selection -vs- Natural Selections
NATURAL SELECTION IGCSE Biology Revision Notes. Darwin’s Original Idea 1. Individuals in a species show a wide range of variation 2. Variation is caused.
The Theory of Natural Selection Artificial Selection Humans created diversity choosing specific traits to breed – Dogs, Crops, Livestock Humans selected.
Visual Elements. Can set the tone Complement an image Makes presentations lively.
Biology 2 Packet II Lab Predator-Prey Lab. Copy this information on the bottom of Pg. 88 in your Packet: The different color of yarn is the prey You are.
Stations.
By: Eric, Delaney, Micah & Shannon
EVOLUTION IN ACTION.
Natural Selection and Adaptations
EVOLUTION IN ACTION.
Do NOW: How are these animals related
Bellwork Walk in Silently
Natural selection Today we are learning that the better plants and animals are adapted to their environment the more likely they are to survive.
Write this at the top of page _____ in your INB
What is evolution? EVOLUTION is the process in which a species gradually changes over time.
Natural selection Today we are learning that the better plants and animals are adapted to their environment the more likely they are to survive.
Natural Selection A central part of evolution is natural selection. Individual survival increases the chance of reproductive success. Well-adapted organisms.
EVOLUTION IN ACTION.
15.1 Evidence for Evolution
Evolution in action.
Short Term Evolution in the Peppered Moth
The Story of Natural Selection and the Peppered Moth
I see colors..
What Color is it?.
Lamarck vs. Darwin.
More on Natural Selection Bio Standard 8a, 7a, b, and c
Warm-Up Take out “Peppered Moth” Lab
Discussion of Natural Selection Lab
Variation and Adaptation
Kinds of adaptations.
The Peppered Moth.
Presentation transcript:

Population Simulation Using MatLab Jie Ma EPS 109 Professor. Militzer

Fox vs. Rabbit 1. Predator-prey Function: (Lab3) Predator: Fox Prey: Rabbit 2. Solve Differential Equation (Lab 13) Runge Kutta Method Stable when dx/dt = 0; dr/ dt = 0;

Population changes How to visualize ? Red: Fox Blue: rabbit Reference the Random walk Lab5: 1.Generate a white matrix to represent the total population 2.Using Red grad to represent fox population and blue grad to represent the rabbit population 3.Use random number to generate a random location of Fox or Rabbit.

Red for Fox and Blue for rabbit When the rabbit population increase, the fox population increase, and rabbit population decrease. for j = 1:numFox %calculte the index of the location while 1 randloc = round(rand()*maxPoP); rand_row = round(mod(randloc,sn))+1; rand_col = round(randloc/sn)+1; %if the poistion has already be not been taken, reject to move if(A(rand_row,rand_col,2) == 255) A(rand_row,rand_col,1) = 255; A(rand_row,rand_col,2) = 0; A(rand_row,rand_col,3) = 0; break end

Peppered Moth evolution X for bird: dx/dt = (-d +e * y+ et *z) * x; Y for White Moth: dy/dt = (kr*( m –y )- c * x) *y; Z for Blue moth: dz/dt = (kt*(mt- z)-ct* x )* z; C > Ct

Background color : gray Yellow: white peppered moth Black: black peppered moth Their dark color blend them in the polluted trees and makes it difficult to find by their predators. As a result they are more likely to survive and reproduce. As a result, the black moth population increase.