Basic direct and indirect estimators in sae package

Size: px
Start display at page:

Download "Basic direct and indirect estimators in sae package"

Transcription

1 Basic irect an inirect estimators in sae package Isabel Molina *, Yolana Marhuena March, 2015 This ocument presents esign unbiase irect estimators an simple inirect estimators of omain means Ȳ, = 1,..., D. For a general ranom sampling without replacement within each omain U. We enote by π j the inclusion probability of j-th unit from -th omain in the corresponing omain sample s an w j = π 1 j is the corresponing sampling weight. A esignunbiase irect estimator of Ȳ is the Horvitz-Thompson (HT) estimator, given by ˆȲ = N 1 w j Y j. (1) j s Unbiase estimation of the sampling variance of the HT estimator requires availability of the secon orer inclusion probabilities π,jk of each pair of units j an k in s. A simple approximation that avois the use of secon orer inclusion probabilities is obtaine by consiering π,jk π j π k an is given by ˆV π ( ˆȲ ) = 1 N 2 w j (w j 1)Yj. 2 (2) j s Uner Poisson sampling, π,jk = π j π k an in that case the estimator in (2) is exactly unbiase. Uner simple ranom sampling (SRS) without replacement within each area U, = 1,..., D, the HT estimator of the mean Ȳ is the usual sample mean ˆȲ = ȳ = n 1 j s Y j, an the (exactly) unbiase estimator ˆȲ ) = (1 f )S 2/n, for S 2 = j s (Y j of the sampling variance is ˆV π ( ȳ ) 2 /(n 1). When the sampling is with replacement within each omain U, an units are selecte with probabilities P j, j = 1,..., N, proportional to some size measure, if we efine new weights w j = (n P j ) 1, the estimator efine in (1) remains unbiase an the unbiase estimator of the sampling variance is given by ˆV π ( ˆȲ ) = 1 ( f w j Y j ˆȲ ) 2, n j s * Department of Statistics, Universia Carlos III e Mari. Aress: C/Mari 126, Getafe (Mari), Spain, Tf: , Fax: , isabel.molina@uc3m.es 1

2 which becomes S 2/n uner SRS with replacement. The post-stratifie synthetic estimator assumes that ata are istribute into K (large) groups calle post-strata that cut across the omains, an such that the within group mean is constant across omains, that is, if Ȳk enotes the mean in the crossing of post-stratum k an omain an Ȳ+k is the mean of post-stratum k, it hols that Ȳk = Ȳ+k, k = 1,..., K. The groups are assume to have large enough sample sizes to allow irect estimation with high efficiency. Since the mean of omain is given by Ȳ = N 1 K k=1 N kȳk, replacing Ȳk = Ȳ+k by the ratio HT estimator ˆȲ R +k = Ŷ +k / ˆN +k, where Ŷ+k is the irect estimator of the total in post-stratum k an ˆN +k is the irect estimator of the population size N +k in the same post-stratum, we obtain the post-stratifie synthetic estimator ˆȲ SY N = 1 N K N k ˆȲ R +k. Note that this estimator requires the population sizes of the crossings between each post-stratum k an omain, N k for all k an. The irect estimator is inefficient for a omain with small sample size. On the other han, the post-stratifie synthetic estimator is biase when the assumption of constant means across omains within a stratum oes not hol. To balance the bias of a synthetic estimator an the instability of the irect estimator, [1] propose the sample-size epenent (SSD) estimator efine as a composition of the two mentione estimators, that is, ˆȲ SSD = φ ˆȲ k=1 SY N + (1 φ ) ˆȲ, where the composition weight φ epens on the sample size of the omain as { 1, ˆN φ = δn ; ˆN /(δn ), ˆN < δn, for a given constant δ > 0 that controls how much weight is attache to the synthetic estimator, with larger value of δ meaning that more strength is borrowe from other omains. However, if the expecte sample size is small, then ˆN the SSD estimator is not borrowing strength in omains with δn even if they have small sample sizes. Functions irect(), pssynt() an ss() give respectively irect, poststratifie synthetic an sample size epenent estimates. The calls to these functions are: irect(y, om, sweight, omsize, ata, replace = FALSE) pssynt(y, sweight, ps, omsizebyps, ata) ss(om, sweight, omsize, irect, synthetic, elta = 1, ata) Function irect() returns unbiase irect estimates of the area means, where the result epens on the sampling esign specifie through the sampling 2

3 weight vector sweight an the argument replace for with or without replacement sampling. We must provie the area population sizes in the ata frame omsize, whose first column must contain the area coes. In pssynt(), we must specify our selecte post-stratifying variable in argument ps. The population sizes of each crossing between omain an post-strata must be specifie in the ata frame omsizebyps, whose first column must be again the area coes. Function ss() gives SSD estimators obtaine by composition of irect an synthetic estimators. We nee to introuce the irect estimators (irect) an the synthetic estimators (synthetic) to compose, together with the constant δ (elta) involve in the SSD estimator. Domain coes (om) an omain population sizes (omsize) are also require arguments. The vector of sampling weights (sweight) must be inclue in the three functions. The variables specifie in y, om, sweight an ps can be selecte from the ata set specifie in argument ata. Example. Poverty mapping In this example, we calculate several simple estimates of poverty inciences in Spanish provinces, namely irect estimates, post-stratifie synthetic estimates with eucation levels as post-strata an SSD estimates obtaine from the composition of irect an post-stratifie synthetic estimates. The poverty incience for a province is the province mean of a binary variable taking value 1 when person s income is below a given poverty line an 0 otherwise. Direct estimates can be obtaine easily applying the usual theory for means to this binary variable. First, we loa the ata set incomeata containing the input ata for each iniviual an the ata sets sizeprov an sizeproveu containing the population sizes an the population sizes by eucation level, respectively. > library("sae") > ata("incomeata") > ata("sizeprov") > ata("sizeproveu") Next, we efine the poverty line z, calculate the binary variable poor, with value 1 if the corresponing income value is below the poverty line an 0 otherwise, an calculate province poverty inciences as province means of this variable. > z < > poor <- as.integer(incomeata$income < z) We use the province name provlab as the omain coe (om) an calculate irect estimates. 3

4 > Popn <- sizeprov[, c("provlab", "N")] > <- irect(y = poor, om = incomeata$provlab, + sweight = incomeata$weight, omsize = Popn) Next, we calculate post-stratifie synthetic estimates with eucation levels as post-strata. For the function pssynt(), we construct the ata frame omsizebyps, containing the omain coes provlab in the first column an, in the remaining columns, the province sizes by eucation level. The names of the columns (except for the first one) in this ata frame must be the eucation levels, namely 0 (age<16), 1 (primary eucation), 2 (seconary eucation) an 3 (post-seconary eucation): > Popn.euc <- sizeproveu[,-2] > colnames(popn.euc) <- c("provlab","0", "1", "2", "3") > PSYN.euc <- pssynt(y = poor, sweight = incomeata$weight, + ps = incomeata$euc, + omsizebyps = Popn.euc) We calculate SSD estimates by composition of the previous irect an poststratifie estimates, an taking the efault value elta=1 in function ss(). Again, the first columns of omsize, irect an synthetic must be the province names. > SSD <- ss(om = provlab, sweight = weight, omsize = Popn, + irect = [, c("domain", "Direct")], + synthetic = PSYN.euc, ata = incomeata) We collect the province names, sample sizes an the three sets of percent poverty incience estimates in the ata frame results: > results <- ata.frame(province = $Domain, + SampleSize = $SampSize, + = $Direct * 100, + PSYN.euc = PSYN.euc$PsSynthetic * 100, + SSD = SSD$ss * 100) > print(results, row.names = FALSE) Province SampleSize PSYN.euc SSD Alava Albacete Alicante Almeria Avila Baajoz Baleares Barcelona Burgos

5 Caceres Caiz Castellon Ceuta CiuaReal Coroba CorunaLa Cuenca Gerona Granaa Guaalajara Guipuzcoa Huelva Huesca Jaen Leon Leria Lugo Mari Malaga Melilla Murcia Navarra Orense Ovieo Palencia PalmasLas Pontevera RiojaLa Salamanca Santaner Segovia Sevilla Soria Tarragona Tenerife Teruel Toleo Valencia Vallaoli Vizcaya Zamora Zaragoza These estimates are plotte in the Figure for each province (area), with provinces sorte by ecreasing sample size. This Figure shows that irect esti- 5

6 mates an SSD estimates are very similar, with irect estimates slightly more unstable. However, the post-stratifie synthetic estimates appear to be too stable, giving practically the same values for all provinces. This estimator is base on the unrealistic assumption of constant poverty incience for all the population with the same eucation level an therefore might be seriously biase. > # Sorte results by ecreasing sample size > results <- results[orer(results$samplesize, + ecreasing = TRUE), ] > plot(results$, type = "n", + xlab = "area (sorte by ecreasing sample size)", + ylab = "Estimate", cex.axis = 1.5, cex.lab = 1.5) > points(results$, type = "b", col = 3, lw = 2, pch = 1) > points(results$psyn.euc, type= "b", col = 5, lw = 2, pch = 2) > points(results$ssd, type = "b", col = 2, lw = 2, pch = 5) > legen("bottom", legen = c("direct", "Post-strat euc", "SSD"), + ncol = 1, col = c(3, 5, 2), lw = rep(2, 3), + pch = c(1, 2, 5), cex = 1.3) Estimate Direct Post strat euc SSD area (sorte by ecreasing sample size) Comparing irect estimates with the EB estimates of poverty inciences obtaine in the ata frame results.eb of Example 5 in [2], we can see that estimates iffer significantly for the 5 selecte provinces an the CVs show great gains in efficiency of EB estimates as compare with irect estimates. 6

7 > [c("42","5","34","44","40"), -4] Domain SampSize Direct CV 42 Soria Avila Palencia Teruel Segovia References [1] Drew, D., Singh, M.P. & Chouhry, G.H. (1982). Evaluation of small area estimation techniques for the Canaian Labour Force Survey. Survey Methoology 8, [2] Molina, I. & Marhuena, Y. (1982). sae: An R package for Small Area Estimation. R Journal, Uner revision. 7

PRESENTATION OF E.164 NATIONAL NUMBERING PLAN COUNTRY CODE 34 SPAIN SHORT CODES. 0 3 3 Short codes Social value services

PRESENTATION OF E.164 NATIONAL NUMBERING PLAN COUNTRY CODE 34 SPAIN SHORT CODES. 0 3 3 Short codes Social value services PRESENTATION OF E.164 NATIONAL NUMBERING PLAN COUNTRY CODE 34 SPAIN (Updated 01-10-2013) N(S)N number 00 2 2 International prefix SHORT CODES 0 3 3 Short codes Social value services 1 4 4 Short codes 103

More information

WORKSHOP REGULATING ACCESS TO PROFESSIONS: NATIONAL PERSPECTIVES. Breakout session 3: Social workers

WORKSHOP REGULATING ACCESS TO PROFESSIONS: NATIONAL PERSPECTIVES. Breakout session 3: Social workers WORKSHOP REGULATING ACCESS TO PROFESSIONS: NATIONAL PERSPECTIVES Breakout session 3: Social workers Ana Isabel Lima Fernández President General Council of Social Work, Spain Brussels,17June 2013 General

More information

Universidad Nacional de Educación a Distancia Spanish National Distance University. OECD/US Forum on Trade in Educational Services

Universidad Nacional de Educación a Distancia Spanish National Distance University. OECD/US Forum on Trade in Educational Services Universidad Nacional de Educación a Distancia Spanish National Distance University OECD/US Forum on Trade in Educational Services Washington, D.C. 23-24 May 2002 Universidad Nacional de Educación a Distancia

More information

Sports Panel. Spain 1 / 6. Sociodemographic profile Real delivery Panel IR% Total panelists: 51.121 100,0% Sex Man 23.689.

Sports Panel. Spain 1 / 6. Sociodemographic profile Real delivery Panel IR% Total panelists: 51.121 100,0% Sex Man 23.689. 1 / 6 Sports Panel Spain Features Panel size (ISO): 121.712 People profiled (ISO): 29.062 Estimated response rate (ISO): 43% Updated: 15/12/2014 Size (ISO): number of panelists according to ISO 26362 Real

More information

Hotel Price Index (HPI). Base 2008 (as of January 2016) Methodological note

Hotel Price Index (HPI). Base 2008 (as of January 2016) Methodological note Hotel Price Index (HPI). Base 2008 (as of January 2016) Methodological note 1. Background 2. Sample design 3. Estimators 4. Base change 2008-2001 5. Statistical Secrecy 6. Variation quotients 7. Data collection.

More information

Overnight stays in non-hotel tourist accommodation increase 6.9% in November as compared to the same month of 2014

Overnight stays in non-hotel tourist accommodation increase 6.9% in November as compared to the same month of 2014 29 December 2015 Non-Hotel Tourist Accommodation Occupancy Survey November 2015. Overnight stays in non-hotel tourist accommodation increase 6.9% in November as compared to the same month of 2014 Overnight

More information

Service Charter 2014-2017

Service Charter 2014-2017 State Public Employment Service Service Charter 2014-2017 GOBIERNO DE ESPAÑA MINISTERIO DE EMPLEO Y SEGURIDAD SOCIAL SERVICIO PÚBLICO DE EMPLEO ESTATAL Catálogo de publicaciones de la Administración General

More information

Overnight stays in non-hotel tourist accommodation increase 12.3% in October as compared to the same month of 2014

Overnight stays in non-hotel tourist accommodation increase 12.3% in October as compared to the same month of 2014 27 November 2015 Non-Hotel Tourist Accommodation Occupancy Survey October 2015. Overnight stays in non-hotel tourist accommodation increase 12.3% in October as compared to the same month of 2014 Overnight

More information

6. Main characteristic object of study: Household consumer expenses. 8. Methodological changes introduced in the HBS

6. Main characteristic object of study: Household consumer expenses. 8. Methodological changes introduced in the HBS Index Presentation Introduction 1. Objectives of the survey 2. Scope of the investigation 3. Content 4. Sample design 5. Basic concepts 6. Main characteristic object of study: Household consumer expenses

More information

Guia Inmigrante Ingles.qxp 14/03/2007 13:44 Página 15

Guia Inmigrante Ingles.qxp 14/03/2007 13:44 Página 15 Guia Inmigrante Ingles.qxp 14/03/2007 13:44 Página 15 GUIDE FOR IMMIGRANTS [ 15 ] General Information General Information Junta de Castilla y León: 012 Emergencies: 112 (Includes Health Services, National

More information

A SPATIAL UNIT LEVEL MODEL FOR SMALL AREA ESTIMATION

A SPATIAL UNIT LEVEL MODEL FOR SMALL AREA ESTIMATION REVSTAT Statistical Journal Volume 9, Number 2, June 2011, 155 180 A SPATIAL UNIT LEVEL MODEL FOR SMALL AREA ESTIMATION Authors: Pero S. Coelho ISEGI Universiae Nova e Lisboa, Portugal Faculty of Economics,

More information

mobile data : impact on IT & network strategy

mobile data : impact on IT & network strategy mobile data : impact on IT & network strategy Vivek Badrinath executive vice president IT networks & product support France Telecom December, 8 th 2008 agenda 1 IT&N summary 2 focus on mobile data technology

More information

Annual Report. The company that suits you MADE IN SPAIN. 100% original 100% recycled 100% fresh 100% durable 100% organic. Est.

Annual Report. The company that suits you MADE IN SPAIN. 100% original 100% recycled 100% fresh 100% durable 100% organic. Est. Annual Report 2010 by Est. 1979 100% original 100% recycled 100% fresh 100% durable 100% organic The company that suits you Best Quality Company 2010 MADE IN SPAIN see our products on www.servired.es Index

More information

Digital barrier option contract with exponential random time

Digital barrier option contract with exponential random time IMA Journal of Applie Mathematics Avance Access publishe June 9, IMA Journal of Applie Mathematics ) Page of 9 oi:.93/imamat/hxs3 Digital barrier option contract with exponential ranom time Doobae Jun

More information

TOMASZ KLIMANEK USING INDIRECT ESTIMATION WITH SPATIAL AUTOCORRELATION IN SOCIAL SURVEYS IN POLAND 1 1. BACKGROUND

TOMASZ KLIMANEK USING INDIRECT ESTIMATION WITH SPATIAL AUTOCORRELATION IN SOCIAL SURVEYS IN POLAND 1 1. BACKGROUND PRZEGLĄD STATYSTYCZNY NUMER SPECJALNY 1 01 TOMASZ KLIMANEK USING INDIRECT ESTIMATION WITH SPATIAL AUTOCORRELATION IN SOCIAL SURVEYS IN POLAND 1 1. BACKGROUND First attempts at applying various approaches

More information

Indicators on the Profitability of the Hotel Sector

Indicators on the Profitability of the Hotel Sector Indicators on the Profitability of the Hotel Sector Methodology February 204 Index. Introduction 2. Definition of the indicators 5 3. Scope a. Tie scope b. Population scope c. Geographical scope 4. Saple

More information

Modelling and Resolving Software Dependencies

Modelling and Resolving Software Dependencies June 15, 2005 Abstract Many Linux istributions an other moern operating systems feature the explicit eclaration of (often complex) epenency relationships between the pieces of software

More information

Pozuelo de Alarcón is the city with the highest level of income and lowest unemployment rate of the 109 analyzed

Pozuelo de Alarcón is the city with the highest level of income and lowest unemployment rate of the 109 analyzed 30 June 2015 Urban Indicators (Urban Audit) Year 2015 Pozuelo de Alarcón is the city with the highest level of income and lowest unemployment rate of the 109 analyzed Sanlúcar de Barrameda has the highest

More information

This post is not eligible for sponsorship and applicants must be eligible to work in the UK under present visa arrangements.

This post is not eligible for sponsorship and applicants must be eligible to work in the UK under present visa arrangements. WMG 7.60 per hour Ref: WMG005/15 Fixe Term Contract: 4 Weeks Full Time to be unertaken in summer 2015 (with the possibility of a further 4 weeks employment, applicants must therefore be available for the

More information

Data Center Power System Reliability Beyond the 9 s: A Practical Approach

Data Center Power System Reliability Beyond the 9 s: A Practical Approach Data Center Power System Reliability Beyon the 9 s: A Practical Approach Bill Brown, P.E., Square D Critical Power Competency Center. Abstract Reliability has always been the focus of mission-critical

More information

The Annual Report 2009

The Annual Report 2009 The Annual Report 2009 th 30 edition 2009 Audience Award 2009 Critics Award More than 62,000 million euros in purchases In face of the new scenario of pressure on interchange rates, it is necessary to

More information

DECISION SUPPORT SYSTEM FOR MANAGING EDUCATIONAL CAPACITY UTILIZATION IN UNIVERSITIES

DECISION SUPPORT SYSTEM FOR MANAGING EDUCATIONAL CAPACITY UTILIZATION IN UNIVERSITIES DECISION SUPPORT SYSTEM OR MANAGING EDUCATIONAL CAPACITY UTILIZATION IN UNIVERSITIES Svetlana Vinnik 1, Marc H. Scholl 2 Abstract Decision-making in the fiel of acaemic planning involves extensive analysis

More information

A New Evaluation Measure for Information Retrieval Systems

A New Evaluation Measure for Information Retrieval Systems A New Evaluation Measure for Information Retrieval Systems Martin Mehlitz martin.mehlitz@ai-labor.e Christian Bauckhage Deutsche Telekom Laboratories christian.bauckhage@telekom.e Jérôme Kunegis jerome.kunegis@ai-labor.e

More information

COMUNICACIÓN DE HECHO RELEVANTE GRUPO MASMOVIL. 27 de Octubre de 2015

COMUNICACIÓN DE HECHO RELEVANTE GRUPO MASMOVIL. 27 de Octubre de 2015 COMUNICACIÓN DE HECHO RELEVANTE GRUPO MASMOVIL 27 de Octubre de 2015 De conformidad con lo dispuesto en la circular 9/2010 del Mercado Alternativo Bursátil (en adelante MAB), así como en el artículo 82

More information

Risk Management for Derivatives

Risk Management for Derivatives Risk Management or Derivatives he Greeks are coming the Greeks are coming! Managing risk is important to a large number o iniviuals an institutions he most unamental aspect o business is a process where

More information

Letter of Services 2014-2017

Letter of Services 2014-2017 Letter of Services 2014-2017 June 2015 1 Index 1. Identifying data and purposes of the INE 3 2. Services that the INE provides 4 3. Citizen rights 5 4. Participation and collaboration of citizens 6 5.

More information

Each page is identical in format and gives you the following information

Each page is identical in format and gives you the following information Page of 7 The kyero price report is updated and published each month to evaluate the advertised prices of 50,000 Spanish properties for sale with a total value of 20 billion Euros. The report is categorised

More information

JON HOLTAN. if P&C Insurance Ltd., Oslo, Norway ABSTRACT

JON HOLTAN. if P&C Insurance Ltd., Oslo, Norway ABSTRACT OPTIMAL INSURANCE COVERAGE UNDER BONUS-MALUS CONTRACTS BY JON HOLTAN if P&C Insurance Lt., Oslo, Norway ABSTRACT The paper analyses the questions: Shoul or shoul not an iniviual buy insurance? An if so,

More information

MSc. Econ: MATHEMATICAL STATISTICS, 1995 MAXIMUM-LIKELIHOOD ESTIMATION

MSc. Econ: MATHEMATICAL STATISTICS, 1995 MAXIMUM-LIKELIHOOD ESTIMATION MAXIMUM-LIKELIHOOD ESTIMATION The General Theory of M-L Estimation In orer to erive an M-L estimator, we are boun to make an assumption about the functional form of the istribution which generates the

More information

Math 230.01, Fall 2012: HW 1 Solutions

Math 230.01, Fall 2012: HW 1 Solutions Math 3., Fall : HW Solutions Problem (p.9 #). Suppose a wor is picke at ranom from this sentence. Fin: a) the chance the wor has at least letters; SOLUTION: All wors are equally likely to be chosen. The

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY 6.436J/15.085J Fall 2008 Lecture 14 10/27/2008 MOMENT GENERATING FUNCTIONS

MASSACHUSETTS INSTITUTE OF TECHNOLOGY 6.436J/15.085J Fall 2008 Lecture 14 10/27/2008 MOMENT GENERATING FUNCTIONS MASSACHUSETTS INSTITUTE OF TECHNOLOGY 6.436J/15.085J Fall 2008 Lecture 14 10/27/2008 MOMENT GENERATING FUNCTIONS Contents 1. Moment generating functions 2. Sum of a ranom number of ranom variables 3. Transforms

More information

Mathematical Models of Therapeutical Actions Related to Tumour and Immune System Competition

Mathematical Models of Therapeutical Actions Related to Tumour and Immune System Competition Mathematical Moels of Therapeutical Actions Relate to Tumour an Immune System Competition Elena De Angelis (1 an Pierre-Emmanuel Jabin (2 (1 Dipartimento i Matematica, Politecnico i Torino Corso Duca egli

More information

Forest Fires and Wildland-Urban Interface in Spain: Types and Risk Distribution

Forest Fires and Wildland-Urban Interface in Spain: Types and Risk Distribution Forest Fires and Wildland-Urban Interface in Spain: Types and Risk Distribution D. Caballero, I. Beltrán, A. Velasco 1 Abstract This paper presents the main results and conclusions of a two-year study

More information

Index. Introduction 4. ServiRed in 2012 6. Mission and Objectives 10. Board 14. Members of the ServiRed System 18

Index. Introduction 4. ServiRed in 2012 6. Mission and Objectives 10. Board 14. Members of the ServiRed System 18 Index Introduction 4 in 2012 6 Mission and Objectives 10 Board 14 Members of the System 18 Letter from the Chairman of the Board 22 Letter from the Deputy General Manager 26 Network 28 Activity Data 32

More information

Qualified Annuity Claimant s Statement

Qualified Annuity Claimant s Statement Qualifie Annuity Claimant s Statement The Lincoln National Life Insurance Company Service Office P.O. Box 7880 Fort Wayne, IN 46801-7880 Phone: 800-454-6265, Ext.*8200 www.lincolnfinancial.com Overnight

More information

Non-Hotel Tourist Accommodation Occupancy Survey Year 2012. Provisional data

Non-Hotel Tourist Accommodation Occupancy Survey Year 2012. Provisional data 13 February 213 Non-Hotel Tourist Accommodation Occupancy Survey Year 212. Provisional data Main results In 212, it was registered 11.9 million of overnight stays in non-hotel tourist accommodation (holiday

More information

Non Qualified Annuity Claimant s Statement

Non Qualified Annuity Claimant s Statement Non Qualifie Annuity Claimant s Statement The Lincoln National Life Insurance Company Service Office P.O. Box 7880 Fort Wayne, IN 46801-7880 Phone: 800-454-6265, Ext.*8200 www.lincolnfinancial.com Overnight

More information

Firewall Design: Consistency, Completeness, and Compactness

Firewall Design: Consistency, Completeness, and Compactness C IS COS YS TE MS Firewall Design: Consistency, Completeness, an Compactness Mohame G. Goua an Xiang-Yang Alex Liu Department of Computer Sciences The University of Texas at Austin Austin, Texas 78712-1188,

More information

A Generalization of Sauer s Lemma to Classes of Large-Margin Functions

A Generalization of Sauer s Lemma to Classes of Large-Margin Functions A Generalization of Sauer s Lemma to Classes of Large-Margin Functions Joel Ratsaby University College Lonon Gower Street, Lonon WC1E 6BT, Unite Kingom J.Ratsaby@cs.ucl.ac.uk, WWW home page: http://www.cs.ucl.ac.uk/staff/j.ratsaby/

More information

10.2 Systems of Linear Equations: Matrices

10.2 Systems of Linear Equations: Matrices SECTION 0.2 Systems of Linear Equations: Matrices 7 0.2 Systems of Linear Equations: Matrices OBJECTIVES Write the Augmente Matrix of a System of Linear Equations 2 Write the System from the Augmente Matrix

More information

A Blame-Based Approach to Generating Proposals for Handling Inconsistency in Software Requirements

A Blame-Based Approach to Generating Proposals for Handling Inconsistency in Software Requirements International Journal of nowlege an Systems Science, 3(), -7, January-March 0 A lame-ase Approach to Generating Proposals for Hanling Inconsistency in Software Requirements eian Mu, Peking University,

More information

2014 Human Resources and Organisation Annual Report

2014 Human Resources and Organisation Annual Report 204 Human Resources and Organisation Annual Report Most relevant data 204 203 "CaixaBank" Group workforce 3,20 3,948 "CaixaBank" workforce Central Services workforce 28,984 5.7% 29,780 5.3% New hires 22,379

More information

Detecting Possibly Fraudulent or Error-Prone Survey Data Using Benford s Law

Detecting Possibly Fraudulent or Error-Prone Survey Data Using Benford s Law Detecting Possibly Frauulent or Error-Prone Survey Data Using Benfor s Law Davi Swanson, Moon Jung Cho, John Eltinge U.S. Bureau of Labor Statistics 2 Massachusetts Ave., NE, Room 3650, Washington, DC

More information

Non Qualified Annuity Claimant s Statement

Non Qualified Annuity Claimant s Statement Non Qualifie Annuity Claimant s Statement The Lincoln National Life Insurance Company Service Office P.O. Box 7880 Fort Wayne, IN 46801-7880 Phone: 800-454-6265, Ext.*8200 www.lincolnfinancial.com Overnight

More information

A Data Placement Strategy in Scientific Cloud Workflows

A Data Placement Strategy in Scientific Cloud Workflows A Data Placement Strategy in Scientific Clou Workflows Dong Yuan, Yun Yang, Xiao Liu, Jinjun Chen Faculty of Information an Communication Technologies, Swinburne University of Technology Hawthorn, Melbourne,

More information

Option Pricing for Inventory Management and Control

Option Pricing for Inventory Management and Control Option Pricing for Inventory Management an Control Bryant Angelos, McKay Heasley, an Jeffrey Humpherys Abstract We explore the use of option contracts as a means of managing an controlling inventories

More information

How To Understand The Structure Of A Can (Can)

How To Understand The Structure Of A Can (Can) Thi t t ith F M k 4 0 4 BOSCH CAN Specification Version 2.0 1991, Robert Bosch GmbH, Postfach 50, D-7000 Stuttgart 1 The ocument as a whole may be copie an istribute without restrictions. However, the

More information

State of Louisiana Office of Information Technology. Change Management Plan

State of Louisiana Office of Information Technology. Change Management Plan State of Louisiana Office of Information Technology Change Management Plan Table of Contents Change Management Overview Change Management Plan Key Consierations Organizational Transition Stages Change

More information

According to the Census, Spain has a population of 46,815,916 inhabitants at 1 November 2011, with growth of almost 6 million persons in a decade

According to the Census, Spain has a population of 46,815,916 inhabitants at 1 November 2011, with growth of almost 6 million persons in a decade 14 December 2012 Population and Housing Censuses 2011 According to the Census, Spain has a population of 46,815,916 inhabitants at 1 November 2011, with growth of almost 6 million persons in a decade The

More information

More households, less members

More households, less members Ever smaller households More households, less members There are 14.2 (million households in Spain which means an increase of 20% with respect to 1991. Significant modifications have occurred in the structure

More information

GPRS performance estimation in GSM circuit switched services and GPRS shared resource systems *

GPRS performance estimation in GSM circuit switched services and GPRS shared resource systems * GPRS performance estimation in GSM circuit switche serices an GPRS share resource systems * Shaoji i an Sen-Gusta Häggman Helsinki Uniersity of Technology, Institute of Raio ommunications, ommunications

More information

Game Theoretic Modeling of Cooperation among Service Providers in Mobile Cloud Computing Environments

Game Theoretic Modeling of Cooperation among Service Providers in Mobile Cloud Computing Environments 2012 IEEE Wireless Communications an Networking Conference: Services, Applications, an Business Game Theoretic Moeling of Cooperation among Service Proviers in Mobile Clou Computing Environments Dusit

More information

Achieving quality audio testing for mobile phones

Achieving quality audio testing for mobile phones Test & Measurement Achieving quality auio testing for mobile phones The auio capabilities of a cellular hanset provie the funamental interface between the user an the raio transceiver. Just as RF testing

More information

Safety Management System. Initial Revision Date: Version Revision No. 02 MANUAL LIFTING

Safety Management System. Initial Revision Date: Version Revision No. 02 MANUAL LIFTING Revision Preparation: Safety Mgr Authority: Presient Issuing Dept: Safety Page: Page 1 of 11 Purpose is committe to proviing a safe an healthy working environment for all employees. Musculoskeletal isorers

More information

The one-year non-life insurance risk

The one-year non-life insurance risk The one-year non-life insurance risk Ohlsson, Esbjörn & Lauzeningks, Jan Abstract With few exceptions, the literature on non-life insurance reserve risk has been evote to the ultimo risk, the risk in the

More information

The most common model to support workforce management of telephone call centers is

The most common model to support workforce management of telephone call centers is Designing a Call Center with Impatient Customers O. Garnett A. Manelbaum M. Reiman Davison Faculty of Inustrial Engineering an Management, Technion, Haifa 32000, Israel Davison Faculty of Inustrial Engineering

More information

Towards a Framework for Enterprise Architecture Frameworks Comparison and Selection

Towards a Framework for Enterprise Architecture Frameworks Comparison and Selection Towars a Framework for Enterprise Frameworks Comparison an Selection Saber Aballah Faculty of Computers an Information, Cairo University Saber_aballah@hotmail.com Abstract A number of Enterprise Frameworks

More information

Department of Haematology University Hospital. University of Salamanca, Spain

Department of Haematology University Hospital. University of Salamanca, Spain Immunophenotyping of Plasma Cells: Implications on management Department of Haematology University Hospital Cancer Research Centre J.F. San Miguel University of Salamanca, Spain Faculty disclosure information

More information

A Theory of Exchange Rates and the Term Structure of Interest Rates

A Theory of Exchange Rates and the Term Structure of Interest Rates Review of Development Economics, 17(1), 74 87, 013 DOI:10.1111/roe.1016 A Theory of Exchange Rates an the Term Structure of Interest Rates Hyoung-Seok Lim an Masao Ogaki* Abstract This paper efines the

More information

José Alcalá MMXV. Spain in figures 2015

José Alcalá MMXV. Spain in figures 2015 José Alcalá MMXV Spain in figures 2015 Spain in figures 2015 Publications catalogue of the General State Administration http://publicacionesoficiales.boe.es Publishing data Títle: Spain in figures 2015

More information

Optimal Energy Commitments with Storage and Intermittent Supply

Optimal Energy Commitments with Storage and Intermittent Supply Submitte to Operations Research manuscript OPRE-2009-09-406 Optimal Energy Commitments with Storage an Intermittent Supply Jae Ho Kim Department of Electrical Engineering, Princeton University, Princeton,

More information

High Speed Rail in Spain. Victorino Pérez Senior Manager International Relations Renfe Operadora FEBRUARY 25 th, 2014

High Speed Rail in Spain. Victorino Pérez Senior Manager International Relations Renfe Operadora FEBRUARY 25 th, 2014 1 High Speed Rail in Spain Victorino Pérez Senior Manager International Relations Renfe Operadora FEBRUARY 25 th, 2014 2 Spanish Railway Network Total railway network: 15,333 km HS network standard gauge

More information

Here the units used are radians and sin x = sin(x radians). Recall that sin x and cos x are defined and continuous everywhere and

Here the units used are radians and sin x = sin(x radians). Recall that sin x and cos x are defined and continuous everywhere and Lecture 9 : Derivatives of Trigonometric Functions (Please review Trigonometry uner Algebra/Precalculus Review on the class webpage.) In this section we will look at the erivatives of the trigonometric

More information

Enterprise Resource Planning

Enterprise Resource Planning Enterprise Resource Planning MPC 6 th Eition Chapter 1a McGraw-Hill/Irwin Copyright 2011 by The McGraw-Hill Companies, Inc. All rights reserve. Enterprise Resource Planning A comprehensive software approach

More information

BOSCH. CAN Specification. Version 2.0. 1991, Robert Bosch GmbH, Postfach 30 02 40, D-70442 Stuttgart

BOSCH. CAN Specification. Version 2.0. 1991, Robert Bosch GmbH, Postfach 30 02 40, D-70442 Stuttgart CAN Specification Version 2.0 1991, Robert Bosch GmbH, Postfach 30 02 40, D-70442 Stuttgart CAN Specification 2.0 page 1 Recital The acceptance an introuction of serial communication to more an more applications

More information

Coalitional Game Theoretic Approach for Cooperative Transmission in Vehicular Networks

Coalitional Game Theoretic Approach for Cooperative Transmission in Vehicular Networks Coalitional Game Theoretic Approach for Cooperative Transmission in Vehicular Networks arxiv:.795v [cs.gt] 8 Feb Tian Zhang, Wei Chen, Zhu Han, an Zhigang Cao State Key Laboratory on Microwave an Digital

More information

Sensor Network Localization from Local Connectivity : Performance Analysis for the MDS-MAP Algorithm

Sensor Network Localization from Local Connectivity : Performance Analysis for the MDS-MAP Algorithm Sensor Network Localization from Local Connectivity : Performance Analysis for the MDS-MAP Algorithm Sewoong Oh an Anrea Montanari Electrical Engineering an Statistics Department Stanfor University, Stanfor,

More information

Qualified Annuity Claimant s Statement

Qualified Annuity Claimant s Statement Qualifie Annuity Claimant s Statement Service Office Overnight Aress: P.O. Box 7880 Lincoln Financial Group Fort Wayne, IN 46801-7880 Death Claims - IA Phone: 800-454-6265, Ext.*8200 1300 S Clinton St.

More information

Online Learning for Global Cost Functions

Online Learning for Global Cost Functions Online Learning for Global Cost Functions Eyal Even-Dar Google Research evenar@googlecom Robert Kleinberg Cornell University rk@cscornelleu Shie Mannor echnion an McGill University shiemannor@gmailcom

More information

Lecture L25-3D Rigid Body Kinematics

Lecture L25-3D Rigid Body Kinematics J. Peraire, S. Winall 16.07 Dynamics Fall 2008 Version 2.0 Lecture L25-3D Rigi Boy Kinematics In this lecture, we consier the motion of a 3D rigi boy. We shall see that in the general three-imensional

More information

Invest in Spain. Foundations for Sustainable Growth. Investment Trends in Spain. Spain: Global Platform for Business and International Investment

Invest in Spain. Foundations for Sustainable Growth. Investment Trends in Spain. Spain: Global Platform for Business and International Investment Invest in Spain Foundations for Sustainable Growth. Investment Trends in Spain. Spain: Global Platform for Business and International Investment Foundations for Sustainable Growth COMMITMENT CONFIDENCE

More information

Unsteady Flow Visualization by Animating Evenly-Spaced Streamlines

Unsteady Flow Visualization by Animating Evenly-Spaced Streamlines EUROGRAPHICS 2000 / M. Gross an F.R.A. Hopgoo Volume 19, (2000), Number 3 (Guest Eitors) Unsteay Flow Visualization by Animating Evenly-Space Bruno Jobar an Wilfri Lefer Université u Littoral Côte Opale,

More information

Di usion on Social Networks. Current Version: June 6, 2006 Appeared in: Économie Publique, Numéro 16, pp 3-16, 2005/1.

Di usion on Social Networks. Current Version: June 6, 2006 Appeared in: Économie Publique, Numéro 16, pp 3-16, 2005/1. Di usion on Social Networks Matthew O. Jackson y Caltech Leeat Yariv z Caltech Current Version: June 6, 2006 Appeare in: Économie Publique, Numéro 16, pp 3-16, 2005/1. Abstract. We analyze a moel of i

More information

RUNESTONE, an International Student Collaboration Project

RUNESTONE, an International Student Collaboration Project RUNESTONE, an International Stuent Collaboration Project Mats Daniels 1, Marian Petre 2, Vicki Almstrum 3, Lars Asplun 1, Christina Björkman 1, Carl Erickson 4, Bruce Klein 4, an Mary Last 4 1 Department

More information

Cross-Over Analysis Using T-Tests

Cross-Over Analysis Using T-Tests Chapter 35 Cross-Over Analysis Using -ests Introuction his proceure analyzes ata from a two-treatment, two-perio (x) cross-over esign. he response is assume to be a continuous ranom variable that follows

More information

Cost Efficient Datacenter Selection for Cloud Services

Cost Efficient Datacenter Selection for Cloud Services Cost Efficient Datacenter Selection for Clou Services Hong u, Baochun Li henryxu, bli@eecg.toronto.eu Department of Electrical an Computer Engineering University of Toronto Abstract Many clou services

More information

Forecasting and Staffing Call Centers with Multiple Interdependent Uncertain Arrival Streams

Forecasting and Staffing Call Centers with Multiple Interdependent Uncertain Arrival Streams Forecasting an Staffing Call Centers with Multiple Interepenent Uncertain Arrival Streams Han Ye Department of Statistics an Operations Research, University of North Carolina, Chapel Hill, NC 27599, hanye@email.unc.eu

More information

Measures of distance between samples: Euclidean

Measures of distance between samples: Euclidean 4- Chapter 4 Measures of istance between samples: Eucliean We will be talking a lot about istances in this book. The concept of istance between two samples or between two variables is funamental in multivariate

More information

An intertemporal model of the real exchange rate, stock market, and international debt dynamics: policy simulations

An intertemporal model of the real exchange rate, stock market, and international debt dynamics: policy simulations This page may be remove to conceal the ientities of the authors An intertemporal moel of the real exchange rate, stock market, an international ebt ynamics: policy simulations Saziye Gazioglu an W. Davi

More information

Technological developments 3. Websites network - Estrategical intelligence 4. Domain names and operative sites 5. Multimodal portals 6

Technological developments 3. Websites network - Estrategical intelligence 4. Domain names and operative sites 5. Multimodal portals 6 index Technological developments 3 Websites network - Estrategical intelligence 4 Domain names and operative sites 5 Multimodal portals 6 Thematic portals 6 Virtual platforms 7 Regional Iberian portals

More information

Seeing the Unseen: Revealing Mobile Malware Hidden Communications via Energy Consumption and Artificial Intelligence

Seeing the Unseen: Revealing Mobile Malware Hidden Communications via Energy Consumption and Artificial Intelligence Seeing the Unseen: Revealing Mobile Malware Hien Communications via Energy Consumption an Artificial Intelligence Luca Caviglione, Mauro Gaggero, Jean-François Lalane, Wojciech Mazurczyk, Marcin Urbanski

More information

How To Find Out How To Calculate Volume Of A Sphere

How To Find Out How To Calculate Volume Of A Sphere Contents High-Dimensional Space. Properties of High-Dimensional Space..................... 4. The High-Dimensional Sphere......................... 5.. The Sphere an the Cube in Higher Dimensions...........

More information

Sensitivity Analysis of Non-linear Performance with Probability Distortion

Sensitivity Analysis of Non-linear Performance with Probability Distortion Preprints of the 19th Worl Congress The International Feeration of Automatic Control Cape Town, South Africa. August 24-29, 214 Sensitivity Analysis of Non-linear Performance with Probability Distortion

More information

FROM THE EDITOR Challenges in Statistics Production for Domains and Small Areas (II) Other Articles

FROM THE EDITOR  Challenges in Statistics Production for Domains and Small Areas (II) Other Articles FROM THE EDITOR This is a secon issue evote to selecte papers presente at the International Conference (SAE005) on Challenges in Statistics Prouction for Domains an Small Areas. The Conference was hel

More information

Dynamic Network Security Deployment Under Partial Information

Dynamic Network Security Deployment Under Partial Information Dynamic Network Security Deployment Uner Partial nformation nvite Paper) George Theoorakopoulos EPFL Lausanne, Switzerlan Email: george.theoorakopoulos @ epfl.ch John S. Baras University of Marylan College

More information

Ch 10. Arithmetic Average Options and Asian Opitons

Ch 10. Arithmetic Average Options and Asian Opitons Ch 10. Arithmetic Average Options an Asian Opitons I. Asian Option an the Analytic Pricing Formula II. Binomial Tree Moel to Price Average Options III. Combination of Arithmetic Average an Reset Options

More information

A Comparison of Performance Measures for Online Algorithms

A Comparison of Performance Measures for Online Algorithms A Comparison of Performance Measures for Online Algorithms Joan Boyar 1, Sany Irani 2, an Kim S. Larsen 1 1 Department of Mathematics an Computer Science, University of Southern Denmark, Campusvej 55,

More information

CURRENCY OPTION PRICING II

CURRENCY OPTION PRICING II Jones Grauate School Rice University Masa Watanabe INTERNATIONAL FINANCE MGMT 657 Calibrating the Binomial Tree to Volatility Black-Scholes Moel for Currency Options Properties of the BS Moel Option Sensitivity

More information

FAST JOINING AND REPAIRING OF SANDWICH MATERIALS WITH DETACHABLE MECHANICAL CONNECTION TECHNOLOGY

FAST JOINING AND REPAIRING OF SANDWICH MATERIALS WITH DETACHABLE MECHANICAL CONNECTION TECHNOLOGY FAST JOINING AND REPAIRING OF SANDWICH MATERIALS WITH DETACHABLE MECHANICAL CONNECTION TECHNOLOGY Jörg Felhusen an Sivakumara K. Krishnamoorthy RWTH Aachen University, Chair an Insitute for Engineering

More information

Rural Development Tools: What Are They and Where Do You Use Them?

Rural Development Tools: What Are They and Where Do You Use Them? Faculty Paper Series Faculty Paper 00-09 June, 2000 Rural Development Tools: What Are They an Where Do You Use Them? By Dennis U. Fisher Professor an Extension Economist -fisher@tamu.eu Juith I. Stallmann

More information

Inverse Trig Functions

Inverse Trig Functions Inverse Trig Functions c A Math Support Center Capsule February, 009 Introuction Just as trig functions arise in many applications, so o the inverse trig functions. What may be most surprising is that

More information

2r 1. Definition (Degree Measure). Let G be a r-graph of order n and average degree d. Let S V (G). The degree measure µ(s) of S is defined by,

2r 1. Definition (Degree Measure). Let G be a r-graph of order n and average degree d. Let S V (G). The degree measure µ(s) of S is defined by, Theorem Simple Containers Theorem) Let G be a simple, r-graph of average egree an of orer n Let 0 < δ < If is large enough, then there exists a collection of sets C PV G)) satisfying: i) for every inepenent

More information

Minimum-Energy Broadcast in All-Wireless Networks: NP-Completeness and Distribution Issues

Minimum-Energy Broadcast in All-Wireless Networks: NP-Completeness and Distribution Issues Minimum-Energy Broacast in All-Wireless Networks: NP-Completeness an Distribution Issues Mario Čagal LCA-EPFL CH-05 Lausanne Switzerlan mario.cagal@epfl.ch Jean-Pierre Hubaux LCA-EPFL CH-05 Lausanne Switzerlan

More information

Collaborating organisations

Collaborating organisations Collaborating organisations Collaborating entities in Spain National entities EAPN- Spain (European Anti-poverty and Social Exclusion Network in Spain) Luís Vives Foundation ONCE Foundation ESPLAI Foundation

More information

Mandate-Based Health Reform and the Labor Market: Evidence from the Massachusetts Reform

Mandate-Based Health Reform and the Labor Market: Evidence from the Massachusetts Reform Manate-Base Health Reform an the Labor Market: Evience from the Massachusetts Reform Jonathan T. Kolsta Wharton School, University of Pennsylvania an NBER Amana E. Kowalski Department of Economics, Yale

More information

Hull, Chapter 11 + Sections 17.1 and 17.2 Additional reference: John Cox and Mark Rubinstein, Options Markets, Chapter 5

Hull, Chapter 11 + Sections 17.1 and 17.2 Additional reference: John Cox and Mark Rubinstein, Options Markets, Chapter 5 Binomial Moel Hull, Chapter 11 + ections 17.1 an 17.2 Aitional reference: John Cox an Mark Rubinstein, Options Markets, Chapter 5 1. One-Perio Binomial Moel Creating synthetic options (replicating options)

More information

Consumer Referrals. Maria Arbatskaya and Hideo Konishi. October 28, 2014

Consumer Referrals. Maria Arbatskaya and Hideo Konishi. October 28, 2014 Consumer Referrals Maria Arbatskaya an Hieo Konishi October 28, 2014 Abstract In many inustries, rms rewar their customers for making referrals. We analyze the optimal policy mix of price, avertising intensity,

More information

A Comparison of Wind Power Industry Development Strategies in Spain, India and China

A Comparison of Wind Power Industry Development Strategies in Spain, India and China A Comparison of Wind Power Industry Development Strategies in Spain, India and China Joanna I. Lewis 1 Prepared for the Center for Resource Solutions Supported by the Energy Foundation, China Sustainable

More information

Bond Calculator. Spreads (G-spread, T-spread) References and Contact details

Bond Calculator. Spreads (G-spread, T-spread) References and Contact details Cbons.Ru Lt. irogovskaya nab., 21, St. etersburg hone: +7 (812) 336-97-21 http://www.cbons-group.com Bon Calculator Bon calculator is esigne to calculate analytical parameters use in assessment of bons.

More information

11 CHAPTER 11: FOOTINGS

11 CHAPTER 11: FOOTINGS CHAPTER ELEVEN FOOTINGS 1 11 CHAPTER 11: FOOTINGS 11.1 Introuction Footings are structural elements that transmit column or wall loas to the unerlying soil below the structure. Footings are esigne to transmit

More information