1001Ferramentas
🎲Calculators

Dice Sum Probability Calculator

Enter how many six-sided dice and a target total to get P(sum = s) by convolution, plus the raw count over 6^n. Two dice landing on 7 give 6/36.

P(soma=s)

Probability of the sum of n dice: a classic of combinatorics

Roll 2d6 and you get 6×6 = 36 ordered outcomes, all equally likely. The sum lands somewhere between 2 and 12, but the sums don't all show up the same number of times. P(2) = 1/36 needs exactly 1+1, while P(7) = 6/36 = 1/6 can come from 1+6, 2+5, 3+4, 4+3, 5+2 or 6+1. That makes 7 the most likely sum and the peak of a triangular distribution. With nd6 you count the compositions of the target sum using parts in [1,6], which you can work out with generating functions or recursion. Push n higher and the shape drifts toward a normal distribution, courtesy of the Central Limit Theorem, with mean 3.5n and variance ≈ 2.92n.

Applications

Board games lean on this constantly. In Catan, settling near 6 and 8 pays off because those numbers come up most. Monopoly players know 7 is the common roll, which is why Jail and the third side of the board see the most traffic. D&D and other RPGs use 2d6, 3d6, or 4d6 drop-lowest to set ability scores, and Yahtzee runs on the same math. It also makes a tidy classroom example for teaching probability.

FAQ

Why is 7 the most likely sum on 2d6? It sits dead center in the [2,12] range and has the most combinations behind it, six of them. The extremes 2 and 12 each have only one way to come up.

Does the formula work for non-standard dice (d4, d8, d20)? It does. Just swap [1,6] for [1,k] when you count. The most likely sum is always whichever integer sits closest to n·(k+1)/2.

Why does 4d6 drop-lowest produce stronger D&D characters? Throwing out the lowest die pushes the whole distribution upward. The expected value climbs from 10.5 on 3d6 to roughly 12.2, and your odds of rolling 16+ on any given ability go up too.

Related Tools

🎯

Probability of Touch

Estimates the probability that an asset's price touches a given level (a barrier) before expiry, using the reflection-principle approximation: roughly twice the probability of finishing beyond the barrier, 2·N(−|d|), with d = ln(H/S)/(σ√T). It's the back-of-the-envelope calculation traders use for barrier options and for judging the chance of a stop being hit. It assumes zero drift; with high interest rates the real probability is a little higher. Enter the spot price, the barrier level, the volatility and the term.

Capacitors in Parallel Calculator

Adds two capacitances in farads to get the equivalent value, Cp = C1 + C2. For example 1 µF plus 4.7 µF gives 5.7 µF, because parallel plates add.

🪙

Exact Binomial Test

Computes the exact binomial test, which checks whether the observed proportion of successes is compatible with a hypothesized probability, without resorting to the normal approximation. For small samples, where the z-test fails, this is the correct test: it sums the exact probabilities, given by the binomial distribution, of all outcomes as likely or less likely than the observed one. For example: are 8 heads in 10 tosses compatible with a fair coin? Enter the successes, the total and the hypothesized probability.

🎲

Binomial Probability Calculator

Computes probability of exactly k successes in n independent trials with probability p using binomial coefficient combination formula.

🚩

Grubbs' Test (Outlier)

Computes Grubbs' test, used to identify whether the most extreme value in a sample is a statistical outlier, under the assumption that the data would be normal without it. It compares the deviation of the farthest point from the mean, in standard-deviation units, against a critical value derived from the t distribution. If the G statistic exceeds the critical value, the point is flagged as an outlier. It's the classic test for cleaning data before an analysis. Enter the data and the confidence level.

Complex Number Addition

Enter the real and imaginary parts of z1 and z2 to add them: (a + bi) + (c + di) = (a+c) + (b+d)i, with the result returned in a + bi form.

The results provided by this tool are for general informational and educational purposes only and do not constitute professional, financial, medical, legal, tax or accounting advice. Always confirm important decisions with a qualified professional and official sources.