Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • \$\begingroup\$ For pools sent to s-type parameters, AnyDice appears to only iterate over all sorted sequences rather than all ordered sequences. This is $$\binom{n + k - 1}{k - 1}$$ per pool where \$n\$ is the pool size and \$k\$ is the number of sides per die; in this case we have $$\binom{10}{5} \binom{8}{5} = 14112$$ \$\endgroup\$ Commented May 24, 2022 at 2:18
  • 1
    \$\begingroup\$ Also, instead of concatenating to P (which gets implicitly summed at the end), you can make a quasi-tuple with P: 10 * P + N@A, which puts one roll on each digit. This seems to be the AnyDice-ish way of doing things, given that the @ operator extracts digits when applied to numbers. Of course, this approach starts to break down for multi-digit elements. \$\endgroup\$ Commented May 24, 2022 at 2:26
  • 1
    \$\begingroup\$ This is also very useful, thank you; i like having the graph view on any dice, and i can compare this to what i was using to see where i went wrong! \$\endgroup\$ Commented May 25, 2022 at 2:11