Probability fundamental quiz #Question 2

It’s not. It should be accessible for you if you’ve done a bit of intro probability/stats.

To start off, you can imagine modelling this as a multivariate result. This would mean considering two experiments in parallel where the corresponding random variables are (W,X) where W = (W_1) is the single toss of coin W and (X_1, X_2) are the two tosses of coin X. For brevity, we’ll assume that heads = 1 and tails = 0. Given this, you have (W_1, X_1, X_2) maps into \{0,1\}^3 with uniform distribution (because all coins are independent and fair). Thus, the event that W returns heads, and X returns tails twice is precisely \{ (1,0,0) \} and there’s no permutation to consider.

The above is basically an answer to your question, but i’ll try to distill it down even more for you. Each coin has its own random variable and so we’re dealing with 3 random variables: W_1, X_1, and X_2. One experiment would then involve sampling one value of (W, X_1, X_2). Among all \{0,1\}^3 (this means all 3-element tuples with elements which are either 0 or 1), we want exactly (1,0,0). This is the only tuple which takes this value amongst the 7 other tuples. There’s no permutation occurring because the first one is always the output of W, the second one being the output of X_1, and the third one being the output of X_2. This is basically like if you have (x,y) = (1,2) then you know that x = 1 and y = 2, which you clearly don’t permute.

In fact, all the example problems you looked at where the “permutation” (different arrangements) are even concerned doesn’t involve swapping elements around in a tuple either. The setup for a binomial distribution (the problems where you consider “arrangements”) is modelled by bernoulli distributed independent X_1, X_2, ..., X_n. Suppose we have n fair coins then each random variable considers just the output of a single coin. Then what’s actually happening is that we define a new random variable X = X_1 + X_2 + \ldots + X_n. Thus, when we say something like “exactly 3 heads”, we’re looking at the event \{X = 3\}, which is given by a lot of tuples (because there’s different values each X_i's can take and still give X = 3).

Essentially, you’d count all the tuples which meet your requirement. Mathematically, it would look something like:

\{(x_1, x_2, ... , x_n) \in \{0,1\}^n: x_1 + x_2 + ... + x_n= k \}.

Put in easier to parse words: find all tuples such that when all their elements are summed we get a sum of k.

Tldr; you have (W_1, X_1, X_2) and if heads = 1 & tails = 0 then you’re looking for a (1,0,0), which is 1 of the 8 of all possible 3-element tuple. You don’t permute and consider different arrangements cuz that makes no sense to do with random variables. Your other problems use a different setup whereby we’re trying to have the sum “mini random variables” equal a value we want. Hopefully, it’s somewhat clear how they’re two different things. In particular, your question here is asking for 1 tuple which takes a particular value; whereas, those other problems takes into consideration all tuples whose elements sum to what we/you want.