IMHO the combat formula
P = SUMn(COMB(n-1,dh-1) * (p^dh) * (1-p)^(n-dh))
mentioned in http://apolyton.net/forums/showthrea...856#theformula
is wrong
The problem is that the event "<I>the attacker winning ten straight combats</I>" is also one of events "<I>the attacker winning ten out of eleven</I>".
In other words,
sets
{events; the attacker winning ten straight combats}
{events; the attacker winning ten out of eleven}
{events; the attacker winning ten out of twelve}
...
are not disjunctive and so they must not be added up.
P = SUMn(COMB(n-1,dh-1) * (p^dh) * (1-p)^(n-dh))
mentioned in http://apolyton.net/forums/showthrea...856#theformula
is wrong
In layman's terms, P is the sum of the probabilities of the all possible outcomes of the attacker winning; <b>For example, the odds of the attacker winning ten straight combats, plus that of winning ten out of eleven, plus that of winning ten out of twelve, and so on, added together to produce a grand total</b>. The maximum number of rounds is the attacker's and defender's total hit points minus one. Basically, until the winner is left with a single hit point after destroying the loser. The defender's chance is (1 - winner's probability).
In other words,
sets
{events; the attacker winning ten straight combats}
{events; the attacker winning ten out of eleven}
{events; the attacker winning ten out of twelve}
...
are not disjunctive and so they must not be added up.
Comment