If I roll a 10-sided dice and I get 6 or more as a result, I get a "success". But if I roll the dice and I get 1, it cancels one success, so that If I roll two times the dice and I get (7,1), I have 0 success, if I roll it and I get (7,2), I have one success, if I roll it and I get (1,1) I have -2 success. I am trying to compute the probability of to get at least one success. And yeah, I can have negative successes.
What I thought so far is to call A="get 6 or more" and B="to not get 1" and compute $P(A \cap B)$. But I am pretty sure is wrong since it doesn't depend of the number of times I roll the dice.
I also tried to compute it rolling the dice one time but it changes dramatically as I increase the number of times I roll the dice, and I don't understand how to describe this change.
Best regards.
--
Adding information
You can choose the number of times we roll the dice. Obviously I am interested in the general case ($n$ times) but I suspect is not possible, so I would like to know the case of rolling it 5 times.
In general we can use the multinomial distribution. Let $s$ and $l$ the indices for a success and a loss respectively. Then one condition is thaAt $s>l$. And let $n$ be the number of tosses. Then the number of tosses where we neither win nor loose is $n-s-l$. This has to be greater or equal to $0$
$n-s-l\geq 0 \Rightarrow s\leq n-l$
And additionally the number of losses has to be smaller than the half of number of tosses. Thus the probability that we have more successes than losses is
$$\sum_{0\leq l<n/2} \ \ \sum_{s=l+1}^{n-l} \frac{n!}{s!\cdot l!\cdot (n-l-s)!}\cdot \left( \frac{1}{10} \right)^l\cdot \left( \frac{5}{10} \right)^s\cdot \left( \frac{4}{10} \right)^{n-l-s}$$
Let $n=3$
The probability to get more successes than losses is the sum of
$l=0$
$ s=1:\frac{3!}{1!\cdot 0!\cdot 2!}\cdot \left( \frac{1}{10} \right)^0\cdot \left( \frac{5}{10} \right)^1\cdot \left( \frac{4}{10} \right)^{2}$
$ s=2:\frac{3!}{2!\cdot 0!\cdot 1!}\cdot \left( \frac{1}{10} \right)^0\cdot \left( \frac{5}{10} \right)^2\cdot \left( \frac{4}{10} \right)^{1}$
$ s=3:\frac{3!}{3!\cdot 0!\cdot 0!}\cdot \left( \frac{1}{10} \right)^0\cdot \left( \frac{5}{10} \right)^3\cdot \left( \frac{4}{10} \right)^{0}$
$l=1$
$ s=2:\frac{3!}{2!\cdot 1!\cdot 0!}\cdot \left( \frac{1}{10} \right)^1\cdot \left( \frac{5}{10} \right)^2\cdot \left( \frac{4}{10} \right)^{0}$