0
votes
3answers
74 views
Nth Combination
Is there a direct way of getting the Nth combination of an ordered set of all combinations of nCr?
Example: I have four elements: [6, 4, 2, 1]. All the possible combinations by ta …
1
vote
11answers
275 views
Representing probability in C++
I'm trying to represent a simple set of 3 probabilities in C++. For example:
a = 0.1
b = 0.2
c = 0.7
(As far as I know probabilities must add up to 1)
My problem is that wh …
1
vote
4answers
140 views
How do I efficiently estimate a probability based on a small amount of evidence?
I've been trying to find an answer to this for months (to be used in a machine learning application), it doesn't seem like it should be a terribly hard problem, but I'm a software …
6
votes
8answers
121 views
algorithms to evaluate user responses
I'm working on a web application which will be used for classifying photos of automobiles. The users will be presented with photos of various vehicles, and will be asked to answer …
1
vote
3answers
74 views
Does an open-source poker-related math library exist?
I would like to develop a poker odds application that can give the probability of various game situations. Since the application will be mostly statistical analysis, I figured I wo …
6
votes
6answers
195 views
Adjust items chance to be selected from a list
I have a list of items. When I create the list each item has equal chance to be selected. But as an item is selected its chance goes down while the others chance goes up. If a n …
3
votes
4answers
83 views
How to test the quality of a probabilities estimator?
I created a heuristic (an ANN, but that's not important) to estimate the probabilities of an event (the results of sports games, but that's not important either). Given some inputs …
0
votes
2answers
99 views
Possible outcome in C#
I have to trace all outcome When tossing four coins at once
public void TossCoin()
{
var coin1 = new string[]{ "Head", "Tail" };
var coin2 =new string[] { "Head", "Tail" } …
3
votes
1answer
215 views
How does this MATLAB code work? (probabilities and random sequences)
I saw this code in a comment for the article "Never-ending Shuffled Sequence". I understand the basic premise, but I don't know how it works. The biggest explanation I need is of t …
2
votes
3answers
157 views
Rolling a 10 sided dice versus a 20 sided dice to get a 4 or better [closed]
Ok, so you have 2 people sitting at a table. They are both trying to roll a 4 or better. One person has a 10 sided dice and the other has a 20 sided dice. In order to be "fair", …
10
votes
7answers
335 views
What is O value for naive random selection from finite set?
This question on getting random values from a finite set got me thinking...
It's fairly common for people to want to retrieve X unique values from a set of Y values. For exampl …
-5
votes
2answers
309 views
What is the best roulette player algorithm/strategy? [closed]
A simple roulette bet yields 47% maximum winning chance. But if you have more rounds to play, you can achieve better odds. It all depends on your strategy. I designed an algorithm …
1
vote
1answer
47 views
creating distributions in mathematica
I have a function which I know to be a multivariate distribution in (x,y), and mathematica is having numerical stability issues when I form the marginal distributions.
For example …
2
votes
4answers
115 views
Probability exercise returning different result that expected
As an exercise I'm writing a program to calculate the odds of rolling 5 die with the same number. The idea is to get the result via simulation as opposed to simple math though. M …
5
votes
5answers
329 views
Simulating sports matches in online game
Hello!
In an online manager game (like Hattrick), I want to simulate matches between two teams.
A team consists of 11 players. Every player has a strength value between 1 and 100 …
