summaryrefslogtreecommitdiff
path: root/291/CH11/EX11.2b/eg11_2b.sce
blob: 9511007fb8237d46cc03d03ab367eb4132e3480c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
X = [3 6 9 7 5];
p= [0.15 0.25 0.35 0.20 0.05];
T= 0;
n3=sum(X);
np = p*n3;
Xsqu = (X-np).^2;
disp(Xsqu);
XT = Xsqu./np;
T = sum(XT);

//T = T - sum(X);
//disp("When there are 12 regions")
disp(T, "The test statistic is")
pvalue = 1- cdfchi("PQ",T(1), 4);
//a= cdfchi("PQ",T(1), 4);

disp(pvalue, "The pvalue is ")
disp("Thus, the hypothesis would not be rejected at 5% level of significance")