Probability and Statistics

Colab notebook

##Basic Probability Theory

Deterministic techniques assume that no uncertainty exists in model parameters. Previous topics assumed no uncertainty or variation to the specified paramaters. Probabilistic techniques on the other side include uncertainty and assume that there can be more than one model solution or variation in the parameter values. Also, there may be some doubt about which outcome will occur.

##Bayesian analysis

##Probability Distributions

##Chi-Square Test

##Problem Example: C11Q5

from scipy.stats import binom
binom.cdf(k=4, n=20, p=.1), 1-binom.cdf(k=4, n=20, p=.1)
(0.9568255047155366, 0.04317449528446338)

Problem Example: C11Q8

1-binom.cdf(k=2, n=7, p=.2)
0.14803199999999994