Example #2: Factorial Independent Groups Design. A data set was created using summary data presented by Wicherts, Dolan and

Size: px
Start display at page:

Download "Example #2: Factorial Independent Groups Design. A data set was created using summary data presented by Wicherts, Dolan and"

Transcription

1 Example #2: Factorial Independent Groups Design A data set was created using summary data presented by Wicherts, Dolan and Hessen (2005). These authors examined the effects of stereotype threat on women s mathematics ability. Study participants were assigned to one of six groups defined by crossing the independent factors of test condition (J: control, nullified, stereotype threat) and sex (K: male, female). There were four different tests administered to study participants (arithmetic, number series, word problems, and sums tests); we focus here on scores for the arithmetic test (out of 40) because these scores exhibited a greater magnitude of variance heterogeneity than scores for the other tests. This is an unbalanced design with cell sizes ranging from 45 to 50 participants, and a total sample size of 283. The following sample program code illustrates how the WJGLM program is used to conduct omnibus tests of the interaction and main effects: y={10, 10, 16, 20, 35, 13, 12, 0, 17, 9, 10, 14, 5, 12, 16, 10, 23, 20, 22, 7, 1, 17, 7, 9, 10, 7, 19, 1, 40, 9, 7, 2, 9, 14, 36, 12, 15, 23, 18, 25, 40, 13, 24, 13, 9, 17, 18, 40, 9, 9, 28, 10, 5, 13, 13, 10, 10, 12, 11, 16, 10, 16, 19, 19, 17, 15, 21, 4, 17, 23, 11, 11, 13, 20, 13, 9, 16, 14, 18, 9, 6, 6, 25, 8, 12, 12, 3, 4, 32, 18, 16, 12, 13, 14, 22, 19, 13, 11, 17, 40, 20, 17, 15, 20, 16, 6, 11, 15, 13, 26, 14, 29, 13, 32, 12, 6, 39, 9, 17, 11, 11, 27, 18, 17, 10, 7, 13, 14, 18, 20, 13, 17, 13, 12, 11, 18, 18, 32, 18, 19, 20, 10, 18, 15, 11, 6, 18, 9, 14, 6, 10, 6, 8, 14, 7, 10, 11, 11, 9, 12, 13, 13, 14, 15, 13, 9, 12, 10, 37, 12, 10, 12, 23, 11, 14, 11, 11, 17, 12, 5, 19, 10, 10, 1, 13, 28, 15, 13, 21, 13, 11, 17, 9, 8, 8, 17, 15, 20, 8, 9, 9, 17, 8, 25, 20, 14, 9, 14, 8, 20, 11, 8, 16, 17, 10, 12, 12, 5, 6, 11, 30, 6, 11, 14, 30, 5, 12, 14, 4, 10, 13, 14, 8, 0, 13, 10, 10, 15, 13, 7, 20, 15, 12, 2, 8, 16, 6, 16, 0, 8, 40, 8, 9, 15, 10, 40, 0, 0, 7, 0, 36, 15, 12, 17, 20, 12, 12, 5, 15, 2, 1, 35, 4, 8, 40, 9, 0, 0, 14, 4, 40, 5, 1}; nx = { }; cj={1 0-1, 0 1-1}; c=cj@ck; print 'Test Of Interaction Effect - ADF Solution'; opt1=0; 1

2 cj={1 0-1, 0 1-1}; ik={1 1}; c=cj@ik; print 'Test Of Condition Main Effect - ADF Solution'; opt1=0; ij={1 1 1}; c=ij@ck; print 'Test Of Sex Main Effect - ADF Solution'; opt1=0; cj={1 0-1, 0 1-1}; c=cj@ck; print 'Test Of Interaction Effect - ADF Solution With Trimming'; cj={1 0-1, 0 1-1}; ik={1 1}; c=cj@ik; print 'Test Of Condition Main Effect - ADF Solution With Trimming'; ij={1 1 1}; c=ij@ck; print 'Test Of Sex Main Effect - ADF Solution With Trimming'; 2

3 cj={1 0-1, 0 1-1}; c=cj@ck; print 'Test Of Interaction Effect - ADF Solution With Trimming & Bootstrap'; opt2=1; seed=651332; cj={1 0-1, 0 1-1}; ik={1 1}; c=cj@ik; print 'Test Of Condition Main Effect - ADF Solution With Trimming & Bootstrap'; opt2=1; seed=651332; ij={1 1 1}; c=ij@ck; print 'Test Of Sex Main Effect - ADF Solution With Trimming & Bootstrap'; opt2=1; seed=651332; The first two SAS/IML statements define the dataset and the number of observations in each group. The order of entry for Y and NX must correspond, so that the first n 11 rows of Y correspond to the sample size for the first cell of the design, the next n 12 rows of Y correspond to the sample size for the second cell of the design, and so on. The data for males in the control condition are entered first, followed by the data for females in the control condition, then males in the nullified condition, females in the nullified condition, and so on. As in the one-way example, the commas used to separate the 3

4 individual data points serve to delineate the rows of Y, so that Y is a column vector with 283 elements. p={10, 10, 16, 20, 35, 13, 12, 0, 17, 9, 10, 14, 5, 12, 16, 10, 23, 20, 22, 7, 1, 17, 7, 9, 10, 7, 19, 1, 40, 9, 7, 2, 9, 14, 36, 12, 15, 23, 18, 25, 40, 13, 24, 13, 9, 17, 18, 40, 9, 9, 28, 10, 5, 13, 13, 10, 10, 12, 11, 16, 10, 16, 19, 19, 17, 15, 21, 4, 17, 23, 11, 11, 13, 20, 13, 9, 16, 14, 18, 9, 6, 6, 25, 8, 12, 12, 3, 4, 32, 18, 16, 12, 13, 14, 22, 19, 13, 11, 17, 40, 20, 17, 15, 20, 16, 6, 11, 15, 13, 26, 14, 29, 13, 32, 12, 6, 39, 9, 17, 11, 11, 27, 18, 17, 10, 7, 13, 14, 18, 20, 13, 17, 13, 12, 11, 18, 18, 32, 18, 19, 20, 10, 18, 15, 11, 6, 18, 9, 14, 6, 10, 6, 8, 14, 7, 10, 11, 11, 9, 12, 13, 13, 14, 15, 13, 9, 12, 10, 37, 12, 10, 12, 23, 11, 14, 11, 11, 17, 12, 5, 19, 10, 10, 1, 13, 28, 15, 13, 21, 13, 11, 17, 9, 8, 8, 17, 15, 20, 8, 9, 9, 17, 8, 25, 20, 14, 9, 14, 8, 20, 11, 8, 16, 17, 10, 12, 12, 5, 6, 11, 30, 6, 11, 14, 30, 5, 12, 14, 4, 10, 13, 14, 8, 0, 13, 10, 10, 15, 13, 7, 20, 15, 12, 2, 8, 16, 6, 16, 0, 8, 40, 8, 9, 15, 10, 40, 0, 0, 7, 0, 36, 15, 12, 17, 20, 12, 12, 5, 15, 2, 1, 35, 4, 8, 40, 9, 0, 0, 14, 4, 40, 5, 1}; nx = { }; C is defined as the Kronecker (i.e., direct) product of two matrices; one for the condition effect, and one for the sex effect. To test the interaction effect, C is a Kronecker product of CJ and CK, each of which defines linearly independent contrasts among the between-subjects factor levels. To test the condition main effect, C is a Kronecker product of CJ, which defines linear contrasts among the conditions and an indicator matrix that sums the levels of sex. A similar syntax is used to define the contrast matrices to test the sex main effect. If C J is a matrix of dimension (J 1) x J and C K is a matrix of dimension (K 1) x K, then the Kronecker product is defined as C J C K = c C c 11 K 1J K c C c C C (J-1)1 K (J-1)J K. The program code to test the interaction and main effects adopts the default options for trimming (20% symmetric trimming) and bootstrapping (999 bootstrap samples). A 4

