What is the symbol for mean (sample and population)?
μ - population
x̄ - sample
descriptive statistics
stat -> Calc -> 1-Varstat(data list)
What are the formulas for sample mean?
x̄ = (Σxi)/n
Command for the five number summary.
fivenum
What is discrete and continuous data?
Discrete variables can only take on a limited number of values (e.g., only whole numbers). Continuous variables can take on any value and any value between two values (e.g., out to an infinite number of decimal places).
What is the symbol for the standard deviation (sample and population)?
σ - population
s - sample
probability table descriptive
Xlist:L1,p: L2. use L2 as freq list. Stat -> Calc -> 1-varstatL1, L2
Write the formula for the z-score (sample and population).
Z = (x-μ)/σ - population
Z = (x-x̄ )/s - sample
Code for boxplot.
boxplot(List1, List2, horizontal=TRUE, names = c("List1", "List2"))
What is parameter vs statistics?
A parameter is the measurement from the values of a population. A statistic is the measurement from the values of a sample.
What are the symbols for sample and population size? What is the symbol for each individual unit?
n - sample size
N - population size
xi - individual unit in a sample
Steps to find a binomial probability that is P(X=x).
2nd vars -> binomPDF(trials, p, value a)
Write the formulas for mean and standard deviation for a probability distribution.
μ = Σx * P (x)
σ = √Σxi2- pi * μ2
What is the code for mean and weighted mean?
mean - mean
weighted.mean - weighted mean
What are the formulas for the mean and standard deviation of a binomial distribution?
μ = np
σ = √npq
What are the symbols for success and failure?
p - success
q - failure
! and combinations
math -> prob -> ! or nCr
Write the formula steps to find the five-number summary and create a boxplot.
IQR = Q3 - Q1
STEP = 1.5 x IQR
Lower fence = Q1 - step
Upper fence = Q3 + step
What is the binomial probability of a single number?
dbinom(a, n, p)
How do you find the P(X>x)?
1 - binomcdf(n, p, b)
What is the symbol for variance?
σ2 - population
s2 - sample
Steps to find binomial distribution of P(X≤x).
2nd vars -> binomCDF(trials, p, value b)
What is the formula for the binomial distribution table?
P(x:n,p) = (nCx) px(q)n-x
What is the code for a binomial probability for a series of numbers?
sum(dbinom(a:b, n, p))
What is the difference between Bernoulli and binomial trials?
Bernoulli is one trial with success and failure and a given outcome. A Binomial is multiple Bernoulli trials that is a set number.