| |
Chapter
8
Exercise 1.
# Label columns C1, R and C2, P(R)
SET R
0:8
END
PDF R P(R);
BINOMIAL 30 0.1.
LET C2(10) = 1 – SUM(C2)
Exercise 2.
# Label columns R, for binomial variable; N, for no of beads; F, for frequency;
%F, for percentage frequency.
RANDOM 100 R;
BINOMIAL 30 0.1.
TALLY R;
COUNTS;
PERCENTS;
STORE N F ‘ %F’.
Exercise 3.
# Proceed as recommended above in hint for Chapter 7(1). Having obtained
values of ‘number of throws to a six’, add successive pairs
of values, to give values from the required distribution.
<< back
|