Inheriting Genes from William the Conqueror to Elizabeth II

  • Thread starter Thread starter bjogae
  • Start date Start date
  • Tags Tags
    Genes
bjogae
Messages
20
Reaction score
0
This is not a homework question. It is actually kind of a biology question, but I'm dealing with the pure mathematics here. We came up with this reading "The selfish gene" by Richard Dawkins. He writes something like: "Elizabeth II is a direct decsendant William the conqueror. However it is likely that they share not a single gene." This struck us as odd.

Being the only person in the room who knew advanced mathematics I took on the problem. Now I'd like to check if my solution is correct, because I feel I've got some flaws.

What my biologist friends told me is that one inherits 25000 genes from ones father. Also we counted that there are 30 generations between William and Elizabeth.

I think this would be analogous to flipping 25000 coins. All that end up heads one discards, and the ones that end up tail gets flipped again. What is the probability that after 29 throws we don't have a single coin that came up tail every time?

Doing some calculations I came up with a formula

25000\cdot0,5-\sum_{k=1}^{25000}(25000-k)0,5^{k+1}

This should at least give the right answer for the first generation. Can I then just raise it to the power of 28 or should i do something different. Also, one problem is that when i tried to program this into MATLAB the first generation had a probability so close to one, it was one. Then rasing it to the power of anything won't give an accurate answer. This would say Dawkins was way of.

Any ideas?
 
Mathematics news on Phys.org
Actually, thinking of this in another way says that because of the law of large numbers about half of the coins will end up heads. Therefore we can calculate this as 25000\cdot0,5^{29}=4,66\cdot10^{-5}. Although if we think of how many ancestors one should have so nobody reproduces with someone that's even remotely related we end up with 536870912 persons in the 29th generation.
 
Your understanding of math is fine. Your understanding of biology, on the other hand... :D
bjogae said:
What my biologist friends told me is that one inherits 25000 genes from ones father. Also we counted that there are 30 generations between William and Elizabeth.

Genes are inherited via chromosomes, of which a parent passes on only 23.

William shared 46 chromosomes with William. William's children shared 23. Their children shared between 0 (probability 2^-23) and 23 (probability 2^-23) with William.
 
The probability I get that William passed no genes directly to Elizabeth (though she might have had some of his from other ancestors!) assuming no interbreeding or polysomy is 99.9999957%.

Code:
generation(v)=v=vector(23,i,v[i]/2^i);vector(23,i,sum(j=i,23,binomial(j,i)*v[j]))
gens(n)=my(v=vector(23,i,i==23));for(i=1,n,v=generation(v));v
G=gens(29);
1.-sum(i=1,23,G[i])
 
OK. Thank you. I figured I got something incorrectly. Does this mean that if William passed genes to Elizabeth he passed a complete chromosome? And that happened with 99.9999957% possibility? Just curious.
 
bjogae said:
OK. Thank you. I figured I got something incorrectly. Does this mean that if William passed genes to Elizabeth he passed a complete chromosome? And that happened with 99.9999957% possibility? Just curious.

If William passed on any genes, he passed along at least one whole chromosome (so that Elizabeth would be "over 2% William"). The probability that this would happen is 0.0000043%; the probability that he passed on zero chromosomes is 99.9999957%.
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
I'm interested to know whether the equation $$1 = 2 - \frac{1}{2 - \frac{1}{2 - \cdots}}$$ is true or not. It can be shown easily that if the continued fraction converges, it cannot converge to anything else than 1. It seems that if the continued fraction converges, the convergence is very slow. The apparent slowness of the convergence makes it difficult to estimate the presence of true convergence numerically. At the moment I don't know whether this converges or not.

Similar threads

Back
Top