New OOTS products from CafePress
New OOTS t-shirts, ornaments, mugs, bags, and more
Results 1 to 7 of 7
  1. - Top - End - #1
    Banned
     
    ThiagoMartell's Avatar

    Join Date
    May 2012
    Location
    Brazil
    Gender
    Male

    Default Help with probabilities

    I'm designing my own system and I'm havin trouble calculating probabilities.
    I'm using the 'roll X, keep Y' dice roll method, which seems like the most commons. However, instead of adding together, I'm just using counting - kind of like old Storyteller, but instead of a single number, you count duplicates.
    So if you roll 2, 2, 3, 4, 5 you have one success (the 2s), if roll 1, 1, 1, 1, 6, 6 you have three degrees of success (the 1s).
    How can I calculate the probabilities for this system?

  2. - Top - End - #2
    Titan in the Playground
     
    TuggyNE's Avatar

    Join Date
    Jun 2011
    Gender
    Male

    Default Re: Help with probabilities

    I've rigged up an AnyDice program that should do the job. It could still use a bit more testing to be sure, but 1 and 2 dice are correct, and 3, 4, and 5 seem plausible.

    The basic principle derived from that is that any of the six numbers has an equal chance of being most common, so you can decrement the number of dice, and count how many are equal to each chosen initial number in the remaining dice, then take the highest count. (I suspect there's a way to make this recursive, but I didn't bother.)
    Last edited by TuggyNE; 2012-09-09 at 04:57 PM. Reason: Adjusting link
    Quote Originally Posted by Water_Bear View Post
    That's RAW for you; 100% Rules-Legal, 110% silly.
    Quote Originally Posted by hamishspence View Post
    "Common sense" and "RAW" are not exactly on speaking terms
    Projects: Homebrew, Gentlemen's Agreement, DMPCs, Forbidden Knowledge safety, and Top Ten Worst. Also, Quotes and RACSD are good.

    Anyone knows blue is for sarcas'ing in · "Take 10 SAN damage from Dark Orchid" · Use of gray may indicate nitpicking · Green is sincerity

  3. - Top - End - #3
    Ogre in the Playground
    Join Date
    Sep 2009

    Default Re: Help with probabilities

    You have to compensate, though, for the chance that there will be a tie as to which is the most common. "three 1s and three 6s" doesn't get to count twice.

  4. - Top - End - #4
    Titan in the Playground
     
    TuggyNE's Avatar

    Join Date
    Jun 2011
    Gender
    Male

    Default Re: Help with probabilities

    The given code takes that into account; it returns the highest count, and nothing more. So if you roll 6d6 and get three 1s and three 6s, it returns 3 from the 6s, which happens to be valid enough.
    Quote Originally Posted by Water_Bear View Post
    That's RAW for you; 100% Rules-Legal, 110% silly.
    Quote Originally Posted by hamishspence View Post
    "Common sense" and "RAW" are not exactly on speaking terms
    Projects: Homebrew, Gentlemen's Agreement, DMPCs, Forbidden Knowledge safety, and Top Ten Worst. Also, Quotes and RACSD are good.

    Anyone knows blue is for sarcas'ing in · "Take 10 SAN damage from Dark Orchid" · Use of gray may indicate nitpicking · Green is sincerity

  5. - Top - End - #5
    Banned
     
    ThiagoMartell's Avatar

    Join Date
    May 2012
    Location
    Brazil
    Gender
    Male

    Default Re: Help with probabilities

    Thanks a lot, that's very helpful.
    How would the possibility to roll more dice than you keep change that curve?

  6. - Top - End - #6
    Titan in the Playground
     
    TuggyNE's Avatar

    Join Date
    Jun 2011
    Gender
    Male

    Default Re: Help with probabilities

    Quote Originally Posted by ThiagoMartell View Post
    Thanks a lot, that's very helpful.
    How would the possibility to roll more dice than you keep change that curve?
    Well, specifically? If it's just "keep X dice that you like out of Y", then it would basically mean that you'd take the existing curve for Y dice and cap it at X - 1 successes (which changes very little). If it's something more complicated you'll have to spell it out, sorry.
    Quote Originally Posted by Water_Bear View Post
    That's RAW for you; 100% Rules-Legal, 110% silly.
    Quote Originally Posted by hamishspence View Post
    "Common sense" and "RAW" are not exactly on speaking terms
    Projects: Homebrew, Gentlemen's Agreement, DMPCs, Forbidden Knowledge safety, and Top Ten Worst. Also, Quotes and RACSD are good.

    Anyone knows blue is for sarcas'ing in · "Take 10 SAN damage from Dark Orchid" · Use of gray may indicate nitpicking · Green is sincerity

  7. - Top - End - #7
    Banned
     
    ThiagoMartell's Avatar

    Join Date
    May 2012
    Location
    Brazil
    Gender
    Male

    Default Re: Help with probabilities

    Quote Originally Posted by tuggyne View Post
    Well, specifically? If it's just "keep X dice that you like out of Y", then it would basically mean that you'd take the existing curve for Y dice and cap it at X - 1 successes (which changes very little). If it's something more complicated you'll have to spell it out, sorry.
    That's pretty much it, yeah. Thanks, that helped a lot.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •