This project is a desktop GUI application built using Python Tkinter and SciPy to calculate the cumulative probability P(X ≤ x) of a binomial distribution.
Features
- Input:
- Number of trials (n)
- Probability of success (p)
- Target value (x)
- Output:
- Displays cumulative probability P(X ≤ x) using
scipy.stats.binom.cdf
- Displays cumulative probability P(X ≤ x) using
How It Works
The app uses scipy.stats.binom.cdf(x, n, p)
to compute the cumulative binomial probability. For example, if n = 10, p = 0.5, and x = 3, the result would be:
P(X ≤ 3) = 0.1719
Requirements
- Python 3.x
- Tkinter
- SciPy
Explore the source code on GitHub: BinomialcdfCalculator.