You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Dew.Math.Units Namespace > Classes > Probabilities Class > Probabilities Methods > BinomCDF Method > Probabilities.BinomCDF Method (int, int, double)
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
Probabilities.BinomCDF Method (int, int, double)

Binomial cumulative distribution function (CDF).

Syntax
C#
Visual Basic
public static double BinomCDF(int x, int N, double p);
Parameters 
Description 
int x 
Function domain, integer, valid on closed interval [0,n]. 
int N 
Defines number of trials. n must be a positive integer. 
double p 
Defines success probability. p must lie on the [0,1] closed interval. 

the binomial cumulative distribution function (CDF).

The binomial cumulative distribution function is defined by the following equation: 

 

where q=1-p and I is the discrete interval [0,1,...n] on which the binomial CDF is not zero. The result of BinomCDF is the probability of observing up to x successes in n independent trials and where the probability of success in any given trial is p.

Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!