Question

In: Biology

In this second case you will modify the simulation to make it more realistic. In the...

In this second case you will modify the simulation to make it more realistic. In the natural environment, not all genotypes have the same rate of survival; that is, the environment might favor some genotypes while selecting against others. An example is the human condition sickle-cell anemia. It is a condition caused by a mutation on one allele, in which a homozygous recessive does not survive to reproduce. For this simulation you will assume that the homozygous recessive (ff) individuals never survive while heterozygous (Ff) and homozygous dominant (FF) individuals always survive.

Create a second data chart similar to Chart 2. Start again with your initial genotype and produce your "offspring" as in Case 1. This time, however, there is one important difference. Every time your offspring is ff it does not reproduce. Because we want to maintain a constant population size, the same two parents must try again until they produce two surviving offspring. Repeat the procedure 49 more times. In other words, every time you pull an ff combination, do not record it. Put it back and pull again.

Before you begin, make a prediction about what you expect to observe regarding this population's allele frequency over several generations. Record your hypothesis in your lab report.

Record your results as you did in Case Study 1. Replenish your bag according to the previous draw for the remainder of the four draws.

Now that you have collected data on your own, be sure to share with your partner(s) to compile within the lab report.

Chart 2 (example data chart)

Allele Frequencies

Allele F

Allele f

Generation

Number

Percentage

Frequency

Number

Percentage

Frequency

Start

75

75

0.75

25

25

0.25

1

2

3

4

5

6 (if needed)

Solutions

Expert Solution

This case is same as in case 1 the 75 FF and 25 ff of beans. The only difference is that the human condition sickle-cell anemia which is caused by a mutation on one allele, in which a homozygous recessive does not survive to reproduce. We will assume that the homozygous recessive (ff) individuals never survive while heterozygous (Ff) and homozygous dominant (FF) individuals always survive. If every time offspring ff is skipped then it affects the allele f frequency whereas does not affects allele F frequency.

number of offspring with genotype FF = 28× 2 = 56 F alleles
number of offspring with genotype Ff = 19 × 1 = 19 F alleles
Total F alleles = 75
p = Total number of F alleles / Total number of alleles in population (Total number used)

75/100=0.75

We can calculate allele frequency of recessive allele

number of offspring with genotype ff = 0× 2 = 0 f alleles
number of offspring with genotype Ff = 19 × 1 = 19 f alleles
Total f alleles = 19
q = Total number of F alleles / Total number of alleles in population (Total number used)

q= 25/100=0.19

For allele F

Generation number percentage frequency
start 75 75 0.75
1

28(FF)

19(Ff)

28x2=56

19x1=19

75/100=0.75
2

32(FF)

15(Ff)

32x2=64

15x1=15

75/100/=0.75
3

30(FF)

15(Ff)

30x2=60

15x1=15

75/100=0.75
4

34(FF)

07(Ff)

34x2=68

7x1=7

75/100=0.75
5

27(FF)

21(Ff)

27x2=54

21x1=21

75/100=0.75

For allele f

generaton number percentage frequency
starts 25 25 0.25
1

3 (ff)

19(Ff)

0x2=0

19x1=19

19/100=0.19
2

7(ff)

11(Ff)

0x2=0

11x1=11

11/100=0.11
3

5(ff)

15(Ff)

0x2=0

15x1=15

15/100=0.15
4

9(ff)

7(Ff)

0x2=0

7x1=7

7/100=0.07
5

2(ff)

21(Ff)

0x2=0

21x1=21

21/100=0.21

As the data shows that the frequency of allele f is decreased if the recessive genotype ff is not reproduce.


Related Solutions

You are required to modify the attached simulation program. This program currently uses an array to...
You are required to modify the attached simulation program. This program currently uses an array to implement the queue. You will modify the program so that it uses the STL queue instead. /* This is for CSC 611 class at NSU Computer Science Department This program is a modified C++ version of the C program From the Second Edition Simulation Modeling & Analysis Averill M. Law W. David Kelton */ #include using namespace std; #include #include double time = 0;...
You are required to modify the attached simulation program. This program currently uses an array to...
You are required to modify the attached simulation program. This program currently uses an array to implement the queue. You will modify the program so that it uses the STL queue instead. #include <iostream> using namespace std; #include <math.h> #include<fstream> double time = 0; int seed = 1; /* External definitions for single-server queeing system. */ const int Q_LIMIT = 100000; /* Limit on queue length. */ const int BUSY = 1; /* Mnemonics for server's being busy */ const...
(b) [6] For a more realistic case in which the comet experiences gravitational forces, consider a...
(b) [6] For a more realistic case in which the comet experiences gravitational forces, consider a comet approaching Earth. Estimate the distance from the Earth (in Earth radii) at which Earth’s gravity begins to be as important as, or more important than, that of the Sun. Neglect the Moon’s gravity. Discuss the effect of the Moon’s gravity. ps: i already have answer for part a but for more background on the question, part a is listed below a.Suppose that a...
Frequency Modulation (Simulation): Briefly discuss some techniques that you could use to modify the modulation index,...
Frequency Modulation (Simulation): Briefly discuss some techniques that you could use to modify the modulation index, and also, to increase the signal bandwidth for this FM signal.        
Here's a slightly more realistic example You live in a town with an affluent side and...
Here's a slightly more realistic example You live in a town with an affluent side and a not-so-affluent side. The folks on the affluent side have annual incomes in the $80,000 to $120,000 range while the not-so-affluent side ranges from $20,000 to $40,000. Therefore, the median and the mean of the affluent demographic is roughly $100,000 while that of the not-so-affluent side is roughly $30,000. The number of families in the affluent demographic is slightly larger than the number of...
Introduction This simulation will allow you to assume the role of a loan officer and make...
Introduction This simulation will allow you to assume the role of a loan officer and make lending decisions about mortgage applications to the bank. Once you review all the documentation and the loan applications, you will make your recommendations. You will also have a chance to review how your loans performed over the course of the next six months. Based on this analysis, you will answer a few questions and complete your analysis. Once done, you will need to submit...
Lets make a Deal c# simulation? The steps that you will need to complete this homework...
Lets make a Deal c# simulation? The steps that you will need to complete this homework is: //display and output to the screen telling the player that they can win a car with exactly $1000 //simulate the rolling of the die for $100, $200 or $300 //show the player the amount they have just rolled //show the player their total amount //check if total amount has not exceeded $1000. If exceeded, game over (tell player they lost) //if total is...
Java Programming For this assignment, you should modify only the User.java file. Make sure that the...
Java Programming For this assignment, you should modify only the User.java file. Make sure that the InsufficientFundsException.java file is in the same folder as your User.java File. To test this program you will need to create your own "main" function which can import the User, create an instance and call its methods. One of the methods will throw an exception in a particular circumstance. This is a good reference for how throwing exceptions works in java. I would encourage you...
The second fundamental theorem of welfare economics says that governments can make markets more equitable (or...
The second fundamental theorem of welfare economics says that governments can make markets more equitable (or fair) by transferring a lump sum ($, goods, factors of production) from one party to another. Why would we think that the markets would achieve efficiency after the government “interferes” and transfers between market participants?
With more than 200 countries in the world, is it realistic to expect ethical guidelines to...
With more than 200 countries in the world, is it realistic to expect ethical guidelines to be established across all countries or even within industries across countries? Is one person's or one company's ethics likely to be similar to other people's or companies' ethics?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT