To quickly sum up the reasoning for this question to give context I'm creating a table of probabilities for a RPG using a roll and keep system similar to legend of the five rings. I need to find the probability of rolling equal too or above above a given value when rolling Y d10s, keeping the Z number of dice that had the highest result, and adding the results of those Z dice together. As an example I would need to find the odds of rolling 7 dice, taking the 4 dice with the highest result, and having the sum of those dice be equal to or above 15. I've tried various online sites and calculators like AnyDice but the site can't calculate the higher end results I need to find, in this case rolling 18 d10 and keeping the highest 6. I essentially need to find the probability for meeting or exceeding each possible result for every rules legal combination of dice rolled and dice kept. Thank you for taking the time to read this.
2026-04-06 03:25:49.1775445949
How can I determine the probability of meeting or exceeding X when rolling Y number of 10 sided dice and summing the results of the highest Z of them?
84 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in STATISTICS
- Given is $2$ dimensional random variable $(X,Y)$ with table. Determine the correlation between $X$ and $Y$
- Statistics based on empirical distribution
- Given $U,V \sim R(0,1)$. Determine covariance between $X = UV$ and $V$
- Fisher information of sufficient statistic
- Solving Equation with Euler's Number
- derive the expectation of exponential function $e^{-\left\Vert \mathbf{x} - V\mathbf{x}+\mathbf{a}\right\Vert^2}$ or its upper bound
- Determine the marginal distributions of $(T_1, T_2)$
- KL divergence between two multivariate Bernoulli distribution
- Given random variables $(T_1,T_2)$. Show that $T_1$ and $T_2$ are independent and exponentially distributed if..
- Probability of tossing marbles,covariance
Related Questions in DICE
- Charting the probability of die values equal to or greater than a variable with N dice
- Probability of a dice board game
- Probability of rolling at least one snake eyes (pair of two ones) with four dice, rolled 3 times
- Probability of rolling x dice
- Is this a fair game (three players throw dice)?
- Probability of rolling ≥ $x$ with $k$ out of $m$ $n$-sided dice
- Puzzling Dice Roll Probability Problem
- Probability: In n rolls of a fair die
- Probability of rolling a $6$ with $2$ dice (that both have a second $6$)
- Random number of dice with random number of faces-Probability of getting a max number provided
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
The simple answer
Here's a JupyterLite notebook on Legend of the Five Rings.
If you don't use exploding dice, you might prefer the interface of my Cortex Prime calculator.
The complicated answer
That the sum of a set of dice can be computed via convolution is a classical result in discrete statistics. Convolution (sometimes also framed in terms of generating functions) allows us to use the fantastically efficient fast Fourier transform (FFT). With some more work, this can be extended to the case where only some of the dice are kept. Approaches of this type have been proposed on StackExchange, with examples including:
The other major type of approach is dynamic programming (sometimes also framed in terms of recurrence relations). Examples include:
The short of it is that we compute the answer to the problem to "roll $n$ d10, keep $m$" by considering how many dice $k = 0 \ldots n$ might possibly roll a 10, and then use the solutions to "roll $n - k$ d9, keep $m - k$" -- namely, the remaining pool after the $k$ dice that rolled a 10 are removed -- to complete the solution. In turn, the solutions for d9s use the solutions for d8s, and so forth until we reach d1s and all of the remaining dice must roll 1. While not as fast as FFTs, the dynamic programming approach is much more flexible, covering general "single-pass" functions over order statistics: in addition to summing the dice, it can also be used to produce efficient solutions for matching sets, straights, RISK-like mechanics, and so forth.
If you are interested in learning more, you can read my paper on the subject, or try my Icepool Python package, which is what powers the apps in the first two links.