Calculation

Excel formula

Generate Random Integers | # gomaths.net/4247    User submitted, thanks to

Use the RANDBETWEEN function to generate random integers.

=RANDBETWEEN(bottom,top)

where bottom is the smallest integer RANDBETWEEN will return and
top is the largest integer RANDBETWEEN will return.

For example, to simulate a six-sided dice.

=RANDBETWEEN(1,6)

Summary Statistics - syllabus example | # gomaths.net/4238    User submitted, thanks to

Use a spreadsheet to examine the effect on the calculate summary statistics of changing the value of a score.

Syllabus: Mathematics General Course, page 37

Mean: =AVERAGE(B3:B7)

Median: =MEDIAN(B3:B7)

S.D.: =STDEV.P(B3:B7)

where B3:B7 is the range of cells containing numerical data.

Summary Statistics (mean, mode, median) | # gomaths.net/4234    User submitted, thanks to

Calculate summary statistics: mean, mode, median

Mean: =AVERAGE(B1:B4)

Mode: =MODE(B1:B4)

Median: =MEDIAN(B1:B4)

where B1:B4 is the range of cells containing numerical data.