This isn't homework, I'm actually (please don't ask me why) wondering how likely it is that any particular 11-digit telephone number will occur in the first billion digits of pi. My probability course was way too long ago, and the idea of creating a monte carlo simulation to figure this out seems a little extreme!
(And I realize that pi is not a random number, I'm just assuming that the digits are sequenced in a randomlike way.)
Making the simplifying assumption that 11-digit phone numbers can have any digit in any place, it's just under $1\%$ (about $0.9951046\%$).
There are $10^{11}$ possible "phone numbers" only one of which is the "magic" number, so the probability of not seeing the phone number for any one 11 digits string is $\frac{10^{11} - 1}{10^{11}}$. However, with one billion digits, there are $10^9 - 11 = 999999989$ places for this string to have to not occur. So we get: $$ \begin{align} &1 - \left(\frac{10^{11} - 1}{10^{11}}\right)^{999999989}\\ &=\large 1 - e^{999999989\left(\log(10^{11} - 1) - \log(10^{11})\right)}\\ &\approx 1- e^{-0.01000089}\\ &\approx 1-0.99049\\ &\approx 0.009951046 \end{align} $$