Menu
News
All News
Dungeons & Dragons
Level Up: Advanced 5th Edition
Pathfinder
Starfinder
Warhammer
2d20 System
Year Zero Engine
Industry News
Reviews
Dragon Reflections
White Dwarf Reflections
Columns
Weekly Digests
Weekly News Digest
Freebies, Sales & Bundles
RPG Print News
RPG Crowdfunding News
Game Content
ENterplanetary DimENsions
Mythological Figures
Opinion
Worlds of Design
Peregrine's Nest
RPG Evolution
Other Columns
From the Freelancing Frontline
Monster ENcyclopedia
WotC/TSR Alumni Look Back
4 Hours w/RSD (Ryan Dancey)
The Road to 3E (Jonathan Tweet)
Greenwood's Realms (Ed Greenwood)
Drawmij's TSR (Jim Ward)
Community
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Resources
Wiki
Pages
Latest activity
Media
New media
New comments
Search media
Downloads
Latest reviews
Search resources
EN Publishing
Store
EN5ider
Adventures in ZEITGEIST
Awfully Cheerful Engine
What's OLD is NEW
Judge Dredd & The Worlds Of 2000AD
War of the Burning Sky
Level Up: Advanced 5E
Events & Releases
Upcoming Events
Private Events
Featured Events
Socials!
EN Publishing
Twitter
BlueSky
Facebook
Instagram
EN World
BlueSky
YouTube
Facebook
Twitter
Twitch
Podcast
Features
Top 5 RPGs Compiled Charts 2004-Present
Adventure Game Industry Market Research Summary (RPGs) V1.0
Ryan Dancey: Acquiring TSR
Q&A With Gary Gygax
D&D Rules FAQs
TSR, WotC, & Paizo: A Comparative History
D&D Pronunciation Guide
Million Dollar TTRPG Kickstarters
Tabletop RPG Podcast Hall of Fame
Eric Noah's Unofficial D&D 3rd Edition News
D&D in the Mainstream
D&D & RPG History
About Morrus
Log in
Register
What's new
Search
Search
Search titles only
By:
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Menu
Log in
Register
Install the app
Install
Community
General Tabletop Discussion
*TTRPGs General
What is the Average Result of 2d20, Drop the Lowest.
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="orsal" data-source="post: 3534766" data-attributes="member: 16016"><p>How many ways can you get less than or equal to k? Since both dice must independently be less than or equal to k, there are k^2 ways that can happen.</p><p></p><p>How many ways can you get strictly less than k? That means less than or equal to k-1, so there are (k-1)^2 ways.</p><p></p><p>How many ways to get exactly k? That means less than or equal to k but not less than or equal to k-1. So subtract:</p><p>k^2 - (k-1)^2 = k^2 - (k^2-2k+1) = 2k-1.</p><p></p><p></p><p></p><p>Sort of. You can apply similar reasoning, but the formulas become more complicated.</p><p></p><p>For three dice, the number of ways (out of n^3) to get exactly k will be</p><p></p><p>k^3 - (k-1)^3</p><p>= k^3 - (k^3 - 3k^2 + 3k -1)</p><p>= 3k^2 - 3k + 1</p><p></p><p>Likewise, at this stage, if you have m dice, and want to keep only the best single die roll, you'll have a polynomial of degree (m-1) to deal with.</p><p></p><p>Now, with two dice, notice that I needed to know the formulas for sums from k=1 to k=n</p><p>sum(k) = n(n+1)/2</p><p>sum(k^2)=n(n+1)(2n+1)/6</p><p></p><p>Well, with three dice, I'm also going to need to know</p><p>sum(k^3)=[n(n+1)/2]^2</p><p>and with four dice I'm going to to know the formula for sum(k^4), which I'd have to look up. One of the Bernoulli brothers figured out all of these sums back in the 17th century, but apart from sum(k) (which the ancient Greeks knew), they aren't easy. (The formula for sum(k) was famously rediscovered by an 8-year-old Carl Gauss; most 8-year-olds aren't up to rediscovering it themselves, but you can show Gauss' reasoning to any mathematically competent middle school student and they'll at least be able to follow it. Not so with any proof I know of sum(k^2) or higher.)</p><p></p><p>Actually, for a specific die, if you don't want the general formula, you can do it without the algebra. Just calculate the 20 (or however many sides on the die) probabilities independently, and then add. For a big die it's a lot of numbers, but you don't need to know the Bernoulli formulas. If you want to do as I did, give a formula for n-sided dice without specifying a particular value of n, you'll need the Bernoulli formulas.</p><p></p><p></p><p></p><p>That's a lot trickier. I can't think of an elegant way to compute all the probabilities you need systematically. When I wanted to figure out the distribution for best 3 out of 4 d6, I set up a spreadsheet to enumerate all 6^4=1296 possibilities and calculate the sum for each.</p></blockquote><p></p>
[QUOTE="orsal, post: 3534766, member: 16016"] How many ways can you get less than or equal to k? Since both dice must independently be less than or equal to k, there are k^2 ways that can happen. How many ways can you get strictly less than k? That means less than or equal to k-1, so there are (k-1)^2 ways. How many ways to get exactly k? That means less than or equal to k but not less than or equal to k-1. So subtract: k^2 - (k-1)^2 = k^2 - (k^2-2k+1) = 2k-1. Sort of. You can apply similar reasoning, but the formulas become more complicated. For three dice, the number of ways (out of n^3) to get exactly k will be k^3 - (k-1)^3 = k^3 - (k^3 - 3k^2 + 3k -1) = 3k^2 - 3k + 1 Likewise, at this stage, if you have m dice, and want to keep only the best single die roll, you'll have a polynomial of degree (m-1) to deal with. Now, with two dice, notice that I needed to know the formulas for sums from k=1 to k=n sum(k) = n(n+1)/2 sum(k^2)=n(n+1)(2n+1)/6 Well, with three dice, I'm also going to need to know sum(k^3)=[n(n+1)/2]^2 and with four dice I'm going to to know the formula for sum(k^4), which I'd have to look up. One of the Bernoulli brothers figured out all of these sums back in the 17th century, but apart from sum(k) (which the ancient Greeks knew), they aren't easy. (The formula for sum(k) was famously rediscovered by an 8-year-old Carl Gauss; most 8-year-olds aren't up to rediscovering it themselves, but you can show Gauss' reasoning to any mathematically competent middle school student and they'll at least be able to follow it. Not so with any proof I know of sum(k^2) or higher.) Actually, for a specific die, if you don't want the general formula, you can do it without the algebra. Just calculate the 20 (or however many sides on the die) probabilities independently, and then add. For a big die it's a lot of numbers, but you don't need to know the Bernoulli formulas. If you want to do as I did, give a formula for n-sided dice without specifying a particular value of n, you'll need the Bernoulli formulas. That's a lot trickier. I can't think of an elegant way to compute all the probabilities you need systematically. When I wanted to figure out the distribution for best 3 out of 4 d6, I set up a spreadsheet to enumerate all 6^4=1296 possibilities and calculate the sum for each. [/QUOTE]
Insert quotes…
Verification
Post reply
Community
General Tabletop Discussion
*TTRPGs General
What is the Average Result of 2d20, Drop the Lowest.
Top