Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Suppose a basketball player make NN shots, and we know that in the first n(N)n(\le N) shots he sinked m(n)m(\le n) shots. If from the (n+1)th(n+1)^{th} shot, his ratio of sink a shot is his accumulative ratio before the shot, e.g., suppose he sinked 40 shots in the first 50 shots, then his ratio of sink the next shot is 80%. What’s the probability that he will make MM shots finally?

Using the knowledge of permutation and combination, we can solve this problem directly. Let Em,nE_{m,n} be the event that mm success in the first nn shots. It turns out to be that

P(EM,NEm,n)=(NM1nm1)(N1n1), mMN(nm).P\left( E_{M,N}\mid E_{m,n}\right) =\frac{ {N-M-1 \choose n-m-1} }{ {N-1 \choose n-1} } ,\ m\le M\le N-(n-m).

Notice that

P(EM,NE1,2)=1N1, 1MN1.P\left( E_{M,N}\mid E_{1,2}\right)=\frac{1}{N-1},\ 1\le M\le N-1.

i.e., the number of sinked shots MM is uniformly distributed on its support given that the player only sinked 1 shot in the first 2 shots.

Let Xk,nkNX_k, n\le k\le N be the number of shots the player sinks in the first kk shots, then the distribution of Xk+1X_{k+1} conditioning on XkX_{k} is given in Table 1. Using the similar method as we’ve done in the first 3 problems, we can easily find the first and second moment of XkX_k which are given below:

E(XkEm,n)=kmn, nkN;E(X_k\mid E_{m,n})=k\frac{m}{n},\ n\le k\le N;
E(Xk2)=(k+1)k(m+1)m(n+1)nkmn, nkN.E(X_k^2)=(k+1)k\frac{(m+1)m}{(n+1)n}-k\frac{m}{n},\ n\le k\le N.

So the variance of XkX_k is

Var(Xk)=EXk2(EXk)2=k(kn)m(nm)n2(n+1), nkN.Var(X_k)=EX_k^2-\left( E X_k\right)^2=k(k-n)\frac{m(n-m)}{n^2(n+1)},\ n\le k\le N.

From the above formulas, we can know that the expectation and variance of the number of sinked shots are linear quadratic functions of kk respectively, and both of them increase as kk increases. This makes it hard for us to predict XkX_k when kk is big. The 2-σ\sigma intervals for XkX_k is shown in the follow figure.

Since we know the distribution of the number of sinked shots given that the player sinked mm shots in the first nn shots, we can calculate the first and second moments directly, which yields the following equations:

M(NM1nm1)(N1n1)=1;\sum_M \frac{ {N-M-1 \choose n-m-1} }{ {N-1 \choose n-1} }=1;
MM(NM1nm1)(N1n1)=Nmn;\sum_M M\frac{ {N-M-1 \choose n-m-1} }{ {N-1 \choose n-1} }=N\frac{m}{n};
MM2(NM1nm1)(N1n1)=(k+1)k(m+1)m(n+1)nkmn.\sum_M M^2\frac{ {N-M-1 \choose n-m-1} }{ {N-1 \choose n-1} }=(k+1)k\frac{(m+1)m}{(n+1)n}-k\frac{m}{n}.