I throw a 6-sided dice (with values: 0,1,2,3,4,5) multiple times and add each value to a sum, which is 0 in the beginning. What is the probability of my sum reaching exactly 10, 11, 12, 13, 14? After reaching a requested sum, the sum will return to it's original 0 value.
E.g: 5 + 5 = 10, and afterwards the sum returns to 0. Also, the probability for each number on the dice is different (it's not a fair dice).
It pays to generalize. Let's calculate the probability $p(n)$ that we ever reach $n$ for *any integer * $n$.
Since we start at zero, we have $p(0)=1$, while $p(n)=0$ for $n<0$.
For larger $n$, by conditioning on the previously taken value we get $$p(n)=\sum_{j=0}^5 p(n-j)/6,$$ and if you solve this recursive equation for $n=10$ you get $$p(10)={3327696\over 9765625}=.34076.$$
For large values of $n$ the probability $p(n)$ will be very close to $1/3$, since each die throw adds three (on average) to the total.