Tagged Questions
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
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.
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] = ...
-1
votes
1answer
52 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
60 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 ...
-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 ...
-5
votes
1answer
120 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 ...
0
votes
1answer
43 views
Using Beta.Select function in R (prior estimate)
I am trying to formulate the priors by using total counts and beta distribution.
I have following written:
quantile(df$row, probs=c(0.00001, 0.5, 0.99999))
quantile1 <- list(p=0.5, x=8)
...
-4
votes
1answer
79 views
Test if a die is fair in python [closed]
I know I can test if a coin is fair in Python using:
scipy.stats.binom_test(numHeads,numHeads+numTails,0.5)
If I have a 6-sided die, how can I test if the die is fair?
-1
votes
2answers
98 views
probability algorithm to find the next combination
The best example that suits my problem is Lottery but its slightly different from lottery but idea is similar. My program is fetching data from database that stores previously generated numbers. The ...
0
votes
0answers
27 views
How can I calculate the probability of the first error in binomial distribution?
In a certain digital communications system, 1’s and 0’s are transmitted with probability 0.02 that either will be received in error.
a. What is the probability that the first error will occur in ...
1
vote
1answer
76 views
How to use a while loop before assigning the outcomes to a vector in R?
My simulated experiment is as follows:
Roll a fair die to get a number X between 1 to 6.
Flip a fair coin X number of times (i.e. the number from the die roll) and record the number of heads.
This ...
-1
votes
4answers
288 views
Outcome of a simulated dice and coin toss in R [closed]
The experiment involves rolling a fair die and getting x say, then tossing a fair coin x number of times and recording the number of tails. I need to do this experiment 50 times and record the ...
-1
votes
1answer
90 views
Goodness-of-Fit C# implementations [closed]
Does anyone know of an open source C# implementation of some of the more popular goodness of fit tests (e.g., Anderson-Darling,Kolmogorov-Smirnov, etc.)?
0
votes
2answers
155 views
mathematics behind modulo behavor
Preamble
This question is not about the behavior of (P)RNG and rand(). It's about using power of two values uniformly distributed against modulo.
Introduction
I knew that one should not use modulo ...
0
votes
0answers
27 views
Is this a surjection? Why or why not?
I was under the impression that a surjection could exist if |B| > |A|, but I'm not too sure. Can't something like this happen?
1
vote
1answer
91 views
Is this because of floating point errors?
I'm not understanding how to fix this problem. G is a set of values for which I know that the range is [0, 1e+12].
> G = c(500,10000, 5001, 103, 10, 10000)
> H = density(G)
> ...
0
votes
0answers
39 views
probability and statistics related discussion
I am not sure for probability and statistics related questions in my programming practices (implementation of some data mining and machine learning program), shall I discuss here in Stack Overflow, or ...
3
votes
1answer
128 views
Probability tensor multiplication using pandas.DataFrame
I'm looking for a good way to store and use conditional probabilities in python.
I'm thinking of using a pandas dataframe. If the conditional probabilities of some X are P(X=A|P1=1, P2=1) = 0.2, ...
0
votes
0answers
53 views
Looking to get the current probability of historic data in a php loop
So I'm looking to do a heat map, I have the numbers 1-59 and a loop that checks historical data from SQL for matches then adds them up in a variable. This is based on how much historical data the user ...
0
votes
1answer
209 views
How does Laplace Smoothing Effect Prior / Evidence
I have a probability / stats question related to implementing Naive Bayes Classifiers, in particular about implementing Laplace Smoothing to avoid the Zero count issue and overfitting.
From what Ive ...
3
votes
2answers
242 views
Fastest approximate counting algorithm
Whats the fastest way to get an approximate count of number of rows of an input file or std out data stream. FYI, this is a probabilistic algorithm, I can't find many examples online.
The data could ...
1
vote
2answers
161 views
Separating two superimposed normal distributions in R [closed]
I am searching for a function/package-name in R which allows one to separate two superimposed normal distributions. The distribution looks something like this:
x<-c(3.95, 3.99, 4.0, 4.04, 4.1, ...
0
votes
2answers
1k views
Matlab Plotting Probability Density Function
I am new to statistics. I have a discriminant function:
g(x) = ln p(x| w)+ lnP(w)
I know it has a normal distribution. I know mü and sigma variables. How can I plot pdf function of it at Matlab?
...
5
votes
3answers
284 views
Select random row from a PostgreSQL table with weighted row probabilities
Example input:
SELECT * FROM test;
id | percent
----+----------
1 | 50
2 | 35
3 | 15
(3 rows)
How would you write such query, that on average 50% of time i could get the row with ...
3
votes
3answers
2k views
Calculate probability in normal distribution given mean, std in Python
How to calculate probability in normal distribution given mean, std in Python? I can always explicitly code my own function according to the definition like the OP in this question did: Calculating ...
0
votes
5answers
221 views
Is Pythons random.randint statistically random?
So I'm testing an calculating the probabilities of certain dice rolls, for a game.
The base case if that rolling one 10sided die.
I did a million samples of this, and ended up with the following ...
0
votes
1answer
206 views
Fitting distribution functions in Matlab
I am trying to use the stats toolbox to fit a distribution function. In my case, I already have the PMF (probability mass function, stored in an array) and wanted to fit it. But apparently, the ...
5
votes
3answers
465 views
Select x random elements from a weighted list in C# (without replacement)
Update: my problem has been solved, I updated the code source in my question to match with Jason's answer. Note that rikitikitik answer is solving the issue of picking cards from a sample with ...
0
votes
0answers
134 views
How to sample from joint distribution given conditional distributions
You are given a set of random variables X1,...Xn that may take any values in the range 1..M. Some variables depend on others - there are no cycles of dependencies and there is at least one variable ...
1
vote
2answers
318 views
How to compute CDF probability of normal distribution in C++?
Is there any function that allow me to compute the CDF probability of a normal distribution, given a mean and sigma ? i.e. for example P( X < x ) given the normal distribution with $\bar{x}$ and ...
0
votes
1answer
322 views
Sampling from discrete probability distribution from first principles
I have a set S={a1,a2,a3,a4,a5,......,an}. The probability with which each of the element is selected is {p1,p2,p3,p4,p5,...,pn} respectively (where ofcourse p1+p2+p3+p4+p5+....+pn=1}.
I want to ...
-4
votes
1answer
224 views
maximizing a complicated double integral function using fminsearch in matlab [closed]
i have a complicated maximization problem i have struggled to solve for over eight month now and would like to ask for help from anyone willing to assist.I have a code which is have used on simple ...
6
votes
3answers
715 views
Calculating pdf of Dirichlet distribution in python
I'd like to calculate the pdf for the Dirichlet distribution in python, but haven't been able to find code to do so in any kind of standard library. scipy.stats includes a long list of distributions ...
2
votes
2answers
262 views
C++ - critical values probability distribution
were can I find reliable code for critical values for probability distributions? For instance, F critical values for the fisher test...
?
Thanks for any relevant reference.
0
votes
1answer
94 views
How can I prove the experiment data follows heavy-tail distribution?
I have several test results of server response delay. According to our theory analysis, the delay distribution should have heavy-tail behavior. But how could I prove that the test result does follow ...
4
votes
2answers
505 views
Uniform distribution from a fractal Perlin noise function in C#
My Perlin noise function (which adds up 6 octaves of 3D simplex at 0.75 persistence) generates a 2D array array of doubles.
These numbers each come out normalized to [-1, 1], with mean at 0. I clamp ...
0
votes
0answers
222 views
Trying to fit a discrete distribution [closed]
Data has more variance than Poisson but less variance than lognormal. More variance than negative binomial as well, with data spanning 3 orders of magnitude.
I've tried generalized pareto -- not ...
0
votes
0answers
182 views
how to show that NDCG score is significant
Suppose the NDCG score for my retrieval system is .8. How do I interpret this score. How do i tell the reader that this score is significant?
1
vote
3answers
217 views
Random function returning number from interval
How would you implement a function that is returning a random number from interval 1..1000
in the case there is a number N determining the chance of reaching higher numbers or lower numbers?
It ...
7
votes
5answers
707 views
Computing similarity between two lists
EDIT:
as everyone is getting confused, I want to simplify my question. I have two ordered lists. Now, I just want to compute how similar one list is to the other.
Eg,
1,7,4,5,8,9
1,7,5,4,9,6
What ...
0
votes
0answers
94 views
Gamma divergence
I am wondering about whether there exist any MATLAB implementation of the Gamma divergence. I wish anyone can provide good information on it (such as implementation tips or full codes).
1
vote
2answers
966 views
How do I generate normal cumulative distribution in Java? its inverse cdf? How about lognormal?
I am brand new to Java, second day! I want generate samples with normal distribution. I am using inverse transformation.
Basically, I want to find the inverse normal cumulative distribution, then ...
-4
votes
1answer
87 views
R statistics assessing probability of cases. What is the chance in bridge … [closed]
What is the chance that the first five cards chosen from a deck of 52(bridge/poker) cards will contain Two(only two) cards of the same denomination(two 3's for example)?
How can we solve the following ...
2
votes
2answers
63 views
Set column to 0 with probability p
I've got a matrix A with the dimensions m X n. For every column i (i > 0and i <= n) I want to flip a coin and fill the whole column with 0 values with probability p. How can this be accomplished ...
1
vote
0answers
194 views
Pearson correlation between variables [closed]
Given n random variables x1,...,xn (one-dimensional).
The following is known (corr() = Pearson correlation):
corr(x1,x2) = a
corr(x2,x3) = a
The actual values of the random variables are unkown ...
2
votes
3answers
95 views
Spreading/smoothing periodic tasks out over time
I have a database table with N records, each of which needs to be refreshed every 4 hours. The "refresh" operation is pretty resource-intensive. I'd like to write a scheduled task that runs ...
0
votes
1answer
301 views
Central limit theorem in [R]
I am working with the language [R] to generate a sample of M = 32000 averages each calculated by averaging 36 independent values of the random variable continuous uniform distribution (0, 1) is ...
1
vote
0answers
288 views
Generate a random sample with a contaminated log-normal distribution
I would like generate a random sample with a contaminated lognormal distributed in Matlab. An example of a contaminated lognormal distributed sample could be bimodal lognormal distribution where you ...