getEventProb {dice} | R Documentation |
Calculate the probability of a specified set of dice-rolling events
Description
For a specified dice-rolling process, getEventProb
calculates the probability of an event (i.e., a non-empty set of outcomes) that is specified by passing a list
object in to eventList
.
Usage
getEventProb(nrolls, ndicePerRoll, nsidesPerDie, eventList, orderMatters = FALSE)
Arguments
nrolls |
A single positive integer representing the number of dice rolls to make |
ndicePerRoll |
A single positive integer representing the number of dice to use in each dice roll |
nsidesPerDie |
A single positive integer representing the number of sides on each die ( |
eventList |
A |
orderMatters |
A logical flag indicating whether the order of the elements of |
Details
The crux of this function is eventList
, which sets the conditions that acceptable dice-rolls must meet. E.g., to get the probability of rolling at least one 6 when rolling four six-sided dice, eventList
would be list(6)
and orderMatters
would be FALSE; to get the probability of rolling a 6, followed by a 5, followed by either a 1, 2, or 3 when rolling three six-sided dice, eventList
would be list(6,5,1:3)
and orderMatters
would be TRUE.
Value
A single number representing the probability of an event that meets the constraints of the specified dice-rolling process
Author(s)
Dylan Arena
Examples
## Probability of rolling at least one 6 when rolling four six-sided dice
getEventProb(nrolls = 4,
ndicePerRoll = 1,
nsidesPerDie = 6,
eventList = list(6))
## Probability of rolling a 6, followed by a 5, followed by either a 1, 2,
## or 3 when rolling three six-sided dice
getEventProb(nrolls = 3,
ndicePerRoll = 1,
nsidesPerDie = 6,
eventList = list(6, 5, 1:3),
orderMatters = TRUE)
## Probability of rolling no 10's when rolling two ten-sided dice
getEventProb(nrolls = 2,
ndicePerRoll = 1,
nsidesPerDie = 10,
eventList = list(1:9,1:9))