Base Systems, what all is there?

General questions, debates, and rants about RPGs

Moderator: Moderators

User avatar
RadiantPhoenix
Prince
Posts: 2668
Joined: Sun Apr 11, 2010 10:33 pm
Location: Trudging up the Hill

Post by RadiantPhoenix »

Trying to make various dicepool TNs generate similar curves.

Image
Image

Here, what I care about is mostly the high P areas.

So, formulas:
For d20, 2d10, and 3d6, I hardcoded the relative probabilities, and divided by the sum of relative probabilities. I actually counted out the number of permutations that yield each number for 3d6.
[*] PDF(z) = (# permutations)/(total permutations)
[*] CDF(z) = CDF(z-1) - PDF(z-1)

For the XdY TN V (dicepool),
[*] PDF(Z successes) = (X nCr Z) * (1-(V-1)/Y)^(Z) * ((V-1)/Y)^(X-Z)
[*] CDF(Z) = CDF(Z-1) - PDF(Z-1)
User avatar
Juton
Duke
Posts: 1415
Joined: Mon Jan 04, 2010 3:08 pm
Location: Ontario, Canada

Post by Juton »

I have been trying to think of ways to flatten the bell curve from rolling multiple dice and summing them. By flatter I mean that the probability of getting the average result is closer to the probability of getting either the maximum or minimum. The only practical ideas I've had where to use smaller die or use less die. Both of those have the problem of increasing granularity.
Oh thank God, finally a thread about how Fighters in D&D suck. This was a long time coming. - Schwarzkopf
Roog
Master
Posts: 204
Joined: Mon Sep 15, 2008 9:26 am
Location: NZ

Post by Roog »

Use a smaller number of larger dice.
Last edited by Roog on Tue Nov 27, 2012 6:29 am, edited 2 times in total.
User avatar
tussock
Prince
Posts: 2937
Joined: Sat Nov 07, 2009 4:28 am
Location: Online
Contact:

Post by tussock »

@Juton: The way GURPS fattens up the tails on 3d6 is to say all results of 3-5 (crit fail) or 16-18 (crit success) are normally the same. Which makes it very similar to 1d10+5 on those graph thingies (individual results vary by less than 5%).

Other things you can do include different size dice. 1d20+1d6 is fairly flat while still having little tails, though it's hard to tell the different between that and 1d20+3 in play.
PC, SJW, anti-fascist, not being a dick, or working on it, he/him.
User avatar
Juton
Duke
Posts: 1415
Joined: Mon Jan 04, 2010 3:08 pm
Location: Ontario, Canada

Post by Juton »

Those are both really good ideas, thanks.
Oh thank God, finally a thread about how Fighters in D&D suck. This was a long time coming. - Schwarzkopf
User avatar
RadiantPhoenix
Prince
Posts: 2668
Joined: Sun Apr 11, 2010 10:33 pm
Location: Trudging up the Hill

Post by RadiantPhoenix »

Juton wrote:I have been trying to think of ways to flatten the bell curve from rolling multiple dice and summing them. By flatter I mean that the probability of getting the average result is closer to the probability of getting either the maximum or minimum. The only practical ideas I've had where to use smaller die or use less die. Both of those have the problem of increasing granularity.
You could try multiplying some of the dice, but then you'd need different colored dice or something.

Image
Image
User avatar
Wrathzog
Knight-Baron
Posts: 605
Joined: Mon Mar 21, 2011 5:57 am

Post by Wrathzog »

Tussock wrote:Other things you can do include different size dice. 1d20+1d6 is fairly flat while still having little tails, though it's hard to tell the different between that and 1d20+3 in play.
It's just so... inelegant.
PSY DUCK?
User avatar
RadiantPhoenix
Prince
Posts: 2668
Joined: Sun Apr 11, 2010 10:33 pm
Location: Trudging up the Hill

Post by RadiantPhoenix »

Wrathzog wrote:
Tussock wrote:Other things you can do include different size dice. 1d20+1d6 is fairly flat while still having little tails, though it's hard to tell the different between that and 1d20+3 in play.
It's just so... inelegant.
Image
vermithrx
NPC
Posts: 6
Joined: Sun Jul 11, 2010 3:57 pm

Post by vermithrx »

I'm curious what the distribution looks like when the variables are "# of fair coins flipped" (or xd6 at or above target number 4) vs. "required number of heads" (required number of successes).
Last edited by vermithrx on Sat Dec 29, 2012 1:31 am, edited 1 time in total.
fectin
Prince
Posts: 3760
Joined: Mon Feb 01, 2010 1:54 am

Post by fectin »

It looks like a 3 variable graph. Within that, it looks like progressive binomial distributions.
Vebyast wrote:Here's a fun target for Major Creation: hydrazine. One casting every six seconds at CL9 gives you a bit more than 40 liters per second, which is comparable to the flow rates of some small, but serious, rocket engines. Six items running at full blast through a well-engineered engine will put you, and something like 50 tons of cargo, into space. Alternatively, if you thrust sideways, you will briefly be a fireball screaming across the sky at mach 14 before you melt from atmospheric friction.
User avatar
RadiantPhoenix
Prince
Posts: 2668
Joined: Sun Apr 11, 2010 10:33 pm
Location: Trudging up the Hill

Post by RadiantPhoenix »

Image
Image

Where N is the number of coins, and R is the number of heads
PDF(N,R) = N nCr R * 2^-N
vermithrx
NPC
Posts: 6
Joined: Sun Jul 11, 2010 3:57 pm

Post by vermithrx »

Huh, so N must be greater than or equal to 2R - 1 for CDF(N,R) to be greater than or equal to 0.5 (50%).

I can't tell just looking at the charts; are there similarly simple formulas for 12.5%, 25%, 75%, and 87.5%? I'm hoping to see a pattern between them in order to develop easy to remember rules of thumb. If there are such, you can point them out explicitly in your game and thus gain the benefits of 'relatively' easy chance deduction while still using binomial distributions.
Post Reply