5 starting seed for the bootstrap has been specified to ensure reproducibility of results. Once a seed has been specified, it is not necessary to specify another seed for subsequent invocations of RUN WJGLM or RUN BOOTCOM, unless a QUIT statement is specified. The means and SEs for both the least squares and trimmed solutions are reported in Table 2. The following results are obtained for the test of the interaction effect when least-squares estimators were adopted: T WJ /c = 2.52 with 2 and df (p =.0837). When robust estimators were adopted the corresponding values are T /c = 3.13, with WJt 2 and df (p =.0483). When the bootstrap is used, p = Table 2: Means and SEs for least-squares and trimmed estimators (20% symmetric trimming) for a factorial independent groups design Leastsquares mean Leastsquares SE Trimmed mean Winsorized SE Control men Control women Nullified men Nullified women Stereotype threat men Stereotype threat women /c T WJ For the marginal main effect of condition when least-squares estimators are used, = 2.15, with 2 and df (p =.1199). When trimming is used, T /c = 5.21, with 2 and df (p =.0072). When the bootstrap is applied to the trimmed data the p-value is For the condition effect, trimming produces significant results, while results based on least-squares estimators do not. For the marginal main effect of sex WJt 5

6 when least-squares estimators are adopted, T WJ /c = 2.93 with 1 and df (p =.0882). For the trimmed data, T /c = 5.75, with 1 and df (p =.0179). When the WJt bootstrap is adopted, p = Hence for the sex effect, the test based on trimming produces significant results, while the test based on least-squares estimators does not. Given that the interaction between condition and sex is statistically significant when robust estimators are adopted, one might wish to probe this interaction using a series of tetrad (i.e., interaction) contrasts. SAS code to produce all possible tetrad contrasts when robust estimators are adopted is given below: cjj={1-1 0}; print 'Interaction Contrast for J1 Vs J2 and K1 Vs K2 - ADF Solution With Trimming'; cjj={1 0-1}; print 'Interaction Contrast for J1 Vs J3 and K1 Vs K2 - ADF Solution With Trimming'; cjj={0 1-1}; print 'Interaction Contrast for J2 Vs J3 and K1 Vs K2- ADF Solution With Trimming'; 6

7 The SAS code to produce and test all three tetrad contrasts when robust estimators and the bootstrap are adopted and the FWER is controlled at α =.05 is: cjj={1-1 0, 1 0-1, 0 1-1}; print 'Interaction Contrasts - ADF Solution With Trimming & Bootstrap'; opt2=1; run bootcom; The following results are obtained when each of the tetrad contrasts is conducted (with robust estimators): K1 vs K2 and J1 vs J2: T /c = 5.77 with 1 and df (p =.0184); K1 vs K2 and J1 vs J3: = 0.47 with 1 and df (p =.4964); K1 vs K2 and J2 vs J3: T /c =1.98 with 1 and df (p =.1628). Applying Hochberg's step-up WJt T WJt/c Bonferroni procedure (See Keselman, 1998; Keselman et al., 2004), only the first contrast is statistically significant. For the ADF solution with trimming and bootstrapping, the critical value is 5.46; the first tetrad contrast is also statistically significant. WJt SAS code to product ES estimates for tetrad contrasts when the default standardizer is used (i.e., the cell corresponding to the first level of condition and the first level of sex) is as follows (a scaling factor is always adopted): cjj={1-1 0}; print 'Effect Size For J1 Vs J2 And K1 Vs K2 - ADF Solution With Trimming'; opt3=1; cjj={1 0-1}; 7

8 print Effect Size For J1 Vs J3 And K1 Vs K2 - ADF Solution With Trimming'; opt3=1; cjj={0 1-1}; print Effect Size For J2 Vs J3 And K1 Vs K2 - ADF Solution With Trimming'; opt3=1; The ES estimates and their 95% CIs are as follows: (-1.23, -0.06), (-0.85, 0.40), and 0.37 (-0.12, 0.96). If the square root of the average of the variances were used to compute the ES estimates and their confidence intervals instead of a single cell of the design, the following results would be obtained: (-1.41, -0.09), (-0.83, 0.44), and 0.46 (-0.19, 1.07). Suppose we are interested in testing a contrast of J1 and J2 (control/nullified) versus J3 (stereotype threat), collapsing over sex. Either of the following code fragments could be used: or cjj={1 1-2}; ckk={1 1}; print 'Effect Size For J1 and J2 Vs J3 - ADF Solution With Trimming'; cjj={.5.5-1}; ckk={.5.5}; 8

9 print 'Effect Size For J1 and J2 Vs J3 - ADF Solution With Trimming'; The contrast vectors would be c cjj k = [ ] c k = , andc = cjj ck k = [ ], for the two programs, respectively. Because the second contrast vector is a.25 times the first, both code fragments would yield the same test statistic. Now suppose we want to construct a CI relevant to the comparison of J1 and J2 (control/nullified) versus J3 (stereotype threat). Changing opt3=0 to opt3=1 in either code fragment will produce an ES and a CI, but both will vary across the two programs. One must carefully choose the contrast coefficient values for computing the ES estimate for marginal effects. The correct approach is cjj={.5.5-1}; ckk={.5.5}; print 'Effect Size For J1 and J2 Vs J3 - ADF Solution With Trimming'; opt3=1 Here c = [ ], producing an ES that is the comparison of the average of the marginal mean for J1 (the average of the means for males and females under J1) and the marginal mean for J2 versus the marginal men for J3. By contrast if we used cjj={1 1-2}; ckk={1 1}; 9

