Symbols
Calculator Steps
Formulas
R code
Random
100

What is the symbol for mean (sample and population)?

μ - population

x̄ - sample

100

descriptive statistics

stat -> Calc -> 1-Varstat(data list)

100

What are the formulas for sample mean?

x̄ = (Σxi)/n

100

Command for the five number summary.

fivenum 

100

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).

200

What is the symbol for the standard deviation (sample and population)?

σ - population

s - sample

200

probability table descriptive

Xlist:L1,p: L2. use L2 as freq list. Stat -> Calc -> 1-varstatL1, L2

200

Write the formula for the z-score (sample and population).

Z = (x-μ)/σ - population

Z = (x-x̄ )/s - sample

200

Code for boxplot.

boxplot(List1, List2, horizontal=TRUE, names = c("List1", "List2"))

200

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.

300

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

300

Steps to find a binomial probability that is P(X=x).

2nd vars -> binomPDF(trials, p, value a)

300

Write the formulas for mean and standard deviation for a probability distribution.

μ = Σx * P (x) 

σ = √Σxi2- pi * μ2 

300

What is the code for mean and weighted mean?

mean - mean

weighted.mean - weighted mean

300

What are the formulas for the mean and standard deviation of a binomial distribution?

μ = np

σ = √npq

400

What are the symbols for success and failure?

p - success

q - failure

400

! and combinations

math -> prob -> ! or nCr

400

Write the formula steps to find the five-number summary and create a boxplot.

IQR = Q- Q1

STEP = 1.5 x IQR

Lower fence = Q- step

Upper fence = Q+ step

400

What is the binomial probability of a single number?

dbinom(a, n, p)

400

How do you find the P(X>x)?

1 - binomcdf(n, p, b)

500

What is the symbol for variance?

σ- population

s2 - sample

500

Steps to find binomial distribution of P(X≤x).

2nd vars -> binomCDF(trials, p, value b)

500

What is the formula for the binomial distribution table?

P(x:n,p) = (nCx) px(q)n-x 

500

What is the code for a binomial probability for a series of numbers?

sum(dbinom(a:b, n, p))

500

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.

M
e
n
u