Wednesday, 12 February 2014

Lecture 12

Today's lecture was on probability generating functions. A very nice tripos question is the following, 2004/2/II/9F. You should now be able to do this (and could discuss in your next supervision)
    A non-standard pair of dice is a pair of six-sided unbiased dice whose faces are numbered with strictly positive integers in a non-standard way (for example, (2,2,2,3,5,7) and (1,1,5,6,7,8)). Show that there exists a non-standard pair of dice A and B such that when thrown

    P(total shown by A and B is n) = P(total shown by pair of ordinary dice is n).
    for all 2n12,

    [Hint: (x+x2+x3+x4+x5+x6)=x(1+x)(1+x2+x4)=x(1+x+x2)(1+x3).]
We saw today that generating functions are useful in realms beyond probability, as example being that

"the nth Fibonacci number, Fn, is the coefficient of xn in the expansion of the
function 1/(1xx2) as a power series about the origin."

That is a quote from chapter 1 of Herbert Wilf's fun book called generatingfunctionology, whose second edition is free to download. In his book you can read about many weird and wonderful things that can be done with generating functions. He starts Chapter 1 by writing

"A generating function is a clothesline on which we hang up a sequence of numbers for display."

Generating functions can encapsulate complicated things in a lovely way.  For example, the coefficient of xn/n! in the power series expansion of eex1 is the Bell number B(n), i.e. the number of different partitions that can be made from a set of n elements. In Chapter 1 of Wilf's book you can see a derivation of this fact.

Comments (4)

Loading... Logging you in...
  • Logged in as
You mentioned in lectures today that we could get a free copy of Mathematica.
It is available here http://www.maths.cam.ac.uk/computing/software/mat...
We also have access to Matlab here http://www.maths.cam.ac.uk/undergrad/catam/softwa...
3 replies · active 581 weeks ago
Thank you for that reminder! I will add a posting about this so that more people see it. I strongly recommend these tools as aids learning. The exercise of implementing in a program the calculations whose theory we have seen in lectures can be very helpful in gaining a hands-on appreciation.

For example, it is lovely to see how a p.g.f. can be used to make some calculations so easy. Here is the code I used in today's lecture:

(* Roll a fair die 10 times. What is the probability the sum is 50? *)

p[z_] = (1/6) (z + z^2 + z^3 + z^4 + z^5 + z^6)

SeriesCoefficient[p[z]^10, {z, 0, 50}]
% // N

Series[1/(1 - x - x^2), {x, 0, 10}]
Table[Fibonacci[n], {n, 0, 10}]

Series[(1 - Sqrt[1 - 4 x])/2 x, {x, 0, 10}]
Table[CatalanNumber[n], {n, 10}]
Also for further reading, it seems like Dyke is often spelled Dyck (at least on Wikipedia)
Thank you. I think I had Dyck previously and my spell-checker mangled this. I will correct it!

Post a new comment

Comments by