We roll $2$ different die $n$ times, with respect to order of the die and the order for $n$ times. What is the number of solutions where all the following doubles $(1,1),(2,2),...,(6,6)$ exist?
Start by calculating the overall possible combinations of throws: $$(6^2)^n = 36^n$$
The possible combinations of getting at-least one double is $$2^1 \binom{6}{1}36^{n-1}$$
Overall for getting at-least $i$ doubles we get $$2^i \binom{6}{i}36^{n-i}$$
I've been suggested to use inclusion-exclusion but I fail to understand why is it needed here. Why isn't the number of solutions simply $2^6 \binom{6}{6}36^{n-6}$?