I need some intuition for an element of the following question:
I would like to know how they get to 6 choose 2. If I write it out (1122, 1133, 1144, 1155, 1166, 2233, 2244,..., 5566) I get 15 possible digits too, but there must be an easier way to see this.
Also, is it logical that the question apparently leaves out double pairs like 1111 and 2222?


When you have $n$ objects to choose from, and you want to choose $r$, if the order doesn't matter, and repetition is not allowed, the answer is $\displaystyle{n\choose r}$.
If the order does matter, then you'd get $n(n-1)\cdots(n-r+1)=P(n,r)$ by the multiplication rule.
However, the order doesn't matter, so that means that every selection of $r$ objects appears many times -- $r!$ to be exact. Thus, you divide $P(n,r)$ by $r!$ to get the real number of possible choices. This is $\displaystyle{P(n,r)\over r!} = {n\choose r}$.