Click here to Skip to main content
15,886,518 members
Articles / Programming Languages / C#

The Poisson Distribution in C#

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
14 Aug 2014CPOL 24.9K   6   1
Poisson distribution in C#

Imagine you are playing poker, you’re making use of the Kelly Criterion to calculate the optimal limit of your betting. You’re also using something to evaluate what your chances of winning are. But being poker, there are several rounds of betting so how much of your Kelly Limit should you bet per round?

Should you bet everything all at once and hope to knock other players out or should you bet slowly to draw other players in? How aggressive should your betting style be?

We need a function that accumulates to 1 but also varies its peak as a variable (let’s call it k) representing the number of betting rounds increases.

One function that matches these requirement is the Poisson distribution.

So here’s the code for that:

C#
public class PoissonEvaluator
{
decimal lambda;

public PoissonEvaluator(decimal lambda = 1.0M)
{
this.lambda = lambda;
}

public decimal ProbabilityMassFunction(int k)
{
//(l^k / k! ) * e^-l
//l = lamda
int kFactorial = Factorial(k);
double numerator = Math.Pow(Math.E, -(double)lambda) * Math.Pow((double)lambda, (double)k);

decimal p = (decimal)numerator / kFactorial;
return p;
}

public decimal CummulitiveDistributionFunction(int k)
{
double e = Math.Pow(Math.E, (double)-lambda);
int i = 0;
double sum=0.0;
while (i <= k)
{
double n = Math.Pow((double)lambda, i) / Factorial(i);
sum += n;
i++;
}
decimal cdf = (decimal)e * (decimal)sum;
return cdf;
}

private int Factorial(int k)
{
int count = k;
int factorial = 1;
while (count >= 1)
{
factorial = factorial * count;
count–;
}
return factorial;
}
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Alpha Integralis Limited
United Kingdom United Kingdom
CatchExAs aka Nick Wilton runs Alpha Integralis, a software development consultancy to companies in the City of London.

Main interests include exploring Algo-Trading, Quant Development and Physics using C# and Java.

www.nickwilton.info/Blog

Comments and Discussions

 
Questioncount&ndash;; Pin
Mauricio Ruiz H5-Aug-15 11:52
Mauricio Ruiz H5-Aug-15 11:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.