Consider if your question would be better at the statistics stackexchange. Probability touches upon uncertainty, random phenomena, random numbers, random variables, probability distributions, sampling, combinatorics.
1
vote
0answers
30 views
Bayes Rule Using SQL
Wanted to confirm the technique i am using to calculate the a-posterior probabilities of the following disease is correct for the following Bayes Network ...
0
votes
4answers
33 views
Best way to load content with a probability
I'm doing some A/B testing on a site of mine, and for various reasons I need a certain piece of content to appear for 1% of the page loads. In other words if the page is loaded 100 times, I would ...
0
votes
1answer
28 views
how to find out all probabilities of 3 zeros positions combinations out of 9 positions? How to figure them out using for loop in PHP? [closed]
I have 9 digits: 123456789
I need to find out all probabilities of 3 zeros positions every time, I did the work manually in Excel but I'm afraid of that I missed some of probabilities by mistake since ...
0
votes
1answer
33 views
How to generate a sequence based on probabilities? [closed]
The problem I am confronted with is the following :
I have a probability transition matrix. suppose there are 4 states (1, 2, 3 and 4) in my sequence, there is a probability of occurrence of 2 after ...
0
votes
1answer
44 views
Frequencies for a normal distribution
How to get frequencies that reflect a normal distribution for each integer 1...400.
Values 1 and 400 would have the minimum frequency of 1, what would the frequencies be for the other values?
Also, ...
-2
votes
0answers
29 views
how to calculate the real probability [closed]
Say I have a 50% probability of winning with person 1. And a 50% probability of winning with person 2. Then I will play with both persons one after another. Before the matches, what was the ...
0
votes
0answers
25 views
Plotting Non-Cartesian (Polar) Surface Plots with Matplotlib
I've reviewed the Matplotlib APIs and I'm either misunderstanding something or over-thinking this. I have a collection of data representing a polar coordinate and some estimation factor; each datum ...
-2
votes
2answers
48 views
how to define rand() acording to probability?
having 1 bag with 3 equal balls
i made code to simulate number of times each ball comes off (works flawlessly so far)
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
...
0
votes
3answers
28 views
How to apply a probability to a cell in MATLAB?
Just a simple question today. If I have an m*n matrix and I want to cycle through every value in it and apply a probability based function.
Basically, if the probability is p, then each value in the ...
0
votes
1answer
48 views
How can I distinguish between two different users who live near to each other?
How can I distinguish between two different users, like two different neighbours who lives in a same address and goes to the same office, but they have different patterns of driving and have different ...
0
votes
2answers
53 views
Generating random integers within range with a probability distribution
I have a problem where I want to generate a set of random integer values between 1 and 5 inclusive using a probability distribution.
Poisson and Inverse Gamma are two distributions that show the ...
0
votes
2answers
62 views
Using Monte Carlo method to find a specific probability of a certain dice output in Python 3.2
I'm in a statistics class and we are constantly being given "dice problems" with various constrains. This is a probability problem, where I need to evaluate the probability of an event by using the ...
-2
votes
0answers
11 views
What probability law (in disguise)? [closed]
It may be a basic probability law in another form, but I cannot figure it out. Why can we say the following:
P(A,B|C) = P(A|B,C)*P(B|C)
Thank you.
-5
votes
2answers
58 views
How can I process a command in determined probability in C? [closed]
I would like to process a command like the way, that if I press character A, make the corresponding command in e.g 15% of the cases. Thanks for your help!
0
votes
2answers
46 views
Learning a binary classifier which outputs probability
When, in general, the objective is to build a binary classifier which outputs the probability that an instance is positive, which machine learning would be the most appropriate and in which situation? ...
2
votes
1answer
27 views
Get random item for array based on different probabilities?
Okay, imagine I'm creating a Pokemon game in JavaScript. I have an object like this...
pokemon = {
"pikachu": {hp: 100, probability: 0.1},
"squirtle": {hp: 90, probability: 0.2}
};
I basically ...
1
vote
1answer
36 views
how to plot joint distribtuion of 2 random variable having 1000 data
here is the code i wrote to generate probability distribtuion of two random variable. now i would like to plot JPD.
clear all;
clc;
x1 = randn(1000,1);
x2 = 10*randn(1000,1);
[count_1, b] = ...
0
votes
0answers
28 views
Failure Rate Calculation
I have n identical components which are connected together in parallel system, with each having a failure rate of 0.01. Can someone point me to the equation for calculating the probability that at ...
-1
votes
0answers
17 views
Probability to be less the expectation [closed]
Let D be a positive random variable with E(D) < inf.
Assume that there exist y>0 and eps>0 such that: Pr(D > E(D)+y) > eps.
Prove that there exist other y'>0, eps'>0 such that: Pr(D < ...
-7
votes
3answers
72 views
random function which generates 1 or 0 with given probability [closed]
I need to implement a function int myRand(double p)
which return 1 or 0.The probability it will return 1 is p ,while the probability it will return 0 is 1- p
0
votes
1answer
32 views
Branch predictor based on probability
Given some assembly code ,it is known that 90% of branches should be taken.
I have no knowledge regarding branch conditions.And decision about take or not take for each branch should be done only ...
0
votes
1answer
57 views
Puzzle Solver - Determining what variables belong together based on given facts & constraints by calculating probabilities
Before I say anything else - the problem may look lengthy but it's actually just 1 problem in the core, that kind of gets repeated. I'm trying to create a "puzzle solver" that has to do with ...
0
votes
1answer
47 views
Influenced randomization
I'm really sorry, I would search my question but I don't know how to word it correctly, I have a big problem with mental math and I've been trying to think of a solution. I'm trying to build a program ...
0
votes
0answers
16 views
Expected number of duplicates (triplicates etc) when drawing with replacement
I have the following problem:
I have 100 unique items (n), and I'm selecting 43 (m) of them one at a time (with replacement).
I need to solve for the expected number of uniques (only selected once, ...
1
vote
1answer
43 views
Inverse Weighted Distribution
I'm looking for a way to do an inverse weighted distribution. Here is my code for a simple linear weighed distribution:
total = 0
cumulative_distribution = []
for value in distribution:
total ...
6
votes
2answers
77 views
Monty Hall Program Simulation (C#)
I am trying to simulate the Monty Hall Problem (because I read from the book Think Statistics that a guy in particular was convinced only after seeing a computer simulation) in C#, the programming ...
-1
votes
0answers
28 views
SVM: probabilistic output
am facing a small problem while generating the probabilistic output for a binary classification problem from Support Vector Machine (svm) using R.
The output is generated by using e1071-R package, ...
-1
votes
1answer
54 views
Rat in Maze Probability [closed]
I am trying understand what am I missing in my way of solving rat in maze problem...
The question and solution is given in this link
http://www.ams.sunysb.edu/~jsbm/courses/311/rat-in-maze.pdf
...
0
votes
0answers
13 views
Bayesian probability with uncertain quality of evidence
Suppose a Bayesian updater receives one of a finite number of signals. The device that gives him the signal is of uncertain quality. If it is high-quality the signal is always a perfect signal about ...
3
votes
3answers
61 views
Given a list of uneven probabilities, what is chance of at least one occurring? [closed]
I'm writing a Python program that has a list of probabilities. Each probability represents a catastrophic outcome of an event:
# doing six different events, the array is the risk of each having a ...
0
votes
1answer
26 views
Simple defense offense strategy [closed]
I am have to make this basic game engine.The offensive player has 5/6 chance to make a shot(83%).. And defense player has 4/6 chance(57.6%) to defend it.So when offensive player make a shot,how do I ...
2
votes
3answers
80 views
Simulate data from (non-standard) density function
I want to simulate data from a non-standard density function. I already found the following link (R: How do I best simulate an arbitrary univariate random variate using its probability function?). ...
-3
votes
0answers
31 views
Turing machines misunderstanding [closed]
I was having a hard time understanding and solving this question that wants me to show the final tape and figuring out if whether or not the turning machine accepts it or not. I have a list of 20 ...
-1
votes
3answers
75 views
Equally distributed probability in C
I have a program that runs over 1000000 iterations to simulate server load. Arrival rate of requests is a variable. For example if arrival rate is 2: This means at every 2 iterations, there should be ...
0
votes
2answers
42 views
Select a user according to set probability
My database stores info about users, their groups, and relationships. One of the columns, fcount, in the users table tracks the number of relationships each user has had within their current group; ...
-1
votes
1answer
63 views
How to write a function to generate a sequence of points in R?
This is the PDF that I am dealing with:
fx = 0.3 if (0<=x<1)
0.1 if (1<=x<2)
0.25 if (2<=x<3)
0.15 if (3<=x<4)
0.2 if (4<=x<5)
0 otherwise
I have to write a function ...
0
votes
2answers
61 views
How to plot a function that calculates the PDF?
So this is the PDF that my function calculates:
fx = 0.3 if (0<=x<1)
0.1 if (1<=x<2)
0.25 if (2<=x<3)
0.15 if (3<=x<4)
0.2 if (4<=x<5)
0 otherwise
And this is my ...
1
vote
3answers
72 views
Write a function to calculate the PDF in R?
I'm to write a function to calculate the PDF of and it's been suggested that I use the if/elseif/else statements. However whenever I try and do so, I keep getting error messages but I'm not sure what ...
1
vote
1answer
72 views
Find combinations which do not have elements in common
I have array(A, B, C, D).
I choose 2 letters from above 4 letters in 6 combinations using combination formula
n! / r! (n-r)!
array(A, B),
array(A, C),
array(A, D),
array(B, C),
array(B, D),
...
2
votes
1answer
75 views
IGRAPH IN R: Find the path between vertices that maximizes the product of edge attributes
I need to find a way to find the path between two vertices that maximizes the product of edge attributes. In my case the edge attribute is a probability of connection.
Let's assume I want to find the ...
-1
votes
3answers
76 views
Probability With Arrays C++ [closed]
I have an array that contains the probability of different choices. For example:
Array 1 has {5, 3, 2, 7, 1} values. Choice "0" has a 5/18 chance of being chosen, Choice "1" has 3/18 chance.. and so ...
0
votes
1answer
51 views
How to know where to put parens when passing functions as arguments?
Why is it that I get a semantic error when I pass the function rollDie() over checkPascal(numTrials, roll), but when I pass the name of it, and then put the parens after the variable, it works as ...
0
votes
2answers
80 views
Giving equal chance for each element i to be added to a list L if Ri > T is verified
With the following simple algorithm, if the test if Ri > T: is used then we get more or less 30 elements in L and 70 elements in U, this is ok since the value of T is set to 0.7.
Now if I want to ...
0
votes
2answers
91 views
Probability of a number occurring in a matrix
I'm using Matlab and well it's straightforward to find the probability of an element in a matrix, but I a little unsure of how to find probability of an element in a row or column.
e.g this matrix:
...
0
votes
0answers
74 views
Bloom Filter: evaluating false positive rate
Given a fixed number of bits (eg. slot) (m) and a fixed number of hash function (k), how one compute the theoretical false positive rate (p) ?
According to Wikipedia ...
0
votes
0answers
75 views
Implementing Symbolic code with Numerical software such as Matlab?
This code is a multilinear implementation provided by my instructor Antti in a team project, programmed in Mathematica. My other team members have created a massive amount of code with novel list-list ...
0
votes
1answer
21 views
relation between zipf distribution and alpha parameter
I just know what is zipf distribution, which states that the frequency of an item is inversely proportional to its rank in a frequency table. I need help in understanding the effect of the "alpha" ...
0
votes
2answers
48 views
Designing a probability table
I'm prototyping a game in where the user taps a button and a item randomly appears.
Object A = 10% chance of discovery
Object B = 15% chance of discovery
Object C = 12% chance of ...
0
votes
2answers
62 views
php percentage chance for event to occur
I know it is a noob question but i am quite stuck with it so i hope you can help me.
I have an array with integers. Depending on circumstances i can have an array with 1,2,3 or 1,1,1 or 1,2,2 and so ...
-5
votes
1answer
126 views
exponential random variable generation [closed]
First create a uniform random variable in the interval (0, 1). Then by using an appropriate function, create an exponential random variable. Then validate your results by ...




