Chapter 3 End Problems
Problem 1
1/2N = 0.05 so N=10
Problem 2
Calculate the harmonic mean as on p159
1 | N <- 1/((1/5)*( 1/500 + 1/1500 + 1/ 10 + 1/50 + 1/1000)) |
Problem 3
1 | p <- c(0.55, 0.2, 0.09, 0.06,0.04,0.03,0.02,0.01) |
If each allele had the same frequency (0.125) and there are 8 alleles then the effective number of alleles is 8, as that is the definition of effective number.
Problem 4
$$\sigma^2 = \frac{p(1-p)}{2n}$$
0.01707=(0.5*(1-0.5))/2*n solve for n; n=7.3
Problem 5
$$F=1-(1-\frac{1}{2N})^t$$
N=50, t=200, solve to obtain F=0.866. See p158
Problem 6
1 | u<-3e-5 |
Problem 7
1 | p <- c(0.1, 0.4) |
Problem 8
1 | q <- c(0.6, 0.9) |
Problem 9
From p209 Box H example b
$$P_t = P_{t-1}(1-m)+\bar{p}m$$1 | m <- 0.1 |
Problem 10
$$p'=\frac{p(pw_{11}+qw_{12})}{\bar{w}}$$ $$q'=\frac{q(qw_{22}+pw_{12})}{\bar{w}}$$ $$\bar{w}=p^2w_{11} + 2pqw_{12} + q^2w_{22}$$1 | p <- 0.16+0.5*0.48 |
Problem 11
$$\hat{p} = \frac{w_{12}-w_{22}}{2w_{12}-w_{11}-w_{22}}$$ With $w_{11}=0.98$ and $w_{12}=1$ and $\hat{p}=0.8$$$0.8=\frac{1-w_{22}}{2(1)-0.98-w_{22}}$$ $$w_{22}=0.92$$
Problem 12
$$\displaystyle w_{22}=1-s=0.2$$ so s=0.8
$$\displaystyle\hat{q}=\sqrt{\frac{\mu}{s}}= \sqrt{\frac{5EE-6}{0.8}}=2.5EE-3$$
$$\displaystyle\hat{q}=\frac{\mu}{hs}=\frac{5EE-6}{(0.035)(0.8)}=0.000179$$
Problem 13
1 | p <- 0.4 |
Problem 14
1 | t <- c(10, 50, 100) |
Problem 15
1 | nucleotides <- 360 #120 mamino acids is 360 nucleotides |