ࡱ> ikhS@ }:bjbj |-F&&&&RRRfJ2J2J282N3tfv3@7(676799 E}$tRR'| &&679eBP&67R9}}x R93 @IfJ22\F}0H>Hff&&&&HRlM߈hGTGMMMff"J2̑ffJ2THE HONG KONG POLYTECHNIC UNIVERSITY Department of Electronic & Information Engineering The Hong Kong Polytechnic University EIE520 Neural Computation Lab 2: 2-D Vowel Recognition using Kernel-Based Neural Networks A. Introduction: There are many methods to perform pattern classification using neural networks. Among these methods, Gaussian Mixture Models (GMMs) and Radial Basis Function (RBF) networks are two of the most promising neural models for. In this laboratory exercise, your task is to develop pattern classification systems based on GMMs and RBF networks. The systems should be able to recognize 10 vowels. You will use netlab [5] together with Matlab to create the GMMs and RBF networks. B. Objectives: You should complete the following tasks at the end of this laboratory exercise: Create GMMs and RBF networks to represent 10 different classes. Perform pattern classification using the created networks. Compare the GMM-based system against the RBF network-based system using different in terms of recognition accuracy, decision boundaries, training time, and recognition time by varying the numbers of kernels. Find the decision boundaries and plot them on a 2-D plan. Background: C.1 GMM-Based Classifier      Figure 1 depicts the architecture of a K-class classifier in which each class is represented by a Gaussian mixture model (GMM). GMMs make use of semi-parametric techniques for approximating probability density functions (pdf). The output of a GMM is the weighted sum of R component densities, as shown in Figure 1. Given a set of N independent and identically distributed patterns  EMBED Equation.3  EMBED Equation.3 associated with class  EMBED Equation.3 we assume that the class likelihood function  EMBED Equation.3  is a mixture of Gaussian distributions, i.e.,  EMBED Equation.3  (1) where  EMBED Equation.3 represents the parameters of the r-th mixture component, R is the total number of mixture components,  EMBED Equation.3 is the probability density function of the r-th component and  EMBED Equation.3 is the prior probability (also called mixture coefficients) of the r-th component. Typically,  EMBED Equation.3 is a Gaussian distribution with mean vectors EMBED Equation.3 , covariance matrices EMBED Equation.3 , and mixture coefficients  EMBED Equation.3  are typically estimated by the EM algorithm. More specially, the parameters of a GMM are estimated iteratively by  EMBED Equation.3 and (2) where j denotes the iteration index,  EMBED Equation.3 is the posterior probability of the r-th mixture  EMBED Equation.3 , and T denotes matrix transpose. The posterior probability can be obtained by Bayes theorem, yielding  EMBED Equation.3  (3) in which  EMBED Equation.3  (4) where D is the input dimension. C.2 RBF Network-Based Classifier In multi-layer perceptrons, the hidden neurons are based on linear basis function (LBF) nodes. Another type of hidden neurons is the radial basis function (RBF) neurons, which is the building block of the RBF neural networks. In an RBF network, each neuron in the hidden layer is composed of a radial basis function that also serves as an activation function. The weighting parameters in an RBF network are the centres and the widths of these neurons. The output functions are the linear combination of these radial basis functions. A more general form of the RBF networks is the elliptical basis function (EBF) networks where the hidden neurons compute the Mahalanobis distance between the centres and the input vectors. It has been shown that RBF networks have the same asymptotic approximation power as multi-layer perceptrons.              To apply RBF/EBF networks for pattern classification, each class is assigned a group of hidden units, and each group is trained independently using the data from the corresponding class. Figure 2 depicts the architecture of an RBF/EBF network with D inputs, M basis functions (hidden nodes), and K outputs. The input layer distributes the D-dimensional input patterns, xt, to the hidden layer. Each hidden unit is a Gaussian basis function of the form  EMBED Equation.3   EMBED Equation.3  (5) where  EMBED Equation.3 and  EMBED Equation.3 are the mean vector and covariance matrix of the j-th basis function respectively, and  EMBED Equation.3 is a smoothing parameter controlling the spread of the j-th basis function. The k-th output is a linear weighted sum of the basis functions output, i.e.,  EMBED Equation.3   EMBED Equation.3  and  EMBED Equation.3  (6) where  EMBED Equation.3 is the t-th input vector and  EMBED Equation.3 is a bias term. In matrix form, (6) can be written as  EMBED Equation.3 where  EMBED Equation.3 is an  EMBED Equation.3 matrix,  EMBED Equation.3  an  EMBED Equation.3 matrix, and W is an  EMBED Equation.3 matrix. The weight matrix W is the least squares solution of the matrix equation  EMBED Equation.3  (7) where D is an  EMBED Equation.3 target matrix containing the desired output vectors in the rows. As  EMBED Equation.3 is not a square matrix, one reliable way to solve (7) is to use the technique of singular value decomposition. In this approach, the matrix  EMBED Equation.3 is decomposed into the product  EMBED Equation.3 VT, where U is an  EMBED Equation.3 column-orthogonal matrix,  EMBED Equation.3 is an  EMBED Equation.3 diagonal matrix containing the singular values, and V is an  EMBED Equation.3 orthogonal matrix. The weight vectors  EMBED Equation.3 are given by  EMBED Equation.3  (8) where  EMBED Equation.3 is the k-th column of D. For an over-determined system, singular value decomposition gives a solution that is the best approximation in the least squares sense. Procedures: D. 1 GMM-Based Classifier Download the netlab software from http://www.ncrg.aston.ac.uk/netlab/ and save the m-files in your working directory. Download the training data and testing data from M.W. Maks home page http://www.eie.polyu.edu.hk/~mwmak/SA/2DVowel.zip. This is the vowel data you will use in this laboratory exercise. Open Matlab, go to File -> Set Path and add the directory where netlab was saved. Import and save the training data, 2DVowel_train.pat, to a 2D array. The imported matrix should be 338(12 in size. The first 2 columns contain training feature vectors in a 2-D input space and the 3rd to 12th columns indicate the class to which each pattern belongs. After importing the data, you create and initialise the GMMs by using the function gmm and gmminit respectively. Set the number of centers to 3 and covariance type to Diagonal first. The model can be created by using model_name=gmm(data dimension, no of centres, covariance type) and the model can be initialized by model_name=gmminit(model_name, data, options) Then, you use the EM algorithm gmmem to train the models. An example program, creation_sample.m is provided to demonstrate this training process. Create 10 GMMs to represent the 10 vowels using the data from 10 different classes. It is recommended to separate the data into 10 files. Plot the imported training data together with the centres after EM training. Now, import the testing data, 2DVowel_test.pat. This file is for you to test the classification rate of the GMMs you have just created. The file contains 333 data points, and again each point belongs to one of the 10 classes. For a given data point, the probability that it belongs to a particular class can be calculated by the function gmmprob. Each data point is classified to the class whose corresponding likelihood is the highest. The overall classification rate is calculated by:  Now, try different numbers of centres and different covariance types (Diagonal and Full) when creating the models. Find the optimal combination that gives the highest classification rate. What is the optimal combination and what is the classification rate? Suppose you have already obtained the optimal number of centres and covariance type for the models. Now you should start with finding the decision boundaries. The decision boundaries separate the 10 classes in a 2-D space. You can do this by finding the class difference in the x-y plan and a sample program, decision_boundary_sample.m, is included in this exercise to demonstrate the procedure of finding the boundaries. What happen at the edge of the x-y plan? Explain the phenomenon. D.2 RBF network-Based Classifier In this part, you will repeat D.1 but using RBF networks. Again, you should start with importing the training data to a 338(12 array. After imported the data, you should separate it into 2 parts: one is the data part, which is 338(2 in size, and the other one is the class ID, which is 338(10 in size. Instead of creating 10 different RBF networks as Part I, you should create one RBF network. To create an RBF network, you use the function rbf. In order to specify the network architecture, you must provide the number of inputs, the number of hidden units, and the number of output units. After that, you initialise the RBF network by calling the function rbfsetbf. You need to specify a number of option fields as in gmm in Part D.1. Before performing classification, call the function rbftrain to train the RBF network you have just created. You have to specify a target vector, which contain the classing information. At this stage, all the training processes should have finished and the next step is to do classification. Now, import the testing data and use the function rbffwd to perform classification. This function has 2 input fields, one is the RBF network that will be used for classification and the other one is a row vector. In this exercise, this row vector should have 2 fields: the x location and y location. The output is again a row vector, the size will be equal to the number of outputs that you specify in Step 3. For each test vector, the class ID is determined by selecting the netlab output whose response to the test vector is the highest. Compute the classification rate of the whole testing set data. Try different number of hidden units and select the optimal one. What is the optimal number of hidden units and what is the corresponding classification rate? Compare and explain the classification performance of the RBF networks with that of the GMMs. After successfully select an optimal number of hidden units, you can plot the decision boundaries. Again, it can be done by finding the class difference in the x-y plan. Log down your result and compare the whole process with that of the GMMs in terms of training time and recognition processing time. References:  HYPERLINK "http://www.ncrg.aston.ac.uk/netlab/" http://www.ncrg.aston.ac.uk/netlab/ C. M. Bishop, Neural Networks for Pattern Recognition, Oxford Press, 1995. K.K. Yiu, M.W. Mak and C.K. Li, "Gaussian Mixture Models and Probabilistic Decision-Based Neural Networks for Pattern Classification: A Comparative Study," Neural Computing and Applications, Vol. 8, pp. 235-245, 1999. M.W. Mak and S.Y. Kung. "Estimation of Elliptical Basis Function Parameters by the EM Algorithms with Application to Speaker Verification," IEEE Trans. on Neural Networks, Vol. 11, No. 4, pp. 961-969, July 2000. Ian T. Nabney, Netlab Algorithms for Pattern Recognition, Springer, 2002. mwmak03/eie520/lab2  DATE \@ "dd/MM/yyyy" 19/08/2003  PAGE 3 100% Total number of data points Number of correctly classified points (D-dimensional vectors)  EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3  . . Figure 1. Architecture of a GMM-based classifier .  EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3  MAXNET  EMBED Equation.3   EMBED Equation.3  Group K Group 1  EMBED Equation.3   EMBED Equation.3  .  EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3  1 1  EMBED Equation.3   EMBED Equation.3  (D-dimensional vectors)  EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3   EMBED Equation.3  .. Figure 2. Architecture of a K-output EBF network  EMBED Equation.3  % ! `   ʺnZn&jhIsCJUmHnHsH tH u/jhIs5>*CJU\mHnHsH tH u/jhjn5>*CJU\mHnHsH tH u'jh:D5>*U\mHnHtHuh:D5>*\hIs5>*\h hhIs56\] hIs5\hIs5CJ\aJhIs56CJ(\]aJ(hIsCJaJhIs%&Z 0 $hdh1$`ha$gd 1$`gd $h1$^ha$gdh1$^h`gd1$gd $$1$a$gd $1$a$gdgd55|:0 p { $dh1$^a$gd1$gd & F hh1$^h`gd 1$`gd $ & F 1$a$gd   ! " $ % q )*5>Z $1$^a$gd23 $1$^a$gd$1$^`a$gdH $1$^a$gdH$dh1$^a$gd   " # L M 34op*㛑|oZMIhCYjhCYhCYEHU)jJB hCYCJPJUVaJnHtHjhjnhCYEHU)jB hCYCJPJUVaJnHtHjhIsEHU1j8B hIsCJPJUVaJmH nH sH tH jhIsU hIs6]hjnhIs6&jh:DCJUmHnHsH tH uh:DhIs/jh:D5>*CJU\mHnHsH tH u*+>?@ABqr'()*UWhi|Ͱ͎zzeXzjohHhHEHU)jB hHCJPJUVaJnHtH hIs6]jD hHhHEHU)jB hHCJPJUVaJnHtHj3 hCYhHEHU)jB hHCJPJUVaJnHtHjhIsUhIsjhCYhHEHU)juB hHCJPJUVaJnHtHhCYjhCYU!|}~ !4567LM`abc}~ѱђpc_W_jhy+Uhy+jjhHhHEHU)jlB hHCJPJUVaJnHtHjhHhHEHU)jaB hHCJPJUVaJnHtHjhIsEHU1jV:B hIsCJPJUVaJmH nH sH tH  hIs6]hIsjhIsUj2hHhy+EHU)jBB hy+CJPJUVaJnHtH   #(01OPcdef+ѴѣќчzќeXќj &h23h23EHU)j1B h23CJPJUVaJnHtHj#hh23EHU)jB h23CJPJUVaJnHtH hIs6]hjhThEHbU)jB hCJPJUVaJnHtHjhIsUhIsjhy+UjhHhy+EHU)jB hy+CJPJUVaJnHtH +,-.4>?RSTUYab| ͸է͘͠|||||h||h||||&jh8zCJUmHnHsH tH u&jhIsCJUmHnHsH tH uhIs5>*\hh5>*\ hIs6]h23j;,h23hhEHU)jwB hhCJPJUVaJnHtHhIshjhIsUj|(h23h23EHU)jBB h23CJPJUVaJnHtH(Z[{|  $dh1$^a$gd $1$^a$gdh1$gd1$gdh$dh1$`a$gd $1$^a$gdH $1$^a$gdH "#$_Cc $1$a$gd8z $1$`a$gd8z $1$a$gd8z$01$^`0a$gdC $1$^a$gd $1$^a$gd8z$dh1$^a$gd !'(MNxy$%8qgchj3hIsEHU1j@B hIsCJPJUVaJmH nH sH tH j0hhCEHU)jB hCCJPJUVaJnHtHjhIsUhIs6H*]hIs56\] hIs5\ hIs6]&jhIsCJUmHnHsH tH u&jh8zCJUmHnHsH tH uhIs 89:;?@STUV_`stuvw{|ѼѨѓѨѨqd`hCj5<hChCEHU)jWB hCCJPJUVaJnHtHj:hChCEHU)jIB hCCJPJUVaJnHtH hIs6]j7hChCEHU)jEB hCCJPJUVaJnHtHhIsjhIsUj5hChCEHU)jBB hCCJPJUVaJnHtH<=PQѼիітsiP1jAB hIsCJPJUVaJmH nH sH tH jEhIsEHUjBB hIsUVmH sH  hIs6]jChCh6cEHU)j}B h6cCJPJUVaJnHtHhCjUAh6ch6cEHU)jB h6cCJPJUVaJnHtHhIsjhIsUj?h6ch6cEHU)jB h6cCJPJUVaJnHtHQRSYZmnopvw魣銀g]jOhIsEHU1jDB hIsCJPJUVaJmH nH sH tH jMhIsEHU1j B hIsCJPJUVaJmH nH sH tH jKhIsEHU1j B hIsCJPJUVaJmH nH sH tH jIhIsEHU1jB hIsCJPJUVaJmH nH sH tH hIsjhIsUjGhIsEHUCDWXYZijqropлЦЍj`G1jQB hIsCJPJUVaJmH nH sH tH j XhIsEHU1j B hIsCJPJUVaJmH nH sH tH jVhIsEHU1jB hIsCJPJUVaJmH nH sH tH h6chIs]jSh6ch6cEHU)jB h6cCJPJUVaJnHtHhIsjhIsUjQhIsEHU1jkB hIsCJPJUVaJmH nH sH tH 0123op騞{bXjahIsEHU1jҿB hIsCJPJUVaJmH nH sH tH j_hIsEHU1jB hIsCJPJUVaJmH nH sH tH j]hIsEHU1jB hIsCJPJUVaJmH nH sH tH  hIsH*j[hIsEHU1jBB hIsCJPJUVaJmH nH sH tH hIsjhIsUjYhIsEHU    #$лЙsibZPhIs56\]h6chIs\ hIs6]jkhIsEHU1jB hIsCJPJUVaJmH nH sH tH jhh6ch6cEHU)jB h6cCJPJUVaJnHtHj1fh6ch6cEHU)jB h6cCJPJUVaJnHtHhIsjhIsUjchIsEHU1j B hIsCJPJUVaJmH nH sH tH  ! !c!d!p"q"L#M## $1$`a$gdt $1$a$gdt $ & F1$a$gdt $ 1$a$gd6c $1$a$gd6c$ & F h1$a$gd6c^gd6c 1$^gd & F hh1$^h`gd $dh1$a$gd !!!!*","2"4""""""L#M#####$$/$@$m%}%&&&7'8';'='t)))**1+2+l+m+,,,,- -b-j-..2˶&jhIsCJUmHnHsH tH u!hthIs5OJQJ\]^J)hthIs5CJOJQJ\]^JaJhthIs5OJQJ\^J hIsH* jhIshIs56\]hIshIs>*B*ph7#####t$u$$%N%O%7'9':';'$ 1$a$gd6c$ 1$a$gdt $ 1$a$gd6c  & Fdgdt d^gd6c$ & F 1$a$gdt1$gd6c $1$`a$gdt $h1$`ha$gdt;'<'='>(?('*(*I*J***y+z+,,R.S. $1$a$gdt$ & F phh1$^ha$gdt1$gdh^hgdt$ dh1$^`a$gd 1$gd6c$ & F 1$a$gdt $ 1$a$gdtS.q0r011222222H33o4C5555555557$8$H$ $ & F!a$gdt & Fgdgd $1$a$gdt$ & F phh1$^ha$gdt2222!3"3#3F3G3H3V3}304Q44555B5C5R5}5555555555555555555ڽzodhV'hV'mH sH h&B0JmHnHu hV'0JjhV'0JUh&BmHnHsH ujhV'UmH sH hV'mH sH hyKmH sH  hIs6] hIs6hIshIs0JmH sH jmhIsUmH sH hIsmH sH jhIsUmH sH hIs56\]hIsCJaJ'555555555666566676J6K6L6M6O6P6c6d6e6f6h6i6|6}6߳߫ߖ߫tg߫R)jB hCYCJPJUVaJnHtHjph:DhjnEHU)jB hjnCJPJUVaJnHtHj nhjnhCYEHU)j B hCYCJPJUVaJnHtHjhIsUhIsB*mH phsH hIsB*CJPJaJph#hIsB*CJPJaJmH phsH hIshIsB*PJaJphhIsB*PJaJmH phsH 5665666N6O6g6h6666666666666677 7 7#7$7<77$8$H$}6~66666666666666666666666666677 7毢捀kZkZNkhIs5>*\mH sH !hIs5B*CJ0PJ\aJ0ph)hIs5B*CJ0PJ\aJ0mH phsH jyh:Dh:DEHU)jB h:DCJPJUVaJnHtHjwh:Dh:DEHU)jB h:DCJPJUVaJnHtHjuh:DhjnEHU)jB hjnCJPJUVaJnHtHhIsjhIsUjrhjnhCYEHU 7 7 7 77 7!7"7$7%78797:7;7=7>7Q7R7S7T7V7W7j7k7l7m7o7p77꧝zaWjfhIsEHU1j|7B hIsCJPJUVaJmH nH sH tH j*hIsEHU1j}7B hIsCJPJUVaJmH nH sH tH j~hIsEHU1j~7B hIsCJPJUVaJmH nH sH tH jw|h:Dh:DEHU)jzB h:DCJPJUVaJnHtHjhIsUhIs!hIs5B*CJ0PJ\aJ0ph<7=7U7V7n7o7777777777777777778888,8 $7$8$H$a$7$8$H$7777777777777777777777777777зДuhSFjh:DhjnEHU)jB hjnCJPJUVaJnHtHjNhjnhCYEHU)jB hCYCJPJUVaJnHtHjhIsEHU1jy7B hIsCJPJUVaJmH nH sH tH j܇hIsEHU1jz7B hIsCJPJUVaJmH nH sH tH hIsjhIsUjhIsEHU1j{7B hIsCJPJUVaJmH nH sH tH 77777777 88888888(8)8*8+8-8.8/87888@8E8F8Y8Z8[8\8^8_8xxcVjh8zhEHU)jB hCJPJUVaJnHtHhIsmH sH jÒhIsEHU1ju7B hIsCJPJUVaJmH nH sH tH jhIsEHU1jv7B hIsCJPJUVaJmH nH sH tH jhIsUhIsB*CJ0PJaJ0phhIsB*CJ(PJaJ(ph#hIsB*CJ(PJaJ(mH phsH hIs!,8-8.8/87888@8A8B8C8D8E8]8^8v8w8{8|888888888887$8$H$ $7$8$H$a$_8r8s8t8u8w8z8{8|8}8888888888888888pcJ@jΜhIsEHU1j>B hIsCJPJUVaJmH nH sH tH jךh8zh8zEHU1j>B hIsCJPJUVaJmH nH sH tH jhIsEHU1j>B hIsCJPJUVaJmH nH sH tH !hIs5B*CJ0PJ\aJ0ph)hIs5B*CJ0PJ\aJ0mH phsH jhIsUjh8zhEHU)jB hCJPJUVaJnHtHhIs8888888888888888 999999&9'9(9)9+9,9?9@9qgN1j>B hIsCJPJUVaJmH nH sH tH jhIsEHU1j>B hIsCJPJUVaJmH nH sH tH jhIsEHU1j>B hIsCJPJUVaJmH nH sH tH jhIsEHU1j>B hIsCJPJUVaJmH nH sH tH jŞhIsEHU1j>B hIsCJPJUVaJmH nH sH tH hIsjhIsU899*9+9C9D9F9G9I9J9b9c9{9|99999999999::*:+:7$8$H$@9A9B9D9E9F9G9H9I9J9K9^9_9`9a9c9d9w9x9y9z9|9999999鰦鍃sgN1j>B hIsCJPJUVaJmH nH sH tH hIsB*PJaJ$phhIsB*PJaJ$mH phsH j9hIsEHU1j>B hIsCJPJUVaJmH nH sH tH juhIsEHU1j>B hIsCJPJUVaJmH nH sH tH hIsB*CJ$PJaJ$ph#hIsB*CJ$PJaJ$mH phsH hIsjhIsUjhIsEHU99999999999999999999999 ::::::&:鲥鐃najh8zh8zEHU)j(B h8zCJPJUVaJnHtHjh8zh8zEHU)j B h8zCJPJUVaJnHtHj`h8zh8zEHU)jB h8zCJPJUVaJnHtHjJh8zhEHU)jwB hCJPJUVaJnHtHhIsjhIsUjhIsEHU&:':(:):+:.:/:0:a:b:c:v:w:x:y:{:|:}:Ѽџї~qihIsCJaJjh:Dh:DEHU)jB h:DCJPJUVaJnHtHh:Djh:DUhIs5>*\mH sH !hIs5B*CJ0PJ\aJ0ph)hIs5B*CJ0PJ\aJ0mH phsH hIsjhIsUj^h8zh8zEHU)j/B h8zCJPJUVaJnHtH+:/:0:a:b:z:{:|:}: $ & F!a$gdtgd:D7$8$H$%0:pV'/ =!"#$%`!ՙ=L]:`!Rxcdd`` @c112BYL%bpu>?}X '#Mt0p=Lq%8*4;ܤr@/35be.pJ/4E@)F&&\A DL,İrt?0ꆒ`!XV8_rwj   XJSxcdd`` @c112BYL%bpuF0n[L # 5H? 2 2ý l/{01PL s+ss\Fĺ7X \ĺ׈d&4UrS.89@Ӥ(ÆI)$5bPd+S> 1 @c112BYL%bpu @c112BYL%bpu`| 2°/aF0C܁OP Ma(wJrOp?Ȅ"l%)^2!K|c=+2qm`vY`%4uqS 8ZiK`(v021)Wĸ ΃ `!<|tW˳:82``hn 0Xxcdd`` @c112BYL%bpu`aFC&Fno=>z1RF7 e\POYAWbo sxu~+  M[ `P`dbR ,.Iq1(2tAA!, R`!JݴVڗt$2 ` 0Zxcdd`` @c112BYL%bpu`a؃n.#77 dw%? /D?F2!L s+ss;XFoVX\.\bw?ǁ\Nh-v0o(v021)Wĸ ΃ ڡ`!NÄp,$|2`e 0Zxcdd`` @c112BYL%bpu`ld؃n.#77 dw% D?F2!L s+ss\\O+J,advĺǁ\Nh-v0o(v021)Wĸ @΃ חP`!jl$U#=O-f@ 8 XJ8xcdd``ed``baV d,FYzP1n:&&6! KA?H1Z 10 UXRY7S?&,e`abM-VK-WMc~x V8pNHq50~b9IS 2Jgc$>F0| %Psg.\F&wK&pg\PXĕD{@FirAc  cPI)$5bPd+S> 1CJ#@b `%0hxcdd`` @c112BYL%bpupTTrAS#8łE@9n#RpeqIj.ŠQ *Ov<^'f,2ǩ7`!xBWk @nb `M0excdd`` @c112BYL%bpu UXRY7&,e`abM-VK-WMc~x V8pNHq=`vA%y$? k 6jn?$s@W&0;‡-.wBe2 *\{& `PXw021)WĸAD!>^`!:dg|\n/!   XJXJxmOAJADL.9Ia?\! rO/a=h0x EW5PÝA+D[k=;0kourwЃubDžk1q6 pw>R&M"1j4@+.#Q75EoW0O'[3^+5ߏ|.h*W>f7|%)ɾx}_*{PII<`!=8=99@ |XJ xcdd``> @c112BYL%bpu @c112BYL%bpu>?}(6H$b.#?/?įDgeo`a[.p 7"I)$5bPd()v<^'f, t`!w0 gUtd@@8 |Excdd``dd``baV d,FYzP1n:&&6! KA?H1Z 10< UXRY7S?&,e`abM-VK-WMc~x V8pNHq50ֱjV ~ oF%>?}da%0 Ma(w pr\F_^F ; dB {I wt1L(@3we첊J.h0pAӎ(%bdbR ,.I `g!, `!v/3v$D#W@HD |Dxcdd``Ned``baV d,FYzP1n:&lB@?b  ㆪaM,,He`H @201d++&1l?z+8U`T TjV ~ oF%>0IL lw%? /D#_ȄJ,2727)?($qo`r4s01P}`WTrAc 2 sP Ĥ\Y\ q1(2t)v<^f~wB`!;]ïĐ_4b ``0dxcdd`` @c112BYL%bpuDd ,J  C A? "2i!NG2HuӬ !vaĆVp{ |=!aSbIb^:4M(As& >8TqAS68 E@ n#RpeqIj.ŠV "|byx958'Dd hhb  c $A? ?3"`?2qEc,JJ'M7`!EEc,JJ'@@||xcdd`` @c112BYL%bpu0ILlof%?I\F@&Tb &I9 @_Ĺ8\ae}8lB {01P !YQM=\N&д#Jp+KRsA<.E.b Ya~`❨Dd db  c $A? ?3"`?2[Tq3Kۊz=$7w 7`!/Tq3Kۊz=$@,&xcdd`` @c112BYL%bpuH'f| L(g'1@䱤/  p8ǒ(+=pӣ%Oр QOBU_̊>U!#D=ja,>`J–^0Q~ s+sAK9.pI&h'*qv321)Wx\ ]` bg!P[+Dd ||b  c $A? ?3"`?2u~}&$ kɡQ 7`!I~}&$ kɡ``00xcdd`` @c112BYL%bpu?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_abcdefgjmonpqrtsuvwyxz{|~}Root Entry FPEIfl@Data `SWordDocument|ObjectPool';IfPEIf_1122711726F;If;IfOle CompObjfObjInfo "'*+,/258;>ADGJKNQRSTUVWXYZ[\]^_`adgjmpstuvwxy| FMicrosoft Equation 3.0 DS Equation Equation.39qQ"  X (i) FMicrosoft Equation 3.0 DS Equation Equation.39qEquation Native >_11228262692 F;If;IfOle CompObj fObjInfo Equation Native  _1122826314F;If;IfOle  iT =x @Batang}t ;t=1,2,...,N{} FMicrosoft Equation 3.0 DS Equation Equation.39qCompObj fObjInfoEquation Native ;_1122826357 F;If;IfV  i , FMicrosoft Equation 3.0 DS Equation Equation.39qPQ\ p(x Times New Roman~t | i )Ole CompObjfObjInfoEquation Native l_1122826428F;If;IfOle CompObjfObjInfo FMicrosoft Equation 3.0 DS Equation Equation.39q p(x t | i )=P( r|i | i )p(x Times New Roman~t | i , r|i ) r=1R "Equation Native _1122826513"F;If;IfOle  CompObj !f FMicrosoft Equation 3.0 DS Equation Equation.39q"h  r|i FMicrosoft Equation 3.0 DS Equation Equation.39qObjInfo!#Equation Native $>_1122826524$F;If$>IfOle %CompObj#%&fObjInfo&(Equation Native )_1122826562,T)F$>If$>If¶Xn p(x Times New Roman~t | i , r|i )a"( r|i , r|i ) FMicrosoft Equation 3.0 DS Equation Equation.39qOle -CompObj(*.fObjInfo+0Equation Native 1aE\ P( r|i | i ) FMicrosoft Equation 3.0 DS Equation Equation.39qQM  ( r|i_1122712150.F$>If$>IfOle 3CompObj-/4fObjInfo06Equation Native 7i_11228265933F$>If$>IfOle 9CompObj24:f , r|i ) FMicrosoft Equation 3.0 DS Equation Equation.39qLؙT  r|i {} r=1RObjInfo5<Equation Native =h_11228266041;8F$>If$>IfOle ?1%'CompObj79@fObjInfo:BEquation Native Ch_1122826662=F$>If$>If FMicrosoft Equation 3.0 DS Equation Equation.39qL  r|i {} r=1R FMicrosoft Equation 3.0 DS Equation Equation.39qOle ECompObj<>FfObjInfo?HEquation Native Inlm P( r|i | i ){} r=1R FMicrosoft Equation 3.0 DS Equation Equation.39q_11228269536JBF$>If$>IfOle LCompObjACMfObjInfoDOEquation Native PL_1122826986GF$>If$>IfOle bCompObjFHcf0Z  r|i(j+1) =P (j) ( r|i |x t )x tt=1N " P (j) ( r|i |x t ) t=1N " , r|i(j+1) =P (j) ( r|i |x t )[x t " r|i(j+1) ][x t " r|i(j+1) ] Tt=1N " P (j) ( r|i |x t ) t=1N " ,P (j+1) ( r|i )=P (j) ( r|i |x t ) t=1N " N             r=1,& ,R FMicrosoft Equation 3.0 DS Equation Equation.39q[8W P (j) ( r|i |x t )ObjInfoIeEquation Native fw_1122827057EOLF$>If$>IfOle h FMicrosoft Equation 3.0 DS Equation Equation.39q-x\ (r=1,& ,R) FMicrosoft Equation 3.0 DS EqCompObjKMifObjInfoNkEquation Native lI_1122827074QF$>If$>IfOle nCompObjPRofObjInfoSqEquation Native ruation Equation.39q¥V P (j) ( r|i |x t )=P (j) ( r|i )p (j) (x t | r|i )P (j) ( k|i )p (j) (x t | k|i ) k=1R " FMicrosoft Equation 3.0 DS Equation Equation.39qP p (j) (x t | r|i )=_1122827127@mVF$>If$>IfOle zCompObjUW{fObjInfoX}Equation Native ~_1122827500[F$>If$>IfOle CompObjZ\f1(2) D2 | r|i(j) | 12 exp"12x t " r|i(j) [] T ( r|i(j) ) "1 x t " r|i(j) []{} FMicrosoft Equation 3.0 DS Equation Equation.39qxZ  j (x t )=exp"12 j (x t " j ) T  j"1 (x t " j ){}ObjInfo]Equation Native  _1122713765`F$>If$>IfOle  FMicrosoft Equation 3.0 DS Equation Equation.39qQ@7 j=Times New Roman~1,...,M FMicrosoft Equation 3.0 DS EqCompObj_afObjInfobEquation Native \_1122827586YheF$>If$>IfOle CompObjdffObjInfogEquation Native 6uation Equation.39q'  j FMicrosoft Equation 3.0 DS Equation Equation.39qط4'  j_1122827589jF$>If$>IfOle CompObjikfObjInfolEquation Native 6_1122827593PwoF$>If$>IfOle CompObjnpf FMicrosoft Equation 3.0 DS Equation Equation.39qo  j FMicrosoft Equation 3.0 DS Equation Equation.39qObjInfoqEquation Native 6_1122827607tF$>If$>IfOle CompObjsufObjInfovEquation Native _1122827669ryF$>If$>If¶`o y k (x t )= k0 + kj  j (x t ) j=1M " FMicrosoft Equation 3.0 DS Equation Equation.39qOle CompObjxzfObjInfo{Equation Native A%`d t=1,& ,N FMicrosoft Equation 3.0 DS Equation Equation.39q%4 k=1,& ,K_1122827683~F$>If$>IfOle CompObj}fObjInfoEquation Native A_1122827645F$>If$>IfOle CompObjf FMicrosoft Equation 3.0 DS Equation Equation.39q`,; x tObjInfoEquation Native 6_1122286914F$>If$>IfOle ObjInfoEquation Native :_1122713863^F$>If$>IfOle QY$  k0 FMicrosoft Equation 3.0 DS Equation Equation.39qQ,7 =Times New RomanWCompObjfObjInfoEquation Native H_1122287103F$>If$>IfOle CompObjfObjInfoEquation Native ) FMicrosoft Equation 3.0 DS Equation Equation.39qQ ЅD  FMicrosoft Equation 3.0 DS Equation Equation.39q_1122287116F$>If$>IfOle CompObjfObjInfoEquation Native 1_1122287136F$>If$>IfOle CompObjfQ| NK FMicrosoft Equation 3.0 DS Equation Equation.39qQ   FMicrosoft Equation 3.0 DS EqObjInfoEquation Native )_1122287172F$>If$>IfOle CompObjfObjInfoEquation Native A_1122287211F$>If$>Ifuation Equation.39qQ%, N(M+1) FMicrosoft Equation 3.0 DS Equation Equation.39qOle CompObjfObjInfoEquation Native AQ%F (M+1)K FMicrosoft Equation 3.0 DS Equation Equation.39q,PS< Times New RomanW=D_1122827800F$>If$>IfOle CompObjfObjInfoEquation Native H_1122287329F$>If$>IfOle CompObjf FMicrosoft Equation 3.0 DS Equation Equation.39qQ0 q NK FMicrosoft Equation 3.0 DS Equation Equation.39qObjInfoEquation Native 1_1122287370F$>If$>IfOle CompObjfObjInfoEquation Native )_1122287441F$>If$>IfQ P4  FMicrosoft Equation 3.0 DS Equation Equation.39qQ P4 Ole CompObjfObjInfoEquation Native )_1122714332F$>If$>IfOle CompObjfObjInfo FMicrosoft Equation 3.0 DS Equation Equation.39qQ$ Times New RomanU FMicrosoft Equation 3.0 DS Equation Equation.39qEquation Native @_1122287520F$>If$>IfOle CompObjfObjInfoEquation Native A_1122287552F$>If$>IfOle   "'*+,-./04789:;<=>?@ABCDFILMNOPQRSTUVWXY[^abcdefghijklmnpsvwxyz{|}~Q%x N(M+1) FMicrosoft Equation 3.0 DS Equation Equation.39qQ P̅ CompObjfObjInfoEquation Native )_1122287570F$>If$>IfOle CompObjfObjInfo Equation Native  Q FMicrosoft Equation 3.0 DS Equation Equation.39qQ5X$ (M+1)(M+1) FMicrosoft Equation 3.0 DS Equation Equation.39q_1122287629F$>If$>IfOle  CompObjfObjInfoQ5X$ (M+1)(M+1) FMicrosoft Equation 3.0 DS Equation Equation.39qDp< w k {Equation Native Q_1122827775|F$>If$>IfOle CompObjfObjInfoEquation Native `_1122827768F$>If$>IfOle } k=1K FMicrosoft Equation 3.0 DS Equation Equation.39qo\o w k =Times New RomanV "1 U T d kCompObjfObjInfoEquation Native _1122287842&F$>If$>IfOle  CompObj!fObjInfo#Equation Native $6 FMicrosoft Equation 3.0 DS Equation Equation.39qQ04 d k FMicrosoft Equation 3.0 DS Equation Equation.39q_1122826251F$>If$>IfOle %CompObj&fObjInfo({  .  @& & MathType`!Times New Romanww w0-2 2tyTimes New Romanww w0-2 7xy &  "System !tw-OlePres000)Equation Native 16_1122826178VF$>If$>IfOle 2NANIht x t FMicrosoft Equation 3.0 DS Equation Equation.39q b  .  ` &CompObj3fObjInfo5OlePres0006Equation Native Ew  & MathTypepTimes New Romanww w0-2  )y2 ,y2 W|y2 1(y!Times New Romanww w0-2 |y!Times New Romanww w0-2 ;Ky2 Ry2 Ky2 tyTimes New Romanww w0-2 fpySymbolw@ Uww w0-2 UQy2 wyTimes New Romanww w0-2 xy &  "System !w-NANI[Xn p(x t | K , R|K )_1122826202F$>If$>IfOle GCompObjHfObjInfoJ FMicrosoft Equation 3.0 DS Equation Equation.39q b  .  ` &`  & MathTypepTimes New Romanww w0-2 )y2 ,y2 W|y2 1(y!OlePres000KEquation Native Zw_1122826142F$>If$>IfOle \Times New Romanww w0-2 |y!Times New Romanww w0-2  Ky2 ry2 Ky2 tyTimes New Romanww w0-2 fpySymbolw@ ww w0-2 VQy2 wyTimes New Romanww w0-2 xy &  "System !tw-NANI[@ p(x t | K , r|K ) FMicrosoft Equation 3.0 DS Equation Equation.39qCompObj]fObjInfo_OlePres000`Equation Native ow b  .  ` &`  & MathTypepTimes New Romanww w0-2 )y2 ,y2 W|y2 1(y!Times New Romanww w0-2 |y2 k1y!Times New Romanww w0-2 Ky2 Ky2 tyTimes New Romanww w0-2 fpySymbolw@ ww w0-2 VQy2 wyTimes New Romanww w0-2 xy &  "System !w-NANI[\ p(x t | K , 1|K ) FMicrosoft Equation 3.0 DS Equation Equation.39q b  .  ` & & MathTypep_1122826134F$>If$>IfOle qCompObjrfObjInfotOlePres000uEquation Native w_11228261148F$>If$>IfOle Times New Romanww w0-2 j)y2 t,y2 a|y2 1(y!Times New Romanww w0-2 1y2 |y2 1y!Times New Romanww w0-2 :Ry2 tyTimes New Romanww w0-2 fpySymbolw@ ww w0-2 Qy2 wyTimes New Romanww w0-2 xy &  "System !$w-NANI[hl p(x t | 1 , R|1 ) FMicrosoft Equation 3.0 DS EqCompObjfObjInfoOlePres000Equation Native wuation Equation.39q b  .  `& & MathTypepTimes New Romanww w0-2 )y2 `,y2 W|y2 1(y!Times New Romanww w0-2 1y2 x|y2 1y!Times New Romanww w0-2 ry2 tyTimes New Romanww w0-2 fpySymbolw@ ww w0-2 Qy2 wyTimes New Romanww w0-2 xy &  "System !w-NANI[m4W p(x t | 1 , r|1 ) FMicrosoft Equation 3.0 DS Equation Equation.39q b  _1122826106 F$>If$>IfOle CompObj  fObjInfoOlePres000  Equation Native w_1122711422F$>If$>IfOle .  `& & MathTypepTimes New Romanww w0-2  )y2 t,y2 a|y2 1(y!Times New Romanww w0-2 1y2 ||y2 1y2 1ySymbolw@T cww w0-2 Qy2 wy!Times New Romanww w0-2 tyTimes New Romanww w0-2 fpyTimes New Romanww w0-2 xy &  "System !w-NANI[V p(x t | 1 , 1|1 ) FMicrosoft Equation 3.0 DS Equation Equation.39q2  .  `& & MathTypepTimes New Romanww w0-2 =)yCompObjfObjInfoOlePres000ZEquation Native a2 |y2 <(y Times New Romanww w0-2 |y Times New Romanww w0-2 cKy2 Ky2 RyTimes New Romanww w0-2 FPySymbolw@; ww w0-2 LwySymbolw@ ww w0-2 Qy & "System !w-QE; P( R|K | K ) FMicrosoft Equation 3.0 DS Equation Equation.39q      !"#$&*()+-,/.302N46587:9;><=@?BACEDGFHIKJLMOPnQSRUTWVXYZ[\]^_`abcdfehgijlkompqrstuvwyxz{|~}>N/p2]p[p ߁O9Zab0P=L }R.pN'ohp+KRsA<.E.b΃ ٓbDd `|b  c $A? ?3"`?2nO#k9e}v7`!nO#k9e}`X 0Nxcdd``.ed``baV d,FYzP1n:&v! KA?H1Z ؀*깡jx|K2B* R vfjv ,L ! ~ Ay ۏ/? N300Usi#FO6VJߜįѨا<!H? 2= 2!/bFc*Ï"402L/L s+ss\ 8>qJ.hpt@ӄ(pZcdbR ,.IAĔB ;/G3X?[Dd |J  C A? "2`| 2ba$_{ lo_Ì* "%|@Ma(w 8rs'ο , #aÈŞV8r+ M3{@iI)$5$ŠV "|byx9'G{Dd b  c $A? ?3"`? 2^D- %#V.37`!^D- %#V.2@gxcdd`` @c112BYL%bpuFuJbern#d6Ps3@ M-VK-WMcNPs0$Lb"(_/+ dF2CC7`!6/Mj*kuJȀ@(. D#xڥmLEgg_nwnۥ0B=) DJ+P? MҊm!-1~Qcl5iRIcBIX03%CBM ZIMٽy,og"D8پB4Ӣ[^1:][%KN0Rװ}Ň]$TZ9=>5<9ê~|5V P_NPTD34 TΣ|E?#@d{a=h㔠F#hiqBz BֿNX'yEϟ`ĩ,nq&= >" };;33%_k4;gT-?AYlT?1M>Z 1t }OHǝܿ1S WMV~A݌StOj/~y%%wUIܷ1SGt8o yh0A MY) ͝'{p*r~(+k"P_ <PS9P_mυ%A뷚X``}2Zԗ#hh*ï >.ZBfL A1t͈"ҏ&TOQiq??-'c^+T.] fj+Wǝn`骴;?km:?6fƳpbՋ Oܯ;YxZ~lDOR-יc*OqGN8|Ѿ?m?Cyl`˴<i<^t7>x{[P?ʅ 2&"vg7_Z\x|?wfm.KLSji6fs rbr'xͤUu}k1JIvhiwH% .2'#CY yDd <b  c $A? ?3"`? 2+4\&]Hg,#7`!+4\&]Hg,b` hexcdd`` @c112BYL%bpu?e`˂lm&dw|afn/#WߒJp~_wUYH02L@3wE[h2K`\PKX1䂦F.p'hZ +KRsA<.E.bP?byx9B\Dd @b   c $A ? ?3"`?2kaG@\d&7`!zkaG@\4 Hxcdd``dd``baV d,FYzP1n:&B@?b u30 UXRY7S?&,e`abM-VK-WMc~x V8pNHq%0ʳjVM _όF F%{Ir#.6 Ap{)o&=! %E o\ nGq\P`b"!`[=.p w"{iI)$5bPd(/v<^f,xDd db ! c $A!? ?3"`?2 2;CS(7`!2;CS^,& xڥUMhA~vv"eARѪ!/"b[ zыx=9b(X^< "ƙ&?0}700 6-d,6 idp.5h2Xz8󘐓cǼ;ga!h;8#u:/~=` `z33rOJW+BMbAӎM"57dPEqC_\].5aVHNS\e/NQc#ȫ{ߺ1+*㥊[)O\EkkM/'v[ʩia[ȿQdh|Z|'so'y#|Wj.M밖|W[S=W{xW;x_ _gK(F_9lڤ~@ۼ'կ jT#$-?ȨlJKRGs_Z'᭥_UpRO&(`RYo=P}W:57K.gMkk)꯲79꯲ClMLx۝nj+?)k,fx G܊Q. q˨77_* dBܐd|Jk46=EDd b " c $A"? ?3"`?2ZqHsjjFk,7`!cZqHsjjF\ `)`#@1xڥOHTA3kj[MsF Z2VO!*-v@ y n AZHieA^!Qʂnnoff;y7y<.eVP!0/G!kpX#Κq|1 /C97/=gVY1L^$ m:ϭ_b07`!Z1~> m:ϭ_`)8(xڥMh@߼F7_TIzpGil I.ҳx(*B< փ/SO7^j73v*H߼' YCq@ǐ2#Y;Lr(p*Q1"ѭt\ѣk|87׾JBQFwTtBfJ+QTqWUZ A3.-.@<+&6xr=QNjMt:r j*y[39i~Lsވѳ5GG;H~sx"qZ8_nħ ˩{<~f([>,G ֵ(\h:m.BޛIbҬ~x}v~sG\׼HfR/kQ,mG*&9?_D2xIfv]96ұ$a *)lF`?ﮎcיosܝ_=Oٗo T&Pk)Ѭ!k0"0d1~)Bzǎ v}"Dd L@J  C A? "2C.tk.\`47`!XC.tk.\ &xcdd``fgd``baV d,FYzP1n:&lB@?b u 10 UXRY7S?&meabM-VK-WMc~x V8pNHq%0갂tVyL !gU@}`P\1fP(0`1 dvpenR~CP`3F\~S84l!]v 0y{@Ĥ\Y\ bPd+"/v<^f~ x``Dd ,|b $ c $A$? ?3"`?2g0ֵ ;[V8lC"67`!;0ֵ ;[V8l`0 xcdd``> @c112BYL%bpup'G;ʀFC?87`!;<>p'G;ʀF`0 xcdd``> @c112BYL%bpu 1 @c112BYL%bpuA'sz "b*R] >ЬYȮ>7zprQM>#0\w7w~ VnEa*IL:_<.O[9| Ēp3.yx@k}^ڥҙT.H鑙l&qíXpۈZ ]"Kfk@ V>џ!è?H<ոuDr8&yOMf۽ya}QݔqhfUxQ;"c3ĞY#OeT¶mN%#MDd L,b ) c $A)? ?3"`?2~W;xk sL?7`!k~W;xk r 9xcdd``dd``baV d,FYzP1n:؄,56~) @ (/`c`X 47$# lo`'0L ZZǰ@pT9 P.P16J`,f@JtH2L@, ='P`!6{@(V%Dr/p{AFx4727)?(pK+m%4v1&h܈R 9#RpeqIj.ŠQ _> 13 Ma(w zO!n[.p 7"2LLJ% "CD1byx9dui Dd hb ( c $A(? ?3"`?2TEV+ @c112BYL%bpu캖R``3|;/8%KߌfLd3,LAv\>ΖPFe^ky]67gppE7*$fvg@̕z L .X>>S _3 Dd J  C A? "2ncՑ#^ J H7`!BcՑ#^ Hxcdd`` @c112BYL%bpu 1ܤr'T3HX3cUrA}7~4#RpeqIj.ŠQ _> 1 1 @c112BYL%bpu 1xcdd``6ed``baV d,FYzP1n:&\B@?b u  ㆪaM,,He` @201d++&1l?z+8U`T TqjV`!׀XPw07a>&+ss焸bw#Np{ݱaȣHb@e[2n +\?4N=`dbR ,.Iq1(2t)v<^gf~ Im:Dd @J  C A? ")2k)x!3M1JBuKx;d7`!pk)x!3M1JBuKj w >xcdd``6ed``baV d,FYzP1n:&\B@?b u  ㆪaM,,He` @201d++&1l?z+8U`T TqjV`!׀XPw07a>&+ss\L@r m=0Ae$1\ 2a .ṕ' `P\w021)WĸAĔB ;/G33X?;m:mDd b , c $A,? ?3"`?*2fnvD<ߏuf7`!fnvD<ߏ(+hYxcdd``dd``baV d,FYzP1n:,B@?b X깡jx|K2B* Rvf KX+ss9n?z+8U`4AHqeTfi$<'.e1HV2j.HdnHfnj_jBP~nb.wBedw%o gC L!|t{H?Lb3[?'?L`sm62`\J.h0p0@ӎ(%bdbR ,.I g!, yDd T|b + c $A+? ?3"`?+2E?WءY2h7`!E?WءY2 `0excdd``> @c112BYL%bpuc#6Kof&J߁dny%4rS68iVv121)Wx\ ]` g!>yDd ,hJ  C A? ",2R*f_wKPQ.[k7`!&*f_wKPQ@|xcdd``> @c112BYL%bpu @c112BYL%bpuCJ#@w7`!&U_>CJ#@b `%0hxcdd`` @c112BYL%bpupTTrAS#8łE@9n#RpeqIj.ŠQ *Ov<^'f,2ǩ7{Dd |b 1 c $A1? ?3"`?2V۵<ں@z7`!V۵<ںb`@ 0gxcdd`` @c112BYL%bpuIf$>IfOle CompObjfObjInfoOlePres000ZEquation Native a_1122711420F$>If$>IfOle 2  .  ` & & MathTypepTimes New Romanww w0-2 T)y2 |y2 ;(y Times New Romanww w0-2 \|y Times New Romanww w0-2 nKy2 Ky2 ryTimes New Romanww w0-2 FPySymbolw@ ww w0-2 KwySymbolw@ ww w0-2 Qy & "System !tw-QE P( r|K | K ) FMicrosoft Equation 3.0 DS Equation Equation.39q2  .  `& & MathTypepTimes New Romanww w0-2 4)yCompObjfObjInfoOlePres000ZEquation Native a2 |y2 ;(y Times New Romanww w0-2 <|y2 1y Times New Romanww w0-2 NKy2 sKyTimes New Romanww w0-2 FPySymbolw@ Oww w0-2 +wySymbolw@ Nww w0-2 Qy & "System !tw-QE( ; P( 1|K | K ) FMicrosoft Equation 3.0 DS Equation Equation.39q_1122711419"F$>If$>IfOle CompObj!$fObjInfoOlePres000#%ZEquation Native a_1122711418> (F$>If$>IfOle !2  .  ``&  & MathTypepTimes New Romanww w0-2 )y2 |y2 ;(y Times New Romanww w0-2 1y2 1y2 |ySymbolw@ ww w0-2  wy Times New Romanww w0-2 RyTimes New Romanww w0-2 FPySymbolw@ ww w0-2 Qy & "System !tw-QEF P( R|1 | 1 )      !"#$&),-./012345679<?@ABCDEFGHIJKMPSTUVW[^_`abfijklmnopqrtwz{|}~ FMicrosoft Equation 3.0 DS Equation Equation.39q2  .  `@& & MathTypepTimes New Romanww w0-2 v)yCompObj'*fObjInfoOlePres000)+ZEquation Native a2 R|y2 ;(y Times New Romanww w0-2 1y2 t1y2 \|ySymbolw@ ÷ww w0-2 wy Times New Romanww w0-2 ryTimes New Romanww w0-2 FPySymbolw@? #ww w0-2 Qy & "System !tw-QE\ P( r|1 | 1 ) FMicrosoft Equation 3.0 DS Equation Equation.39q_1122711417.F@If@IfOle CompObj-0fObjInfoOlePres000/1Equation Native %a_11228262324F@If@IfOle ' u .  ` & & MathTypepTimes New Romanww w0-2 V)y2 2|y2 ;(y Times New Romanww w0-2 1y2 T1y2 <|y2 1ySymbolw@* ww w0-2 wySymbolw@ ww w0-2 QyTimes New Romanww w0-2 FPy & "System !tw-QE; P( 1|1 | 1 )CompObj36(fObjInfo*OlePres00057+ Equation Native 8Y FMicrosoft Equation 3.0 DS Equation Equation.39qM{ e .  @&` & MathType`Times New Romanww w0-2 )y2 a|y2 1(y!Times New Romanww w0-2 Ky2 tyTimes New Romanww w0-2 fpySymbolw@ Sww w0-2 wyTimes New Romanww w0-2 xy &  "System !tw-NANI=X\ p(x t | K ) FMicrosoft Equation 3.0 DS Equation Equation.39q{  .  @@&_1122826122:F@If@IfOle :CompObj9<;fObjInfo=OlePres000;=>TEquation Native LY_1122711414D,@F@If@IfOle N & MathType`Times New Romanww w0-2 ~)y2 a|y2 1(y!Times New Romanww w0-2 1ySymbolw@ Dww w0-2 wy!Times New Romanww w0-2 tyTimes New Romanww w0-2 fpyTimes New Romanww w0-2 xy &  "System !w-NANI=p p(x t | 1 ) FMicrosoft Equation 3.0 DS EqCompObj?BOfObjInfoQOlePres000ACRbEquation Native X)uation Equation.39q:  .  `& f & MathType Symbolw@ ww w0-2 @4Sy & "System !w-Q @  FMicrosoft Equation 3.0 DS Equation Equation.39q:  .  `& f & MathType _1122711413FF@If@IfOle YCompObjEHZfObjInfo\OlePres000GI]bEquation Native c)_1122827395LF@If@IfOle dSymbolw@ ww w0-2 @4Sy & "System !tw-Q H  FMicrosoft Equation 3.0 DS Equation Equation.39qCompObjKNefObjInfogOlePres000MOhEquation Native sOWr 9 .   `&  & MathTypePTimes New Romanww w0-2 "))2 ()2 ()!Times New Romanww w0-2 2)Times New Romanww w0-2 t)2 ay)Times New Romanww w0-2 Lx) &  "System !w-NANI3!| y 2 (x(t)) FMicrosoft Equation 3.0 DS Equation Equation.39q_1122827404cRF@If@IfOle uCompObjQTvfObjInfoxWr 9 .   @& & MathTypePTimes New Romanww w0-2 ))2 ()2 ()!Times New Romanww w0-2  1)Times New Romanww w0-OlePres000SUyEquation Native O_1122713298nXF@If@IfOle 2 {t)2 ay)Times New Romanww w0-2 (x) &  "System !w-NANI3@p m y 1 (x(t)) FMicrosoft Equation 3.0 DS EqCompObjWZfObjInfoOlePres000Y[Equation Native :uation Equation.39qNW  .   & & MathTypeP Times New Romanww w0-2 9KMSymbolw@ ww w0-2 "wM & "System !tw-QPT  KM FMicrosoft Equation 3.0 DS Equation Equation.39qW  .   &_1122713297^F@If@IfOle CompObj]`fObjInfoOlePres000_aEquation Native :_1122713296h\dF@If@IfOle ` & MathTypeP Times New Romanww w0-2 2y Times New Romanww w0-2 9KySymbolw@ #ww w0-2 "wy & "System !tw-Q̒  K2 FMicrosoft Equation 3.0 DS Equation Equation.39qW  .   &@ & MathTypeP Times New Romanww w0-2 1yCompObjcffObjInfoOlePres000egEquation Native : Times New Romanww w0-2 9KySymbolw@ ww w0-2 "wy & "System !tw-Qd  K1 FMicrosoft Equation 3.0 DS Eq_1122713295jF@If@IfOle CompObjilfObjInfouation Equation.39qW  .   & & MathTypeP Times New Romanww w0-2 My Times New Romanww w0-2 1ySymbolw@ OlePres000kmEquation Native :_1122713294zbpF@If@IfOle ww w0-2 "wy & "System !tw-Qw  1M FMicrosoft Equation 3.0 DS Equation Equation.39qCompObjorfObjInfoOlePres000qsEquation Native :{W  .   @& & MathTypeP Times New Romanww w0-2 12Symbolw@7 ݷww w0-2 "w2 & "System !tw-Qm  12_1122713293vF@If@IfOle CompObjuxfObjInfo FMicrosoft Equation 3.0 DS Equation Equation.39qWW  .    & & MathTypeP Times New Romanww w0-2 11OlePres000wyEquation Native :_1122713292t|F@If@IfOle Symbolw@d bww w0-2 "w1 & "System !tw-QlR  11 FMicrosoft Equation 3.0 DS Equation Equation.39qCompObj{~fObjInfoOlePres000}Equation Native :{  .  @&` & MathType` Times New Romanww w0-2 0y Times New Romanww w0-2 9KySymbolw@. ww w0-2 "wy & "System !tw-Q  K0 FMicrosoft Equation 3.0 DS Equation Equation.39q{{  .  @@&_1122713291F@If@IfOle CompObjfObjInfoOlePres000Equation Native :_1122713290F@If@IfOle  & MathType` Times New Romanww w0-2 10Symbolw@N ww w0-2 "w0 & "System !tw-Q;  10 FMicrosoft Equation 3.0 DS EqCompObjfObjInfoOlePres000bEquation Native )uation Equation.39q:  .  `& f & MathType Symbolw@ ˷ww w0-2 @4Sy & "System !w-Q |Ԛ  FMicrosoft Equation 3.0 DS Equation Equation.39q:  .  `& f & MathType _1122713289F@If@IfOle CompObjfObjInfoOlePres000bEquation Native )_1122713288F@If@IfOle     !"#$%&'()*,/23456789:;<=>?ADGHIJKLMNOPQSVYZ[\]^_`abcehklmnopqrstuvwxyz|}Symbolw@O ̷ww w0-2 @4Sy & "System !tw-Q    FMicrosoft Equation 3.0 DS Equation Equation.39qCompObjfObjInfoOlePres000Equation Native  #=W Q .    & & MathTypeP & Q TN  FMicrosoft Equation 3.0 DS Equation Equation.39q_1122827383JF@If@IfOle  CompObjfObjInfo4  .  & & MathTypePTimes New Romanww w0-2 ` )y2 `(yTimes New Romanww w0-2 `tyTimes New Romanww w0-2 `7xyOlePres000<Equation Native 5_1122827281F@If@IfOle  &  "System !tw-NANI  x(t) FMicrosoft Equation 3.0 DS Equation Equation.39qW ] CompObjfObjInfoOlePres000Equation Native +O.   @& & MathTypePTimes New Romanww w0-2 ))2 ()2 ()Times New Romanww w0-2 ot)!Times New Romanww w0-2 M)Times New Romanww w0-2 x)Symbolw@ |ww w0-2 2F) &  "System !w-NANI3 L  M (x(t)) FMicrosoft Equation 3.0 DS Equation Equation.39q_1122827296F@If@IfOle -CompObj.fObjInfo0Wj  .    & & MathTypePTimes New Romanww w0-2 ))2 ()2 j()!Times New Romanww w0-2 1)Times New Romanww w0-OlePres0001Equation Native @W_1122827304F@If@IfOle B2 Jt)!Times New Romanww w0-2 M)Times New Romanww w0-2 x)!Symbolw@ ww w0-2 h-)Symbolw@K 7ww w0-2 2F) &  "System !w-NANI;Q|  M"1 (x(t)) FMicrosoft Equation 3.0 DS Equation Equation.39qVW ] .   &CompObjCfObjInfoEOlePres000FEquation Native RO & MathTypePTimes New Romanww w0-2 ))2 t()2 ()!Times New Romanww w0-2 {2)Times New Romanww w0-2 t)Times New Romanww w0-2 x)Symbolw@ ww w0-2 2F) &  "System !w-NANI3`lR  2 (x(t)) FMicrosoft Equation 3.0 DS Equation Equation.39q_1122827311F@If@IfOle TCompObjUfObjInfoWOlePres000XEquation Native dO_1122825976F@If@IfOle f3W ] .   &` & MathTypePTimes New Romanww w0-2 [))2 P()2 ()!Times New Romanww w0-2 h1)Times New Romanww w0-2 t)Times New Romanww w0-2 x)Symbolw@ ww w0-2 2F) &  "System !w-NANI3x@ m  1 (x(t)) FMicrosoft Equation 3.0 DS EqCompObjgfObjInfoiOlePres000j Equation Native {uation Equation.39qE  .   &`  & MathTypeTimes New Romanww w0-2 ` )y2 ` |y2 `(y 2 `maxe 2 `arge!Times New Romanww w0-2 .1r!Times New Romanww w0-2 b ir2  tr2 Kr2 oirTimes New Romanww w0-2 `pr2 `7krSymbolw@ ww w0-2 `_ wr2 `e=r!Symbolw@F cww w0-2 =rTimes New Romanww w0-2 `' xr &  "System !w-NANIzXn k='argmax i=1K p(x t | i )Oh+'0 ( B@?b 30sC0&dT20 KXB2sSRs=^~*g`0``F\ 09ηGbc>`ld؃n.#77 dw% D?F2!L s+ss\\O+J,advĺǁ\Nh-v0o(v021)Wĸ @΃ חP<Dd|0 : # A:2JݴVڗt$`!JݴVڗt$2 ` 0Zxcdd`` @c112BYL%bpu`a؃n.#77 dw%? /D?F2!L s+ss;XFoVX\.\bw?ǁ\Nh-v0o(v021)Wĸ ΃ ڡ<Dd|0 ; # A; 2j]h`aFC&Fno=>z1RF7 e\POYAWbo sxu~+  M[ `P`dbR ,.Iq1(2tAA!, R:Dd|0 1 # A1 2<|tW˳:8(`!<|tW˳:82``hn 0Xxcdd`` @c112BYL%bpu`| 2°/aF0C܁OP Ma(wJrOp?Ȅ"l%)^2!K|c=+2qm`vY`%4uqS 8ZiK`(v021)Wĸ ΃ 7Ddt|0 = # A= 2 :`Iު`! :`Iު ` 0Uxcdd``.ed``baV d,FYzP1n:&v! KA?H1Z؀깡jx|K2B* R vfjv ,L ! ~ Ay ۏ/? N300Usi#06VJ߈įѨا<0CQ6x "oPD\Po;oy%0++qk`@l%)2! *)4!F&&\"CX1(y"İrt?0UXDd $hb 7 c $A7? ?3"`?2/3v$D#W~7`!v/3v$D#W@HD |Dxcdd``Ned``baV d,FYzP1n:&lB@?b  ㆪaM,,He`H @201d++&1l?z+8U`T TjV ~ oF%>0IL lw%? /D#_ȄJ,2727)?($qo`r4s01P}`WTrAc 2 sP Ĥ\Y\ q1(2t)v<^f~wBYDd hb 3 c $A3? ?3"`?20 gUtd7`!w0 gUtd@@8 |Excdd``dd``baV d,FYzP1n:&&6! KA?H1Z 10< UXRY7S?&,e`abM-VK-WMc~x V8pNHq50ֱjV ~ oF%>?}da%0 Ma(w pr\F_^F ; dB {I wt1L(@3we첊J.h0pAӎ(%bdbR ,.I `g!, Dd0 ? # A?2@J^ fW$`!J^ fW:`!Rxcdd`` @c112BYL%bpu # A>2?ՙ=L]%`!ՙ=L]:`!Rxcdd`` @c112BYL%bpu>?}(6H$b.#?/?įDgeo`a[.p 7"I)$5bPd()v<^'f, t2Dd HTb > c $A>? ?3"`? 2|Ijҥ޸X7`!PIjҥ޸r@ "XJxcdd``dd``baV d,FYzP1n:&&V! KA?H1Z zh7T obIFHeA*CL N`A $37X/\!(?71aXr:]j m$MM3( 86#O?y1p{0r5D#O53Ȅ@J4{0QF p8UhrAc `ƍ(bdbR ,.I `g!, ouDdT0 = # A=2gq^T@`t YCw`!;q^T@`t Y XJ xcdd``> @c112BYL%bpu @c112BYL%bpuR&M"1j4@+.#Q75EoW0O'[3^+5ߏ|.h*W>f7|%)ɾx}_*{PII<Ddh0 7 # A72sXbmIѿwsO`!GXbmIѿws@|xcdd`` @c112BYL%bpu UXRY7&,e`abM-VK-WMc~x V8pNHq=`vA%y$? k 6jn?$s@W&0;‡-.wBe2 *\{& `PXw021)WĸAD!>^Ddhh0 6 # A6 2h̃ dWD`!<̃ dW@@|| xcdd``> @c112BYL%bpuF0| %Psg.\F&wK&pg\PXĕD{@FirAc  cPI)$5bPd+S> 1F0n[L # 5H? 2 2ý l/{01PL s+ss\Fĺ7X \ĺ׈d&4UrS.89@Ӥ(ÆI)$5bPd+S> 1>?}X '#Mt0p=Lq%8*4;ܤr@/35be.pJ/4E@)F&&\A DL,İrt?0ꆒKDd Tb 8 c $A8? ?3"`?2O ]4~Cq7`!iO ]4~C XJ7xcdd``ed``baV d,FYzP1n:&B@?b ʎ ㆪaM,,He` @201d++&1l?z+8U`T TY@NԄAFi?!|}ɳL1l&?I\Fn_f&2BK3 Ma(w 4 r^#n\XpBX~`dbR ,.IAĔB ;/G3X?뺆Dd lb . c $A.? ?3"`?2τ\p ljW7`!τ\p ljW xڥSK@~jXCAQ']tM AƖk! 889AD8?Pp C˽c4+aa2Zb*x)h鬈fG` "CF`_D7biSMQlYWGē/iTtLصܶv*uw-+]eoQb_5L|M/mq罄-]Xja)c=){䭩-Hb?eJǒC: oGE{9?_FICxESR 0Fg~MMձu~Ձq|z/CNLTFLmy8dz]|d`|>1TableSummaryInformation(~DocumentSummaryInformation8CompObjj4 P \ h t%THE HONG KONG POLYTECHNIC UNIVERSITYsofHE demoONGemoemo Normal.dotNhkpul.d21uMicrosoft Word 10.0@$e @Hf@*Ke@rIf&՜.+,D՜.+,T hp  PolyUwRv- %THE HONG KONG POLYTECHNIC UNIVERSITY Title 8@ _PID_HLINKSApy$http://www.ncrg.aston.ac.uk/netlab/  FMicrosoft Word Document MSWo\f R 6RA <?jJ?[f S 6SA ;?jJ?Zf T 6TA :?jJ?Yf U 6UA# 9?jJ?af V 6VA 8?jJ?Ox W <7W̙jJb 7Z2 Y s *̙jJ 6f Z 6ZA 6?jJ? <Z2 \ s *̙jJ 7f ] 6]A 5?jJ? =ZB ^ s *DjJJZB _ s *DjJIZB ` s *DjJHZB a s *DjJBZB b s *DjJAZB c s *DjJGZB d s *DjJFZB e s *DjJEZB f s *DjJ@ZB g@ s *DD@D NormalCJ_HaJmH nHsH tHJ@J Heading 17$8$@&H$PJmH sH tH J@J Heading 2$1$@&^ 5>*\h@h Heading 32$$ dh1$@&^`a$ 5>*\F@F Heading 4$@&5>*\mH sH J@J Heading 5$1$@&` 5>*\b@b Heading 6$$7$8$@&H$a$B*CJPJaJmH phsH F@F Heading 7$@&5CJ\mH sH \@\ Heading 8$7$8$@&H$B*CJ PJaJ(mH phsH DA@D Default Paragraph FontVi@V  Table Normal :V 44 la (k@(No List >>@> Title $1$a$5CJ$\aJ$6U@6 Hyperlink >*B*ph@B@@ Body Text5>*\mH sH \C@"\ Body Text Indent!$ dh1$^a$DZ@2D Plain TextCJOJQJ^JaJ4@B4 Header  9r 4 @R4 Footer  9r `R@b` Body Text Indent 2!$ dh1$`a$.)@q. V' Page Number#Jc|48Qj$&?AZ\enopqr &?Xqtw &?X]}2 87543210$/.-,+*)('&% %& vurqponmlkjih]ZWVUTSRQPy##Jc|48Qj$&?AZ\enopqr &?Xqtw &?X]      !"#$%&'()*+,-./0123456789:;<=>?}2%&Z0p{ !"$%q ) *   5 > Z [ { |    "#$_Cc  cdpqLMtuNO79:;<=> ? '"("I"J"""y#z#$$R&S&q(r())******H++o,C--------..5.6.N.O.g.h..............// / /#/$/AE|: *>@q')h|~ 4 6 L ` b ~   O c e  + - > R T $8:?SU_su{<PRYmovCWYqo02o  *"+F+}2:::::::::::::::::::::::::::::::::::::::::::::X+68?AH!cwy|8LNQegj~&:<AUWr  !#&:<?SUXlnw  !#&:<?SU::::::::::::::::::::::::::::::::::::  z_\$2$ՙ=L]'2$J^ fWB2$O ]4~Cq^2$x]RsqϏ2$XV8_rw@2$;&,F]59/ǩ0͒2$Ijҥ޸X2$冤u.UQ;*X\U2$4yS 2$xIHyj &d2$RM(8m{bm2$̃ dWDϙ2$ :`Iު2$iEN 4l# 2$<|tW˳:852$j]hCJ#@2$xBWk @n2$XbmIѿwsO62$dg|\n/! B2$8=99Eǫ2$D[h1v :;P 2$\(ڞ4rN2$%hZh`|O2$FuP ?uӍOH2$q^T@`t YC2$;*Ra*w~NZڳ2$0 gUtd42$/3v$D#W~2$;]ïĐ_412$}Ŷ䅖^T <Ϲ2$V۵<ں 2$τ\p ljW@;(  :(  bh P @  # #" eTB   C DP  x   0 ̙P  x  0̙ @ Z PP  @ p TB  C DPP TB  C DPP l  c $̙f '  `  c $>1 T  C #P #T  C "Q "TB  c $D.TB  c $D-TB  c $D,TB  c $D+TB  c $D*TB  c $D)TB  c $D(TB  c $D'TB  c $D&n  3 #" %T2  C 2  B;ENGnXH%IfRQ̙ Ʀ7B;NDƦ7B;NDfR`T7B;NDfR`T@nn  3 #" $T2  C 2  B;ENGnXH%IfRQ̙ Ʀ7B;NDƦ7B;NDfR`T7B;NDfR`T@nn  3 #" #T2  C 2  B;ENGnXH%IfRQ̙ Ʀ7B;NDƦ7B;NDfR`T7B;NDfR`T@nn  3 #" "T2   C 2   B;ENGnXH%IfRQ̙ Ʀ7B;NDƦ7B;NDfR`T7B;NDfR`T@nn   3 #" !T2   C 2   B;ENGnXH%IfRQ̙ Ʀ7B;NDƦ7B;NDfR`T7B;NDfR`T@nn  3 #"  T2  C 2  B;ENGnXH%IfRQ̙ Ʀ7B;NDƦ7B;NDfR`T7B;NDfR`T@nTB  c $DTB  c $DTB  c $Df2  s *!  !`  0A  ??f2  s * `  0A ??TB  c $D TB  c $D TB  c $DTB  c $D TB  c $D `  c $ r   6 ̙ TB ! c $D ` % 0%A ?? ` & 0&A! ?? ` ' 0'A ?? ` ( 0(A ?? ` ) 0)A ??` * 0*A ??` + 0+A ??` , 0,A ??` - 0-A ??r . 6.̙ f / s * /̙   r 0 6 0̙  ` 1 01A$  ??` 2 02A  ?? ` 3 03A" ??0` 4 04A ?? ` 5 05A ?? Rn "h# 63 #" /l 7 07A ?>?"~U# ` 8 C 8-"h# ZB = s *DjJcZB > s *DjJ` ZB ? s *DjJ_ ZB @ s *DjJ^ ZB A s *DjJ] T P p0  B# XZ2 C S jJP p0  D BCDE4F̙jJ  0@xP`px @    @ @ T P p0  E# WZ2 F S jJP p0  G BCDE4F̙jJ  0@xP`px @    @ @ T P p0  H# VZ2 I S jJP p0  J BCDE4F̙jJ  0@xP`px @    @ @ T P p0  K# UZ2 L S jJP p0  M BCDE4F̙jJ  0@xP`px @    @ @ ` N 0̙jJS` O 0̙jJRl P 0>P̙jJT >f Q 6QA =?jJ?jJ?x h <4h̙jJ> 4l i 03i̙jJ8 3f j 6jA 2?jJ?;f k 6kA 1?jJ?:f l 6lA 0?jJ?Mf m 6mA /?jJ?Nf n 6nA .?jJ?Df o 6oA -?jJ?Cf p 6pA ,?jJ?Kf q 6qA +?jJ?Ll r 0*r̙jJ9 *ZB s s *DjJ5ZB t s *DjJ4f u 6uA )?jJ?3f v 6vA (?jJ?2T y C ?yd ?`  0A% @??B S  ?o` !" # $     "     7}2J4'ur4) i14*94,"J4E.#t. tt\Rt5 Rt/= t5M x&[ 44 # 42> !  41 f 40rst.3 t-!  4+lp4(/S 4&_h4%|hc4!//t Dt>,!tEtEtl lt tF tF0tFtt \_"t"$t ttt#i t]"ri ti ttT3i ti t i t re t e tKe KYt6Hyt3hAl4rBtv ^tu& ztt]u]tsutYfH t\ HJ ti}!tr|OtkxtjxtZ9t]q=9thhRtgJ tfftb,I  taI to$<xtn Gte td   tc |n t`B|  t_ t^, tp tq[tl[tmtVMtugtM"tO!?tNU1 tP(:# tK[otH[tE [ tBA[tT!!ItS&ztRL& ztQ&ztAt@,t?[t> tUs7tW*t=ty*5t u ^t OLE_LINK1.~2.~2 'V?'V'Vg!'VI'V,'V 'V!'Vt"'V#'Vi!^^ht++~2  $$gs~~++~2 8*urn:schemas-microsoft-com:office:smarttagsCity=*urn:schemas-microsoft-com:office:smarttags PlaceType= *urn:schemas-microsoft-com:office:smarttags PlaceName9 *urn:schemas-microsoft-com:office:smarttagsplace    os,07;WYL c  0;MWX[/@t!!$$$$% %b%j%&&))**++t,w,---~2 moq*h 7 L c ~ # * / O f  . 5 7 > U [ ` qy#$;?V\^_v{suCZchX\7#<#''----..0292~233333333333333333333333333q*h 7 L c ~ O f  . 1 5 > U V [ | $;?V_v{CZ("J"**-------....../ ////06080?0w0z0D1E1G1H1+2.202:2~2---~2User1User1User1User1User1User1User1User1User1hkpu zY4?xZœtpXmo ؘV^u DN.&6zU)Fr.>c!$&5@!Tj#f$CvSN1^ :}Bi{AR }A: AAeTmBc!V^u isO ZU }Ao`mo5@!;xj#wnHtpo,^8Ip*]an]zmB PzomSN1 l @hOJQJ^Jo( @hOJQJ^Jo( @                                           f        Ͷ*                          @                 |L        @                 f                                                                               8        N"&                          CV'&BHTCY6chjnt8z23yKIsy+ n:D@++A$++}2`@UnknownGz Times New Roman5Symbol3& z Arial?5 z Courier NewC .PMingLiUe0}fԚ;Wingdings"Ahlx&xFxFF&R&R!xx2dv-v- 3QH(?$THE HONG KONG POLYTECHNIC UNIVERSITYdemohkpu                           rdDocWord.Document.89q