Calculate the probability that when we roll $4$ fair $6$−sided die, the sum of their upfaces is $20$.
My Solution:
There exist only the following $5$ possible cases where the sum is $20$ in case of $4$ die rolled:
$ 2666, 3665, 4664, 4565, 5555$
Hence to get the probability, we multiply the number of different arrangements corresponding to each case with its probability: $$P = \frac1{6^4} \cdot \big[{4 \choose 1} + {2\cdot{4 \choose 2}} + {4 \choose 2} + {2\cdot{4 \choose 2}} + 1 \big] = \frac{35}{1296}$$
Question: Is there a better way than the above brute force method to get the answer? This will surely become tedious to solve as the number of die that are rolled increases. For instance, say, we want to calculate the probability that the sum is $50$ when we roll $18$ fair $6$-sided die. How would we go about it then?
Follow up: Is there a generalisation for this? What is the probability that the sum is $k$ when $n$ fair $6$-sided die are rolled?