10 print 'Effect Size For J1 and J2 Vs J3 - ADF Solution With Trimming'; opt3=1; c = [ ] and would produce an effect size for a contrast of the average of the marginal sum for J1 (the sum of the means for males and females under J1) and the marginal sum for J2 versus the marginal sum for J3. Finally, a QUIT statement would be specified at the end of all programming statements, to finish the program. 10

11 Reference Wicherts, J.M., Dolan, C.V., & Hessen, D.J. (2005). Stereotype threat and group differences in test performance: a question of measurement invariance. Journal of Personality and Social Psychology, 89, 5,

8.6 Jonckheere-Terpstra Test for Ordered Alternatives. 6.5 Jonckheere-Terpstra Test for Ordered Alternatives

8.6 Jonckheere-Terpstra Test for Ordered Alternatives. 6.5 Jonckheere-Terpstra Test for Ordered Alternatives 8.6 Jonckheere-Terpstra Test for Ordered Alternatives 6.5 Jonckheere-Terpstra Test for Ordered Alternatives 136 183 184 137 138 185 Jonckheere-Terpstra Test Example 186 139 Jonckheere-Terpstra Test Example

More information

Lesson Sampling Distribution of Differences of Two Proportions

Lesson Sampling Distribution of Differences of Two Proportions STATWAY STUDENT HANDOUT STUDENT NAME DATE INTRODUCTION The GPS software company, TeleNav, recently commissioned a study on proportions of people who text while they drive. The study suggests that there

More information

Paper ST03. Variance Estimates for Census 2000 Using SAS/IML Software Peter P. Davis, U.S. Census Bureau, Washington, DC 1

Paper ST03. Variance Estimates for Census 2000 Using SAS/IML Software Peter P. Davis, U.S. Census Bureau, Washington, DC 1 Paper ST03 Variance Estimates for Census 000 Using SAS/IML Software Peter P. Davis, U.S. Census Bureau, Washington, DC ABSTRACT Large variance-covariance matrices are not uncommon in statistical data analysis.

More information

Permutation group and determinants. (Dated: September 19, 2018)

Permutation group and determinants. (Dated: September 19, 2018) Permutation group and determinants (Dated: September 19, 2018) 1 I. SYMMETRIES OF MANY-PARTICLE FUNCTIONS Since electrons are fermions, the electronic wave functions have to be antisymmetric. This chapter

More information

Two-Factor unbalanced experiment with factors of Power and Humidity Example compares LSmeans and means statement for unbalanced data

Two-Factor unbalanced experiment with factors of Power and Humidity Example compares LSmeans and means statement for unbalanced data STAT:5201 Anaylsis/Applied Statistic II (LSmeans vs. means) Two-Factor unbalanced experiment with factors of Power and Humidity Example compares LSmeans and means statement for unbalanced data Power (levels

More information

Sierra Leone - Multiple Indicator Cluster Survey 2017

Sierra Leone - Multiple Indicator Cluster Survey 2017 Microdata Library Sierra Leone - Multiple Indicator Cluster Survey 2017 Statistics Sierra Leone, United Nations Children s Fund Report generated on: September 27, 2018 Visit our data catalog at: http://microdata.worldbank.org

More information

Activity Sheet #1 Presentation #617, Annin/Aguayo,

Activity Sheet #1 Presentation #617, Annin/Aguayo, Activity Sheet #1 Presentation #617, Annin/Aguayo, Visualizing Patterns: Fibonacci Numbers and 1,000-Pointed Stars n = 5 n = 5 n = 6 n = 6 n = 7 n = 7 n = 8 n = 8 n = 8 n = 8 n = 10 n = 10 n = 10 n = 10

More information

Unit Nine Precalculus Practice Test Probability & Statistics. Name: Period: Date: NON-CALCULATOR SECTION

Unit Nine Precalculus Practice Test Probability & Statistics. Name: Period: Date: NON-CALCULATOR SECTION Name: Period: Date: NON-CALCULATOR SECTION Vocabulary: Define each word and give an example. 1. discrete mathematics 2. dependent outcomes 3. series Short Answer: 4. Describe when to use a combination.

More information

ESP 171 Urban and Regional Planning. Demographic Report. Due Tuesday, 5/10 at noon

ESP 171 Urban and Regional Planning. Demographic Report. Due Tuesday, 5/10 at noon ESP 171 Urban and Regional Planning Demographic Report Due Tuesday, 5/10 at noon Purpose The starting point for planning is an assessment of current conditions the answer to the question where are we now.

More information

Midterm Examination CS 534: Computational Photography

Midterm Examination CS 534: Computational Photography Midterm Examination CS 534: Computational Photography November 3, 2015 NAME: SOLUTIONS Problem Score Max Score 1 8 2 8 3 9 4 4 5 3 6 4 7 6 8 13 9 7 10 4 11 7 12 10 13 9 14 8 Total 100 1 1. [8] What are

More information

Attribute Based Specification, Comparison And Selection Of A Robot

Attribute Based Specification, Comparison And Selection Of A Robot Attribute Based Specification, Comparison And Selection Of A Robot P. P. Bhangale, V. P. Agrawal, S. K. Saha Dept. of Mechanical Engg., Indian Institute of Technology Delhi, Hauz Khas, New Delhi-006 ABSTRACT

More information

Permutation inference for the General Linear Model

Permutation inference for the General Linear Model Permutation inference for the General Linear Model Anderson M. Winkler fmrib Analysis Group 3.Sep.25 Winkler Permutation for the glm / 63 in jalapeno: winkler/bin/palm Winkler Permutation for the glm 2

More information

Syntax Menu Description Options Remarks and examples Stored results References Also see

Syntax Menu Description Options Remarks and examples Stored results References Also see Title stata.com permute Monte Carlo permutation tests Syntax Menu Description Options Remarks and examples Stored results References Also see Syntax Compute permutation test permute permvar exp list [,

More information

arxiv: v1 [math.ds] 30 Jul 2015

arxiv: v1 [math.ds] 30 Jul 2015 A Short Note on Nonlinear Games on a Grid arxiv:1507.08679v1 [math.ds] 30 Jul 2015 Stewart D. Johnson Department of Mathematics and Statistics Williams College, Williamstown, MA 01267 November 13, 2018

More information

SPREADING SEQUENCES SELECTION FOR UPLINK AND DOWNLINK MC-CDMA SYSTEMS

SPREADING SEQUENCES SELECTION FOR UPLINK AND DOWNLINK MC-CDMA SYSTEMS SPREADING SEQUENCES SELECTION FOR UPLINK AND DOWNLINK MC-CDMA SYSTEMS S. NOBILET, J-F. HELARD, D. MOTTIER INSA/ LCST avenue des Buttes de Coësmes, RENNES FRANCE Mitsubishi Electric ITE 8 avenue des Buttes

More information

Edge-disjoint tree representation of three tree degree sequences

Edge-disjoint tree representation of three tree degree sequences Edge-disjoint tree representation of three tree degree sequences Ian Min Gyu Seong Carleton College seongi@carleton.edu October 2, 208 Ian Min Gyu Seong (Carleton College) Trees October 2, 208 / 65 Trees

More information

Guyana - Multiple Indicator Cluster Survey 2014

Guyana - Multiple Indicator Cluster Survey 2014 Microdata Library Guyana - Multiple Indicator Cluster Survey 2014 United Nations Children s Fund, Guyana Bureau of Statistics, Guyana Ministry of Public Health Report generated on: December 1, 2016 Visit

More information

Suggested Solutions to Examination SSY130 Applied Signal Processing

Suggested Solutions to Examination SSY130 Applied Signal Processing Suggested Solutions to Examination SSY13 Applied Signal Processing 1:-18:, April 8, 1 Instructions Responsible teacher: Tomas McKelvey, ph 81. Teacher will visit the site of examination at 1:5 and 1:.

More information

ANALYSIS OF VARIANCE PROCEDURE FOR ANALYZING UNBALANCED DAIRY SCIENCE DATA USING SAS

ANALYSIS OF VARIANCE PROCEDURE FOR ANALYZING UNBALANCED DAIRY SCIENCE DATA USING SAS ANALYSIS OF VARIANCE PROCEDURE FOR ANALYZING UNBALANCED DAIRY SCIENCE DATA USING SAS Avtar Singh National Dairy Research Institute, Karnal -132001 In statistics, analysis of variance (ANOVA) is a collection

More information

JIGSAW ACTIVITY, TASK # Make sure your answer in written in the correct order. Highest powers of x should come first, down to the lowest powers.

JIGSAW ACTIVITY, TASK # Make sure your answer in written in the correct order. Highest powers of x should come first, down to the lowest powers. JIGSAW ACTIVITY, TASK #1 Your job is to multiply and find all the terms in ( 1) Recall that this means ( + 1)( + 1)( + 1)( + 1) Start by multiplying: ( + 1)( + 1) x x x x. x. + 4 x x. Write your answer

More information

If a word starts with a vowel, add yay on to the end of the word, e.g. engineering becomes engineeringyay

If a word starts with a vowel, add yay on to the end of the word, e.g. engineering becomes engineeringyay ENGR 102-213 - Socolofsky Engineering Lab I - Computation Lab Assignment #07b Working with Array-Like Data Date : due 10/15/2018 at 12:40 p.m. Return your solution (one per group) as outlined in the activities

More information

Chapter 19. Inference about a Population Proportion. BPS - 5th Ed. Chapter 19 1

Chapter 19. Inference about a Population Proportion. BPS - 5th Ed. Chapter 19 1 Chapter 19 Inference about a Population Proportion BPS - 5th Ed. Chapter 19 1 Proportions The proportion of a population that has some outcome ( success ) is p. The proportion of successes in a sample

More information

proc plot; plot Mean_Illness*Dose=Dose; run;

proc plot; plot Mean_Illness*Dose=Dose; run; options pageno=min nodate formdlim='-'; Title 'Illness Related to Dose of Therapeutic Drug'; run; data Lotus; input Dose N; Do I=1 to N; Input Illness @@; output; end; cards; 0 20 101 101 101 104 104 105

More information

Proceedings of the Annual Meeting of the American Statistical Association, August 5-9, 2001

Proceedings of the Annual Meeting of the American Statistical Association, August 5-9, 2001 Proceedings of the Annual Meeting of the American Statistical Association, August 5-9, 2001 COVERAGE MEASUREMENT RESULTS FROM THE CENSUS 2000 ACCURACY AND COVERAGE EVALUATION SURVEY Dawn E. Haines and

More information

The number of mates of latin squares of sizes 7 and 8

The number of mates of latin squares of sizes 7 and 8 The number of mates of latin squares of sizes 7 and 8 Megan Bryant James Figler Roger Garcia Carl Mummert Yudishthisir Singh Working draft not for distribution December 17, 2012 Abstract We study the number

More information

Chapter 6 Introduction to Statistical Quality Control, 6 th Edition by Douglas C. Montgomery. Copyright (c) 2009 John Wiley & Sons, Inc.

Chapter 6 Introduction to Statistical Quality Control, 6 th Edition by Douglas C. Montgomery. Copyright (c) 2009 John Wiley & Sons, Inc. 1 2 Learning Objectives Chapter 6 Introduction to Statistical Quality Control, 6 th Edition by Douglas C. Montgomery. 3 4 5 Subgroup Data with Unknown μ and σ Chapter 6 Introduction to Statistical Quality

More information

Supplementary Figures

Supplementary Figures Supplementary Figures Supplementary Figure 1. The schematic of the perceptron. Here m is the index of a pixel of an input pattern and can be defined from 1 to 320, j represents the number of the output

More information

MATRIX SAMPLING DESIGNS FOR THE YEAR2000 CENSUS. Alfredo Navarro and Richard A. Griffin l Alfredo Navarro, Bureau of the Census, Washington DC 20233

MATRIX SAMPLING DESIGNS FOR THE YEAR2000 CENSUS. Alfredo Navarro and Richard A. Griffin l Alfredo Navarro, Bureau of the Census, Washington DC 20233 MATRIX SAMPLING DESIGNS FOR THE YEAR2000 CENSUS Alfredo Navarro and Richard A. Griffin l Alfredo Navarro, Bureau of the Census, Washington DC 20233 I. Introduction and Background Over the past fifty years,

More information

Repeated Measures Twoway Analysis of Variance

Repeated Measures Twoway Analysis of Variance Repeated Measures Twoway Analysis of Variance A researcher was interested in whether frequency of exposure to a picture of an ugly or attractive person would influence one's liking for the photograph.

More information

Digital Image Processing. Lecture # 6 Corner Detection & Color Processing

Digital Image Processing. Lecture # 6 Corner Detection & Color Processing Digital Image Processing Lecture # 6 Corner Detection & Color Processing 1 Corners Corners (interest points) Unlike edges, corners (patches of pixels surrounding the corner) do not necessarily correspond

More information

Learning objective Various Methods for finding initial solution to a transportation problem

Learning objective Various Methods for finding initial solution to a transportation problem Unit 1 Lesson 15: Methods of finding initial solution for a transportation problem. Learning objective Various Methods for finding initial solution to a transportation problem 1. North west corner method

More information

Realizing Strategies for winning games. Senior Project Presented by Tiffany Johnson Math 498 Fall 1999

Realizing Strategies for winning games. Senior Project Presented by Tiffany Johnson Math 498 Fall 1999 Realizing Strategies for winning games Senior Project Presented by Tiffany Johnson Math 498 Fall 1999 Outline of Project Briefly show how math relates to popular board games in playing surfaces & strategies

More information

Comparing Extreme Members is a Low-Power Method of Comparing Groups: An Example Using Sex Differences in Chess Performance

Comparing Extreme Members is a Low-Power Method of Comparing Groups: An Example Using Sex Differences in Chess Performance Comparing Extreme Members is a Low-Power Method of Comparing Groups: An Example Using Sex Differences in Chess Performance Mark E. Glickman, Ph.D. 1, 2 Christopher F. Chabris, Ph.D. 3 1 Center for Health

More information

DSP First. Laboratory Exercise #2. Introduction to Complex Exponentials

DSP First. Laboratory Exercise #2. Introduction to Complex Exponentials DSP First Laboratory Exercise #2 Introduction to Complex Exponentials The goal of this laboratory is gain familiarity with complex numbers and their use in representing sinusoidal signals as complex exponentials.

More information

Two Factor Full Factorial Design with Replications

Two Factor Full Factorial Design with Replications Two Factor Full Factorial Design with Replications Raj Jain Washington University in Saint Louis Saint Louis, MO 63130 Jain@cse.wustl.edu These slides are available on-line at: 22-1 Overview Model Computation

More information

Chapter 1. Statistics. Individuals and Variables. Basic Practice of Statistics - 3rd Edition. Chapter 1 1. Picturing Distributions with Graphs

Chapter 1. Statistics. Individuals and Variables. Basic Practice of Statistics - 3rd Edition. Chapter 1 1. Picturing Distributions with Graphs Chapter 1 Picturing Distributions with Graphs BPS - 3rd Ed. Chapter 1 1 Statistics Statistics is a science that involves the extraction of information from numerical data obtained during an experiment

More information

On the Peculiar Distribution of the U.S. Stock Indeces Digits

On the Peculiar Distribution of the U.S. Stock Indeces Digits On the Peculiar Distribution of the U.S. Stock Indeces Digits Eduardo Ley Resources for the Future, Washington DC Version: November 29, 1994 Abstract. Recent research has focused on studying the patterns

More information

BER PERFORMANCE AND OPTIMUM TRAINING STRATEGY FOR UNCODED SIMO AND ALAMOUTI SPACE-TIME BLOCK CODES WITH MMSE CHANNEL ESTIMATION

BER PERFORMANCE AND OPTIMUM TRAINING STRATEGY FOR UNCODED SIMO AND ALAMOUTI SPACE-TIME BLOCK CODES WITH MMSE CHANNEL ESTIMATION BER PERFORMANCE AND OPTIMUM TRAINING STRATEGY FOR UNCODED SIMO AND ALAMOUTI SPACE-TIME BLOC CODES WITH MMSE CHANNEL ESTIMATION Lennert Jacobs, Frederik Van Cauter, Frederik Simoens and Marc Moeneclaey

More information

Instruction Manual. Mark Deimund, Zuyi (Jacky) Huang, Juergen Hahn

Instruction Manual. Mark Deimund, Zuyi (Jacky) Huang, Juergen Hahn Instruction Manual Mark Deimund, Zuyi (Jacky) Huang, Juergen Hahn This manual is for the program that implements the image analysis method presented in our paper: Z. Huang, F. Senocak, A. Jayaraman, and

More information

NEGATIVE FOUR CORNER MAGIC SQUARES OF ORDER SIX WITH a BETWEEN 1 AND 5

NEGATIVE FOUR CORNER MAGIC SQUARES OF ORDER SIX WITH a BETWEEN 1 AND 5 NEGATIVE FOUR CORNER MAGIC SQUARES OF ORDER SIX WITH a BETWEEN 1 AND 5 S. Al-Ashhab Depratement of Mathematics Al-Albayt University Mafraq Jordan Email: ahhab@aabu.edu.jo Abstract: In this paper we introduce

More information

Chapter 25. One-Way Analysis of Variance: Comparing Several Means. BPS - 5th Ed. Chapter 24 1

Chapter 25. One-Way Analysis of Variance: Comparing Several Means. BPS - 5th Ed. Chapter 24 1 Chapter 25 One-Way Analysis of Variance: Comparing Several Means BPS - 5th Ed. Chapter 24 1 Comparing Means Chapter 18: compared the means of two populations or the mean responses to two treatments in

More information

1 Introduction. 2 An Easy Start. KenKen. Charlotte Teachers Institute, 2015

1 Introduction. 2 An Easy Start. KenKen. Charlotte Teachers Institute, 2015 1 Introduction R is a puzzle whose solution requires a combination of logic and simple arithmetic and combinatorial skills 1 The puzzles range in difficulty from very simple to incredibly difficult Students

More information

Name: Final Exam May 7, 2014

Name: Final Exam May 7, 2014 MATH 10120 Finite Mathematics Final Exam May 7, 2014 Name: Be sure that you have all 16 pages of the exam. The exam lasts for 2 hrs. There are 30 multiple choice questions, each worth 5 points. You may

More information

Game Theory. Problem data representing the situation are constant. They do not vary with respect to time or any other basis.

Game Theory. Problem data representing the situation are constant. They do not vary with respect to time or any other basis. Game Theory For effective decision making. Decision making is classified into 3 categories: o Deterministic Situation: o o Problem data representing the situation are constant. They do not vary with respect

More information

28,800 Extremely Magic 5 5 Squares Arthur Holshouser. Harold Reiter.

28,800 Extremely Magic 5 5 Squares Arthur Holshouser. Harold Reiter. 28,800 Extremely Magic 5 5 Squares Arthur Holshouser 3600 Bullard St. Charlotte, NC, USA Harold Reiter Department of Mathematics, University of North Carolina Charlotte, Charlotte, NC 28223, USA hbreiter@uncc.edu

More information

CS 445 HW#2 Solutions

CS 445 HW#2 Solutions 1. Text problem 3.1 CS 445 HW#2 Solutions (a) General form: problem figure,. For the condition shown in the Solving for K yields Then, (b) General form: the problem figure, as in (a) so For the condition

More information

3. Transportation Problem (Part 2)

3. Transportation Problem (Part 2) 3. Transportation Problem (Part 2) 3.6 Test IBFS for optimal solution or Examining the Initial Basic Feasible Solution for Non- Degeneracy. 3.7 Transportation Algorithm for Minimization Problem (MODI Method)

More information

December 12, FGCU Invitational Mathematics Competition Statistics Team

December 12, FGCU Invitational Mathematics Competition Statistics Team 1 Directions You will have 4 minutes to answer each question. The scoring will be 16 points for a correct response in the 1 st minute, 12 points for a correct response in the 2 nd minute, 8 points for

More information

SIGNAL MODEL AND PARAMETER ESTIMATION FOR COLOCATED MIMO RADAR

SIGNAL MODEL AND PARAMETER ESTIMATION FOR COLOCATED MIMO RADAR SIGNAL MODEL AND PARAMETER ESTIMATION FOR COLOCATED MIMO RADAR Moein Ahmadi*, Kamal Mohamed-pour K.N. Toosi University of Technology, Iran.*moein@ee.kntu.ac.ir, kmpour@kntu.ac.ir Keywords: Multiple-input

More information

Prices of digital cameras

Prices of digital cameras Prices of digital cameras The August 2012 issue of Consumer Reports included a report on digital cameras. The magazine listed 60 cameras, all of which were recommended by them, divided into six categories

More information

Lab P-3: Introduction to Complex Exponentials Direction Finding. zvect( [ 1+j, j, 3-4*j, exp(j*pi), exp(2j*pi/3) ] )

Lab P-3: Introduction to Complex Exponentials Direction Finding. zvect( [ 1+j, j, 3-4*j, exp(j*pi), exp(2j*pi/3) ] ) DSP First, 2e Signal Processing First Lab P-3: Introduction to Complex Exponentials Direction Finding Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment

More information

Presentation Overview. Bootstrapping from Game Tree Search. Game Tree Search. Heuristic Evaluation Function

Presentation Overview. Bootstrapping from Game Tree Search. Game Tree Search. Heuristic Evaluation Function Presentation Bootstrapping from Joel Veness David Silver Will Uther Alan Blair University of New South Wales NICTA University of Alberta A new algorithm will be presented for learning heuristic evaluation

More information

Mathematics (Project Maths Phase 2)

Mathematics (Project Maths Phase 2) 2011. M228S Coimisiún na Scrúduithe Stáit State Examinations Commission Leaving Certificate Examination, 2011 Sample Paper Mathematics (Project Maths Phase 2) Paper 2 Ordinary Level Time: 2 hours, 30 minutes

More information

Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 10: Electrical Circuits Due: 12 noon, Friday May 11, 2012

Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 10: Electrical Circuits Due: 12 noon, Friday May 11, 2012 Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 10: Electrical Circuits Due: 12 noon, Friday May 11, 2012 I. Problem Statement Figure 1. Electric circuit The electric

More information

Latin Squares for Elementary and Middle Grades

Latin Squares for Elementary and Middle Grades Latin Squares for Elementary and Middle Grades Yul Inn Fun Math Club email: Yul.Inn@FunMathClub.com web: www.funmathclub.com Abstract: A Latin square is a simple combinatorial object that arises in many

More information

Handling Search Inconsistencies in MTD(f)

Handling Search Inconsistencies in MTD(f) Handling Search Inconsistencies in MTD(f) Jan-Jaap van Horssen 1 February 2018 Abstract Search inconsistencies (or search instability) caused by the use of a transposition table (TT) constitute a well-known

More information

EXST 7037 Multivariate Analysis Factor Analysis (SASy version) Page 1

EXST 7037 Multivariate Analysis Factor Analysis (SASy version) Page 1 EXST 7037 Multivariate Analysis Factor Analysis (SASy version) Page 1 1 *** CH05SD ***; 2 *****************************************************************************; 3 *** The Second International Math

More information

Week 1. 1 What Is Combinatorics?

Week 1. 1 What Is Combinatorics? 1 What Is Combinatorics? Week 1 The question that what is combinatorics is similar to the question that what is mathematics. If we say that mathematics is about the study of numbers and figures, then combinatorics

More information

Lab/Project Error Control Coding using LDPC Codes and HARQ

Lab/Project Error Control Coding using LDPC Codes and HARQ Linköping University Campus Norrköping Department of Science and Technology Erik Bergfeldt TNE066 Telecommunications Lab/Project Error Control Coding using LDPC Codes and HARQ Error control coding is an

More information

Introduction to DSP ECE-S352 Fall Quarter 2000 Matlab Project 1

Introduction to DSP ECE-S352 Fall Quarter 2000 Matlab Project 1 Objective: Introduction to DSP ECE-S352 Fall Quarter 2000 Matlab Project 1 This Matlab Project is an extension of the basic correlation theory presented in the course. It shows a practical application

More information

Poverty in the United Way Service Area

Poverty in the United Way Service Area Poverty in the United Way Service Area Year 2 Update 2012 The Institute for Urban Policy Research At The University of Texas at Dallas Poverty in the United Way Service Area Year 2 Update 2012 Introduction

More information

Removal of ocular artifacts from EEG signals using adaptive threshold PCA and Wavelet transforms

Removal of ocular artifacts from EEG signals using adaptive threshold PCA and Wavelet transforms Available online at www.interscience.in Removal of ocular artifacts from s using adaptive threshold PCA and Wavelet transforms P. Ashok Babu 1, K.V.S.V.R.Prasad 2 1 Narsimha Reddy Engineering College,

More information

NCSS Statistical Software

NCSS Statistical Software Chapter 147 Introduction A mosaic plot is a graphical display of the cell frequencies of a contingency table in which the area of boxes of the plot are proportional to the cell frequencies of the contingency

More information

Easy Games and Hard Games

Easy Games and Hard Games Easy Games and Hard Games Igor Minevich April 30, 2014 Outline 1 Lights Out Puzzle 2 NP Completeness 3 Sokoban 4 Timeline 5 Mancala Original Lights Out Puzzle There is an m n grid of lamps that can be

More information

FREDRIK TUFVESSON ELECTRICAL AND INFORMATION TECHNOLOGY

FREDRIK TUFVESSON ELECTRICAL AND INFORMATION TECHNOLOGY 1 Information Transmission Chapter 5, Block codes FREDRIK TUFVESSON ELECTRICAL AND INFORMATION TECHNOLOGY 2 Methods of channel coding For channel coding (error correction) we have two main classes of codes,

More information

Signals and Systems Lecture 9 Communication Systems Frequency-Division Multiplexing and Frequency Modulation (FM)

Signals and Systems Lecture 9 Communication Systems Frequency-Division Multiplexing and Frequency Modulation (FM) Signals and Systems Lecture 9 Communication Systems Frequency-Division Multiplexing and Frequency Modulation (FM) April 11, 2008 Today s Topics 1. Frequency-division multiplexing 2. Frequency modulation

More information

Solutions to Odd-Numbered End-of-Chapter Exercises: Chapter 13

Solutions to Odd-Numbered End-of-Chapter Exercises: Chapter 13 Introduction to Econometrics (3 rd Updated Edition by James H. Stock and Mark W. Watson Solutions to Odd-Numbered End-of-Chapter Exercises: Chapter 13 (This version July 0, 014 Stock/Watson - Introduction

More information

Nigeria - Multiple Indicator Cluster Survey

Nigeria - Multiple Indicator Cluster Survey Microdata Library Nigeria - Multiple Indicator Cluster Survey 2016-2017 National Bureau of Statistics of Nigeria, United Nations Children s Fund Report generated on: May 1, 2018 Visit our data catalog

More information

Using KenKen to Build Reasoning Skills 1

Using KenKen to Build Reasoning Skills 1 1 INTRODUCTION Using KenKen to Build Reasoning Skills 1 Harold Reiter Department of Mathematics, University of North Carolina Charlotte, Charlotte, NC 28223, USA hbreiter@email.uncc.edu John Thornton Charlotte,

More information

Signal Processing First Lab 02: Introduction to Complex Exponentials Direction Finding. x(t) = A cos(ωt + φ) = Re{Ae jφ e jωt }

Signal Processing First Lab 02: Introduction to Complex Exponentials Direction Finding. x(t) = A cos(ωt + φ) = Re{Ae jφ e jωt } Signal Processing First Lab 02: Introduction to Complex Exponentials Direction Finding Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over

More information

CHAPTER LEARNING OUTCOMES. By the end of this section, students will be able to:

CHAPTER LEARNING OUTCOMES. By the end of this section, students will be able to: CHAPTER 4 4.1 LEARNING OUTCOMES By the end of this section, students will be able to: Understand what is meant by a Bayesian Nash Equilibrium (BNE) Calculate the BNE in a Cournot game with incomplete information

More information

Signal Processing First Lab 02: Introduction to Complex Exponentials Multipath. x(t) = A cos(ωt + φ) = Re{Ae jφ e jωt }

Signal Processing First Lab 02: Introduction to Complex Exponentials Multipath. x(t) = A cos(ωt + φ) = Re{Ae jφ e jωt } Signal Processing First Lab 02: Introduction to Complex Exponentials Multipath Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over all exercises

More information

Multiresolution Analysis of Connectivity

Multiresolution Analysis of Connectivity Multiresolution Analysis of Connectivity Atul Sajjanhar 1, Guojun Lu 2, Dengsheng Zhang 2, Tian Qi 3 1 School of Information Technology Deakin University 221 Burwood Highway Burwood, VIC 3125 Australia

More information

15-388/688 - Practical Data Science: Visualization and Data Exploration. J. Zico Kolter Carnegie Mellon University Spring 2018

15-388/688 - Practical Data Science: Visualization and Data Exploration. J. Zico Kolter Carnegie Mellon University Spring 2018 15-388/688 - Practical Data Science: Visualization and Data Exploration J. Zico Kolter Carnegie Mellon University Spring 2018 1 Outline Basics of visualization Data types and visualization types Software

More information

INDIAN STATISTICAL INSTITUTE

INDIAN STATISTICAL INSTITUTE INDIAN STATISTICAL INSTITUTE B1/BVR Probability Home Assignment 1 20-07-07 1. A poker hand means a set of five cards selected at random from usual deck of playing cards. (a) Find the probability that it

More information

Distribution of Aces Among Dealt Hands

Distribution of Aces Among Dealt Hands Distribution of Aces Among Dealt Hands Brian Alspach 3 March 05 Abstract We provide details of the computations for the distribution of aces among nine and ten hold em hands. There are 4 aces and non-aces

More information

37 Game Theory. Bebe b1 b2 b3. a Abe a a A Two-Person Zero-Sum Game

37 Game Theory. Bebe b1 b2 b3. a Abe a a A Two-Person Zero-Sum Game 37 Game Theory Game theory is one of the most interesting topics of discrete mathematics. The principal theorem of game theory is sublime and wonderful. We will merely assume this theorem and use it to

More information

How Many Imputations are Really Needed? Some Practical Clarifications of Multiple Imputation Theory

How Many Imputations are Really Needed? Some Practical Clarifications of Multiple Imputation Theory Prev Sci (2007) 8:206 213 DOI 10.1007/s11121-007-0070-9 How Many Imputations are Really Needed? Some Practical Clarifications of Multiple Imputation Theory John W. Graham & Allison E. Olchowski & Tamika

More information

The Symmetric Traveling Salesman Problem by Howard Kleiman

The Symmetric Traveling Salesman Problem by Howard Kleiman I. INTRODUCTION The Symmetric Traveling Salesman Problem by Howard Kleiman Let M be an nxn symmetric cost matrix where n is even. We present an algorithm that extends the concept of admissible permutation

More information

Lecture 23. Offense vs. Defense & Dynamic Games

Lecture 23. Offense vs. Defense & Dynamic Games Lecture 3. Offense vs. Defense & Dynamic Games EC DD & EE / Manove Offense vs Defense p EC DD & EE / Manove Clicker Question p Using Game Theory to Analyze Offense versus Defense In many competitive situations

More information

Community Detection and Labeling Nodes

Community Detection and Labeling Nodes and Labeling Nodes Hao Chen Department of Statistics, Stanford Jan. 25, 2011 (Department of Statistics, Stanford) Community Detection and Labeling Nodes Jan. 25, 2011 1 / 9 Community Detection - Network:

More information

Summary Overview of Topics in Econ 30200b: Decision theory: strong and weak domination by randomized strategies, domination theorem, expected utility

Summary Overview of Topics in Econ 30200b: Decision theory: strong and weak domination by randomized strategies, domination theorem, expected utility Summary Overview of Topics in Econ 30200b: Decision theory: strong and weak domination by randomized strategies, domination theorem, expected utility theorem (consistent decisions under uncertainty should

More information

A1 = Chess A2 = Non-Chess B1 = Male B2 = Female

A1 = Chess A2 = Non-Chess B1 = Male B2 = Female Chapter IV 4.0Analysis And Interpretation Of The Data In this chapter, the analysis of the data of two hundred chess and non chess players of Hyderabad has been analysed.for this study 200 samples were

More information

How to Improve OFDM-like Data Estimation by Using Weighted Overlapping

How to Improve OFDM-like Data Estimation by Using Weighted Overlapping How to Improve OFDM-like Estimation by Using Weighted Overlapping C. Vincent Sinn, Telecommunications Laboratory University of Sydney, Australia, cvsinn@ee.usyd.edu.au Klaus Hueske, Information Processing

More information

Bootstrapping from Game Tree Search

Bootstrapping from Game Tree Search Joel Veness David Silver Will Uther Alan Blair University of New South Wales NICTA University of Alberta December 9, 2009 Presentation Overview Introduction Overview Game Tree Search Evaluation Functions

More information

Lao PDR - Multiple Indicator Cluster Survey 2006

Lao PDR - Multiple Indicator Cluster Survey 2006 Microdata Library Lao PDR - Multiple Indicator Cluster Survey 2006 Department of Statistics - Ministry of Planning and Investment, Hygiene and Prevention Department - Ministry of Health, United Nations

More information

Scenario 5: Family Structure

Scenario 5: Family Structure Scenario 5: Family Structure Because human infants require the long term care and nurturing of adults before they can fend for themselves in often hostile environments, the family in some identifiable

More information

Multiple Input Multiple Output (MIMO) Operation Principles

Multiple Input Multiple Output (MIMO) Operation Principles Afriyie Abraham Kwabena Multiple Input Multiple Output (MIMO) Operation Principles Helsinki Metropolia University of Applied Sciences Bachlor of Engineering Information Technology Thesis June 0 Abstract

More information

Package twilight. February 15, 2018

Package twilight. February 15, 2018 Version 1.55.0 Title Estimation of local false discovery rate Package twilight February 15, 2018 Author Stefanie Scheid In a typical microarray setting with gene expression data

More information

Assignment Problem. Introduction. Formulation of an assignment problem

Assignment Problem. Introduction. Formulation of an assignment problem Assignment Problem Introduction The assignment problem is a special type of transportation problem, where the objective is to minimize the cost or time of completing a number of jobs by a number of persons.

More information

Determinants, Part 1

Determinants, Part 1 Determinants, Part We shall start with some redundant definitions. Definition. Given a matrix A [ a] we say that determinant of A is det A a. Definition 2. Given a matrix a a a 2 A we say that determinant

More information

Array-Based Statistical Analysis of the MK-3 Authenticated Encryption Scheme. P. Bajorski, A. Kaminsky, M. Kurdziel, M. Łukowiak, S.

Array-Based Statistical Analysis of the MK-3 Authenticated Encryption Scheme. P. Bajorski, A. Kaminsky, M. Kurdziel, M. Łukowiak, S. Array-Based Statistical Analysis of the MK-3 Authenticated Encryption Scheme P. Bajorski, A. Kaminsky, M. Kurdziel, M. Łukowiak, S. Radziszowski Array-Based Statistical Analysis of the MK-3 Authenticated

More information

Mark S. Litaker and Bob Gutin, Medical College of Georgia, Augusta GA. Paper P-715 ABSTRACT INTRODUCTION

Mark S. Litaker and Bob Gutin, Medical College of Georgia, Augusta GA. Paper P-715 ABSTRACT INTRODUCTION Paper P-715 A Simulation Study to Compare the Performance of Permutation Tests for Time by Group Interaction in an Unbalanced Repeated-Measures Design, Using Two Permutation Schemes Mark S. Litaker and

More information

One-Sample Z: C1, C2, C3, C4, C5, C6, C7, C8,... The assumed standard deviation = 110

One-Sample Z: C1, C2, C3, C4, C5, C6, C7, C8,... The assumed standard deviation = 110 SMAM 314 Computer Assignment 3 1.Suppose n = 100 lightbulbs are selected at random from a large population.. Assume that the light bulbs put on test until they fail. Assume that for the population of light

More information

Comparing Across Categories Part of a Series of Tutorials on using Google Sheets to work with data for making charts in Venngage

Comparing Across Categories Part of a Series of Tutorials on using Google Sheets to work with data for making charts in Venngage Comparing Across Categories Part of a Series of Tutorials on using Google Sheets to work with data for making charts in Venngage These materials are based upon work supported by the National Science Foundation

More information

Joint Scheduling and Fast Cell Selection in OFDMA Wireless Networks

Joint Scheduling and Fast Cell Selection in OFDMA Wireless Networks 1 Joint Scheduling and Fast Cell Selection in OFDMA Wireless Networks Reuven Cohen Guy Grebla Department of Computer Science Technion Israel Institute of Technology Haifa 32000, Israel Abstract In modern

More information

Chapter 2: Signal Representation

Chapter 2: Signal Representation Chapter 2: Signal Representation Aveek Dutta Assistant Professor Department of Electrical and Computer Engineering University at Albany Spring 2018 Images and equations adopted from: Digital Communications

More information

Introduction to (Networked) Game Theory. Networked Life NETS 112 Fall 2016 Prof. Michael Kearns

Introduction to (Networked) Game Theory. Networked Life NETS 112 Fall 2016 Prof. Michael Kearns Introduction to (Networked) Game Theory Networked Life NETS 112 Fall 2016 Prof. Michael Kearns Game Theory for Fun and Profit The Beauty Contest Game Write your name and an integer between 0 and 100 Let

More information

Image Filtering. Median Filtering

Image Filtering. Median Filtering Image Filtering Image filtering is used to: Remove noise Sharpen contrast Highlight contours Detect edges Other uses? Image filters can be classified as linear or nonlinear. Linear filters are also know

More information

KenKen Strategies 17+

KenKen Strategies 17+ KenKen is a puzzle whose solution requires a combination of logic and simple arithmetic and combinatorial skills. The puzzles range in difficulty from very simple to incredibly difficult. Students who

More information