Review of WINBUGS. 1. Introduction. by Harvey Goldstein Institute of Education University of London

Size: px
Start display at page:

Download "Review of WINBUGS. 1. Introduction. by Harvey Goldstein Institute of Education University of London"

Transcription

1 Review of WINBUGS by Harvey Goldstein Institte of Edcation University of London Introdction This review is based pon the beta release of WINBUGS.4 which has several enhancements over version.3. WINBUGS, a Bayesian MCMC package, is distribted freely and is the reslt of many years of development by a team of statisticians and programmers at the Medical research Concil Biostatistics Research Unit in Cambridge ( Models are represented by a flexible langage, and there is also a graphical featre, DOODLEBUGS, that allows sers to specify their model in terms of a directed graph. For complex models the latter can be extremely sefl, bt we will not se it in this review since all the models dealt with are relatively straightforwardly expressed sing the command langage. The topic of Bayesian estimation sing Markov Chain Monte Carlo (MCMC) methods has an extensive literatre and sers are well advised to introdce themselves to this before sing these methods. The WINBUGS manal provides a good starting place. In this review we shall not be exploring the fll range of possibilities provided by WINBUGS, althogh, where appropriate these will be referred to. We shall give examples of WINBUGS code where this is illminative, bt since this review is not a gide to sing WINBUGS, we will not be exhastive. Users of simlation based methods sch as MCMC shold remember that, nlike maximm likelihood procedres, there is a stochastic element to the estimates obtained and that procedres for jdging convergence and accracy are more complex and a certain amont of jdgement and experience is involved. The WINBUGS manal is a sefl sorce here. The advantage of MCMC estimation, apart from the obvios one for those who wish to adopt a Bayesian approach, is that, like bootstrapping, it provides accrate estimates for parameter qantiles. One disadvantage is the time taken to obtain reslts and often the se of likelihood based methods for initial model exploration prior to sing MCMC will be efficient. Also, there are still many isses whose soltion is less than clearct. For mltilevel models, one of these is the isse of choice of priors for variance and covariance parameters; we have adopted the WINBUGS gamma and Wishart defalts, bt see Browne (998) for a frther discssion. Another isse is that of model comparison and we have sed the Bayesian Deviance Information Criterion for this (Spiegelhalter et al. ).

2 . Data interface Data is inpt to WINBUGS as three components that can be in the same of different files. The first is a series of model specification instrctions, the second contains the observed data and the third contains a set of starting vales. In fact WINBUGS will itself obtain starting vales if reqired, bt generally it is better for the ser to specify these. We shall illstrate the se of these components in the first example below. WINBUGS rns nder varios versions of windows. Older versions will also rn nder other operating systems sch as LINUX see the WINBUGS website for more information. While WINBUGS.4 has many sefl graphical tools, there is also a site of rotines, CODA, that can provide additional plotting featres for WINBUGS otpt in SPLUS or R. The principal featres will be illstrated in or first example.. Model types The range of model types that can be fitted in WINBUGS is very large. The langage allows a wide variety of linear and nonlinear model forms, inclding the standard set of generalised linear models. For the random effects a variety of distribtional forms can be specified, inclding the mltivariate Normal and T-distribtions. Spatial models and latent variable models can be fitted. In addition a range of prior distribtions is available with standard defalts. All of the models in this set of reviews can be fitted in WINBUGS.. Examples. Two and three level Normal models The first model we fit is a variance components -level model sing the EXAM data set and we shall se it to illstrate the se of the WINBUGS modelling langage. The model is y j = ( Xβ ) + + e ~ N(, j e ~ N(, e where i,j respectively index level and level and ( X β ) represents the fixed part contribtion for the i,j - th record. The fixed part here incldes the intercept ( β ) and for covariates, β, β, β3, β 4, being LRT score, gender, school gender composition ( dmmy variables; boys school and girls school contrasted with base category, mixed school). We discss priors below. The WINBUGS model specification code for fitting this model is as follows: ()

3 model { # Level definition for(i in :N) { normexam[i] ~ dnorm(m[i],ta) m[i]<- beta[] * cons[i] + beta[] * standlrt[i] + beta[3] * gender[i] + beta[4] * boysch[i] + beta[5] * girlsch[i] + [school[i]] * cons[i] # Higher level definitions for (j in :n) { [j] ~ dnorm(,ta.) # Priors for fixed effects for (k in :5) { beta[k] ~ dflat() # Priors for random terms ta ~ dgamma(.,.) sigma <- /ta ta. ~ dgamma(.,.) sigma. <- /ta. Notes: Comments (starting with #) are inserted for ease of reading Line 5 specify that the response is Normal, and has a mean m(i) and precision ta. The precision is simply the inverse of the variance and this relationship as specified in the penltimate line by the logical or deterministic (i.e. nonstochastic) relationship sigma. <- /ta.. Lines 6 specify m(i) as a linear additive fnction of the intercept and for covariates and line adds the set of random effects where school(i) is the school ID (.65) for record i and is mltiplied by which is a random variable (see below). This prodct is also mltiplied by cons(i) which here is strictly neccessary bt is retained for consistency with general random coefficient models where the explanatory variable associated with a random coefficient is reqired. Note that constants N, n sed here have vales that are inpt with the data (see later), bt we cold have specified the vales, 459, 65, instead. Under priors for the fixed effects we se a flat i.e. niform prior across the whole real line, for each regression (fixed effect) coefficient. An alternative, proper prior which is fnctionally eqivalent is a Normal with a very large 6 variance, e.g. N(,* ) which is sed in WINBUGS ttorials. Under priors for random terms we give the precisions Gamma (.,.) priors the WINBUGS defalt. Other choices are available see Browne (998) for more discssion. Under higher level definitions the distribtion of (j) (j= n) is specified as Normal mean and precision ta.. The final line relates the level variance to this precision parameter. We can also specify frther logically derived parameters. For example the variance partition coefficient (VPC Goldstein et al, ) which is here

4 eqivalent to the intra-clster correlation can be specified sing the logical relationship: vpc <- sigma./(sigma.+sigma). We can then monitor this (see below) and obtain any reqired estimates. WINBUGS will calclate starting vales bt it is better to inpt sensible vales and we se those from an ML fit sing another package. In fact, MlwiN will also provide the WINBUGS code for many of the mltilevel models that it can fit and this can provide MlwiN sers with a sefl shortct to setting p the specification as well as providing starting vales. The starting vales for the parameters (inclding the random effects residal estimates) can be placed in the same or a different file form the model specification. The following are the REML parameter estimates together with the estimated residals. list(beta= c(-.6473,.5594,.673,.68344,.5358), = c(.46899,.364,.58748,.653,.34638,.467,.3488,-.79,-.4996,-.4358,.79955,.356,-.8845,-.8899,-.95,-.5533, ,-.973,.79768,.947,.86,-.3585, ,.69,-.3736,.64497,.98,-.5769,.96585,.584, ,.84659,.7995,-.4588,-.3997,-.8345,-.937, ,-.6536,-.354,.795,.8898,-.857,-.4797,-.966, ,.96,-.844,-.68,-.7963,.4859,.3845,.5898, , ,.69899,.3463,.75, ,.8485,.4367,.396,.5939,.87875, ), ta=.77647, ta.=.5564) The data can also be placed in a separate file or the same file and the following is the start of this file list(n= 459, n = 65, school = c(,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,3,3,3,3,3,3,3,3, Under the specification men the ser first checks the syntax of the model. Assming it is syntactivcally correct (message appears) the data are loaded and then the initial vales. The ser chooses which parameters to monitor from the inference men and chooses the nmber of iterations to convergence to a stationary chain (the brn in). The nmber of following iterations pon which the estimates are based is then chosen and the ser can also observe the chains. In the present case we therefore begin to sample from iteration 5 (set beg to 5 (leave end at defalt) and choose to inclde all the fixed and random parameters as nodes to sample. We cold also sample the residals if we wished. In the model window we select 55 pdates. The otpt choices are flexible in terms of the parameter estimates and statistics derived from the chain sch as qantiles. A fit statistic is also available (DIC) which allows model comparisons. To se this we need to first carry ot the brn in, then set DIC nder the inference men and then sample the 5 pdates. When these are complete we can click on DIC to obtain the vale. After estimation has finished we can obtain or estimates, traces and kernel density

5 plots for the parameter posterior distribtions. Table compares two WINBUGS rns with a 5 brn in and 5 and following iterations, together with the REML estimates. Table. Two level Normal response model for EXAM data Parameter REML estimator (s.e.) WINBUGS (5) (95% interval) β WINBUGS () (95% interval) β.56 (.3).56 (.535,.584).56(.535,.584) β.67 (.34).67 (.99,.34).67 (.98,.33) β.78 (.4).76 (-.36,.383).8 (-.33,.394) 3 β.59 (.89).6 (-.6,.39).6 (-.,.338) 4.86 (.7).88 (.57,.3).88 (.58,.3).563 (.3).563 (.539,.588).563 (.539,.588) e DIC Time.4 secs (SAS) 7 mins. secs* mins. 45 secs* *incldes 5 iterations to convergence (Brn in). MCMC estimates are the chain means. Converted to eqivalent time on 433Mhz Pentim II nder Windows. As can be seen there is very little change between 5 and iterations. The point estimates are similar to the REML estimates and 95% confidence intervals sing a Normal approximation are also close, except for the level variance parameter. If the modal or median rather than mean are sed from MCMC we wold expect closer agreement with REML; in the present case the median for the level variance is.86. The following are the trace and kernel density plot for the level variance for the analysis sing iterations. The kernel density is nsmoothed; this may be changed in later versions. Trace for level variance sigma iteration Kernel density estimate for level variance

6 3.... sg a sa pe In the remaining examples we shall give reslts from rnning iterations with a 5 brn in. We now fit a model where the level variance is a fnction of gender and this is followed by a model where the log(level variance) is a fnction of STANDLRT. The model specifications are given in the following boxes and the reslts in Table. Finally we show below the model specification for a model where STANDLRT has a coefficient random at the school level. model { # Level definition for(i in :N) { normexam[i] ~ dnorm(m[i],ta) m[i]<- beta[] * cons[i] + beta[] * standlrt[i] + beta[3] * gender[i] + beta[4] * boysch[i] + beta[5] * girlsch[i] + [school[i],] * cons[i] + [school[i],] * standlrt[i] # Higher level definitions for (j in :n) { [j,:] ~ dmnorm(zero[:],ta.[:,:]) # Priors for fixed effects for (k in :5) { beta[k] ~ dflat() # Priors for random terms ta ~ dgamma(.,.) sigma <- /ta for (i in :) {zero[i] <- ta.[:,:] ~ dwish(r[:, :],) sigma.[:,:] <- inverse(ta.[,]) Note that we have sed a minimally informative Wishart distribtion as prior for the inverse covariance matrix by giving it degrees of freedom eqal to the order of the matrix and we can choose the Wishart matrix parameters as eqal to the (inverse) covariance matrix based pon ML. These vales, R, will be declared with the data. Other priors are possible inclding a niform.. Complex level variation We fit a separate variance for boys and girls as follows:

7 y e x j = ( Xβ ) = e ( x + ~ N(, = if girl j + e ) + e e e x e ~ N e () Note that WINBUGS can fit other complex level variance fnctions. A sefl one is the logarithm of the level variance as a linear fnction of the STANDLRT score which garantees a positive variance. This wold be written y j = ( Xβ ) e e + ~ N(, j + e e log ( = α + α x ~ N(, e Note that in WINBUGS we need to express the precision as a linear fnction, in which case the coefficients simply reverse their sign. For the first model the WINBUGS specification wold be model { # Level definition for(i in :N) { normexam[i] ~ dnorm(m[i],ta[i]) m[i]<- beta[] * cons[i] + beta[] * standlrt[i] + beta[3] * boysch[i] + beta[4] * girlsch[i] + beta[5] * girl[i] + [school[i]] * cons[i] # Higher level definitions for (j in :n) { [j] ~ dnorm(,ta.) # Priors for fixed effects for (k in :5) { beta[k] ~ dflat() # Priors for random terms for(i in :N) { ta[i] <- /sigma[i] sigma[i] <- va[] * girl[i] * girl[i] + va[] * boy[i] * boy[i] for(i in :) { va[i] ~ dflat() ta. ~ dgamma(.,.) sigma. <- /ta. (3) Note that we se girl in the fixed part and both the dmmy variables girl and boy for level. This reqires that the data for boy is also entered. Note also that we have sed flat priors for the level variance parameters; when we have a general fnction of explanatory variables - we cannot se gamma priors for variances. In fact in the gender case we cold have specified gamma priors since we are really fitting two separate variances.

8 Table. Two level Normal response model for EXAM data with complex level variance Parameter β -.96 Separate gender variances Estimate (95% interval) β.548 (.493,.63) β.69 (.,.3) β.93 (-.3,.43) 3 β.89 (.,.34) 4 β.8 (-.5,.64) 5.88 (.58,.8). (.,.38).5 (.9,.7).589 (.55,.63) e.54 (.499,.556) e α α DIC 987. Time mins 3 secs..3 Three level Normal response model For this example we se the chem97 data set consisting of 3 stdents nested within 79 schools within 3 Edcation athorities. y v k = ( Xβ ) + v + + e ~ N(,, v k j jk k ~ N(, e ~ N(, e (4) where we have the intercept and GCSE average score as predictors. Table 3 presents the reslts.

9 Table 3. Three level Normal response model for CHEM97 data Parameter β WINBUGS () (95% interval) β.473 (.44,.55).9 (.,.45) v.7 (.66,.8) 5.55 (5.69, 5.4) e DIC Time 8 mins. The level 3 variance is very poorly estimated, and in fact the mode of the distribtion is at zero as is shown by the following kernel density estimate A binary response model The dataset sed is the fertility srvey data BANG. In the fixed part the intercept and for covariates are fitted; rban, age, and for dmmy variables for nmber of children in family (,, 3+) with no children as base category. The logit link fnction model is logit( π ) = ( Xβ ) + y j ~ Bin(, π ) ~ N(, j For the probit link fnction we can write the model as: probit( π ) = ( Xβ ) + y j ~ Bin(, π ) ~ N(, j bt we can also estimate the parameters of the nderlying Normal. Consider the -level model y = ( XB) + + e j (5) (6) e ~ N(,) j ~ N(, (7)

10 where y is the probit that determines the probability of a correct response, namely y φ ( tdt ), φ( t) is pdf of N(,) (8) By inserting another step into the MCMC algorithm we can generate a chain from the nderlying Normal distribtion at level. Threshold models sch as (7) & (8) have a nmber of ses where the binary responses can be thoght of as generated from trncation of an nderlying continos distribtion. Frthermore, estimation sing this procedre is often faster since Gibbs sampling rather than, say, Metroplois Hastings or adaptive rejection methods can be sed. A similar device can be sed with the logistic link where we define an nderlying logistic distribtion. See Browne (3) for more details. In the present case we se the standard WINBUGS probit fnction and the model specification is as follows: model { # Level definition for(i in :N) { se[i] ~ dbin(p[i],denom[i]) probit(p[i]) <- beta[] * cons[i] + beta[] * rban[i] + beta[3] * agecentered[i] + beta[4] * one[i] + beta[5] * two[i] + beta[6] * three_[i] + [district[i]] * cons[i] # Higher level definitions for (j in :n) { [j] ~ dnorm(,ta.) # Priors for fixed effects for (k in :6) { beta[k] ~ dflat() # Priors for random terms ta. ~ dgamma(.,.) sigma. <- /ta.

11 Table 4. Two level binary response model for BANG data with logistic and probit link fnctions. Logit Probit Parameter Estimate (95% interval) Estimate (95% interval) β β.735 (.5,.963).45 (.38,.588) β -.8 (-.43, -.) -.7 (-.6, -.7) β.3 (.834,.448).676 (.486,.855) 3 β.43 (.63,.75).84 (.63,.48) 4 β.38 (.,.78).85 (.6,.53) 5.4 (.7,.437).86 (.4,.56) DIC Time 4mins. secs. 6 mins. Note that the DIC vales are almost identical sggesting that the models fit eqally well..5 A mltivariate model with missing responses The data set is GCSEMV, with two responses from ppils to a written and corsework assessment. The model sed is as follows: y y e e j j = β + β x = β + β x ~ N, e ~ N, e + j + j + e + e e The model specification is as follows, sing a similar formlation for the Wishart priors as with the random coefficient model. We have called the response vector MV_RESP. The covariate is gender (girls=). (9)

12 model { # Level definition for(i in :N) { MV_RESP[i,:] ~ dmnorm(m[i,:],ta.[:,:]) m[i,] <- beta[] * CONS[i] + beta[3] * FEMALE[i] + 3[MV_SCHOO[i],] * CONS[i] m[i,] <- beta[] * CONS[i] + beta[4] * FEMALE[i] + 3[MV_SCHOO[i],] * CONS[i] # Higher level definitions for (j in :n3) { 3[j,:] ~ dmnorm(zero3[:],ta.3[:,:]) # Priors for fixed effects for (k in :4) { beta[k] ~ dflat() # Priors for random terms ta.[:,:] ~ dwish(r[:,:],) sigma.[:,:] <- inverse(ta.[,]) for (i in :) {zero3[i] <- ta.3[:,:] ~ dwish(r3[:, :],) sigma.3[:,:] <- inverse(ta.3[,]) In WINBUGS missing vales are denoted by NA and are handled sing imptation for a mltivariate Normal response, althogh this is not available for a mltivariate t- distribtion response. Table 5 gives the reslts Table 5. Bivariate Normal response for written and corsework assessment. Written Corsework Parameter Estimate (95% interval) Estimate (95% interval) β 49.6 (47.8, 5.4) 69.7 (67.5, 7.) β -.53 (-3.6, -.38) 6.73 (5.37, 8.4) 49.7 (33., 7.7) 6.4 (., 47.7) 79.6 (54.4, 5.5) 4.9 (6.8, 33.7) e 73. (65., 8.6) e 8.6 (69.9, 93.4) e DIC 99.3 Time mins. 3 secs.

13 .6 Cross classified data The data set is LEV-XC consisting of examination reslts for stdents cross classified by primary and secondary school. The model is Y = β + β x e e i (3),sec( i) (),prim( i) i ~ N(, ~ N(, ~ N(, i e (3),sec( i) (3) ) () ) (), prim( i) i This ses the classification notation introdced by Browne et al. (). The sperscript denotes the classification nmber (not the level) where the ppil level term is at level, and the sperscript is omitted for convenience. The term sec(i)denotes the secondary school to which ppil I belongs and similarly prim(i) the primary school. The covariate is a dmmy variable for gender (girl=). x The WINBUGS model specification is as follows model { # Level definition for(i in :N) { ATTAIN[i] ~ dnorm(m[i],ta) m[i]<- beta[] * CONS[i] + beta[] * SEX[i] + [PID[i]] * CONS[i] + 3[SID[i]] * CONS[i] # Higher level definitions for (j in :n) { [j] ~ dnorm(,ta.) for (j in :n3) { 3[j] ~ dnorm(,ta.3) # Priors for fixed effects for (k in :) { beta[k] ~ dflat() # Priors for random terms ta ~ dgamma(.,.) sigma <- /ta ta. ~ dgamma(.,.) sigma. <- /ta. ta.3 ~ dgamma(.,.) sigma.3 <- /ta.3 Where PID is the ppil identification. The data are sorted on secondary school within primary school so that the first few ppil records for the secondary school data and for the primary school data are respectively () 9,9,9,9,9,9,,,9,9, 9,9,9,9,9,9,,9,9,9, 9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,,8,,9,,9,9,9,9,9,9,,9,, 9,9,9,9,7,7,7,7,7,7, 7,5,5,5,9,9,9,9,9,9, 6,,,,,,,,,,,,,,,,,,,,

14 ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,4,4,4,4,4,4, 4,5,5,5,5,5,5,5,5,5, The reslts are given in Table 6. Table 6. Two level cross classified model sing LEV-XC attainment data. Parameter β 5.53 Estimate (95% interval) β.498 (.34,.69).4 (.38,.94) (3).3 (.77,.6) () 8.6 (7.687, 8.457) e DIC 74.8 Time 8mins. secs. The wide interval estimate for the secondary school variance reflects the fact that there are only 9 sch schools in the data set..7 Mlticategorical response models The dataset sed is the social attitdes data with the response being the nmber of positive answers to seven qestions with seven codes being or,, 3, 4, 5, 6, 7. This scale is ordered bt for illstration we shall fit both ordered and nordered models. Each respondent has a response in each of 4 years. For the prpose of the present analysis we treat the years as independent replications so that there are jst 4 trials for each respondent. For the nordered case we fit the mltivariate logit model for t categories E( y ) = π ( s) ( s) ( s) π ( s) ( s) log () j, s=,..., t- t = β + π ~ MVN(, Ω ) j where we fit only intercept terms. The covariance matrix Ω is of order ( t ) ( t ) in general bt for present prposes we assme a common ()

15 single variance at level. For the ordered case we fit the model for the cmlative probabilities defined as s ( s) ( s) ( h) h= E( y ) = γ = π, s=,..., t () with γ = {+ exp [ β + β x + β x + β x + ] ( s) ( s) 3 3 j ~ N(, j (3) where we have inclded three covariates which are dmmy variables for the religios categories Roman Catholic, Protestant and others and where only the intercept (threshold) term varies across categories. The WINBUGS model specification code for the nordered and ordered models respectively is and The reslts are given in Table 7.

16 Table 7. Two level ordered and nordered mltinomial response model for SOCATT attitde data with logistic link fnction. Category 7 is the base category. Unordered Ordered (, iterations) Parameter Estimate (95% interval) Estimate (95% interval) () β -.93 (-.456, -.4) (-5.73, -.695) () β -.58 (-.697, -.833) -.6 (-3.45, -.95) (3) β.3 (-.7,.687).669 (-.67,.87) (4) β -.36 (-.76,.47).67 (.33,.83) (5) β -.38 (-.78,.4).58 (.9, 3.746) (6) β -.64 (-.653,.33) 3.57 (.84, 4.83) β -.48 (-3.59, -.86) β (-.33,.554) β (-4.396, -.669) (3.96, 8.69) (4.64, 7.) DIC Time 3. Docmentation, ser spport and general conclsions There is an on line manal spplied with the software which is a fairly basic description of the packages featres. There is no HELP system, and this wold be a very welcome ftre addition. There is a sefl ttorial example in the manal which, together with a series of worked examples with real datasets shold enable new sers to get started. There is a discssion list for sers of WINBUGS where isses are discssed. To access this go to This is an active list where sers share ideas and problems. In addition the developers of WINBUGS are happy to receive feedback; go to WINBUGS is a very impressive package, especially given its free distribtion policy. It is perhaps the best known Bayesian modelling package and is flexible enogh to handle a very wide range of models. In this review we have only toched pon a few of its facilities. Becase of its generality it is not necessarily as comptationally efficient as other packages which can fit MCMC models, sch as MlwiN (see the comparative tables) bt its greater model flexibility does allow new models to be developed. One drawback of WINBUGS is that is rather cmbersome to se if one wishes to carry ot extensive model exploration trying different model formlations. For this prpose one of the likelihood based packages cold be sed with final

17 estimates obtained from WINBUGS. Another isse is that there is a great deal of embedded statistical theory within WINBUGS which will make considerable demands on less statistically experienced sers. There are other isses associated with Bayesian modelling, sch as choice of priors, bt it is not the prpose of this review to enter into these. If yo want a very flexible MCMC Bayesian package for mltilevel modelling, WINBUGS is an excellent choice. References Browne, W. (998). Applying MCMC methods to mltilevel models. Statistics. Bath, University of Bath. Browne, W., Goldstein, H. and Rasbash, J. (). Mltiple membership mltiple classification (MMMC) models. Statistical Modelling : 3-4. Spiegelhalter, D., Best, N., Carlin, B. P. and Van der Linde, A. (). Bayesian measres of model complexity and fit (with discssion). Jornal of the Royal Statistical Society, B 64:

3.1 The Basic Two-Level Model - The Formulas

3.1 The Basic Two-Level Model - The Formulas CHAPTER 3 3 THE BASIC MULTILEVEL MODEL AND EXTENSIONS In the previos Chapter we introdced a nmber of models and we cleared ot the advantages of Mltilevel Models in the analysis of hierarchically nested

More information

The Dual of the Maximum Likelihood Method

The Dual of the Maximum Likelihood Method Department of Agricltral and Resorce Economics University of California, Davis The Dal of the Maximm Likelihood Method by Qirino Paris Working Paper No. 12-002 2012 Copyright @ 2012 by Qirino Paris All

More information

Summary of Talk Background to Multilevel modelling project. What is complex level 1 variation? Tutorial dataset. Method 1 : Inverse Wishart proposals.

Summary of Talk Background to Multilevel modelling project. What is complex level 1 variation? Tutorial dataset. Method 1 : Inverse Wishart proposals. Modelling the Variance : MCMC methods for tting multilevel models with complex level 1 variation and extensions to constrained variance matrices By Dr William Browne Centre for Multilevel Modelling Institute

More information

QUANTILE ESTIMATION IN SUCCESSIVE SAMPLING

QUANTILE ESTIMATION IN SUCCESSIVE SAMPLING Jornal of the Korean Statistical Society 2007, 36: 4, pp 543 556 QUANTILE ESTIMATION IN SUCCESSIVE SAMPLING Hosila P. Singh 1, Ritesh Tailor 2, Sarjinder Singh 3 and Jong-Min Kim 4 Abstract In sccessive

More information

Study on the impulsive pressure of tank oscillating by force towards multiple degrees of freedom

Study on the impulsive pressure of tank oscillating by force towards multiple degrees of freedom EPJ Web of Conferences 80, 0034 (08) EFM 07 Stdy on the implsive pressre of tank oscillating by force towards mltiple degrees of freedom Shigeyki Hibi,* The ational Defense Academy, Department of Mechanical

More information

We automate the bivariate change-of-variables technique for bivariate continuous random variables with

We automate the bivariate change-of-variables technique for bivariate continuous random variables with INFORMS Jornal on Compting Vol. 4, No., Winter 0, pp. 9 ISSN 09-9856 (print) ISSN 56-558 (online) http://dx.doi.org/0.87/ijoc.046 0 INFORMS Atomating Biariate Transformations Jeff X. Yang, John H. Drew,

More information

UNCERTAINTY FOCUSED STRENGTH ANALYSIS MODEL

UNCERTAINTY FOCUSED STRENGTH ANALYSIS MODEL 8th International DAAAM Baltic Conference "INDUSTRIAL ENGINEERING - 19-1 April 01, Tallinn, Estonia UNCERTAINTY FOCUSED STRENGTH ANALYSIS MODEL Põdra, P. & Laaneots, R. Abstract: Strength analysis is a

More information

Stability of Model Predictive Control using Markov Chain Monte Carlo Optimisation

Stability of Model Predictive Control using Markov Chain Monte Carlo Optimisation Stability of Model Predictive Control sing Markov Chain Monte Carlo Optimisation Elilini Siva, Pal Golart, Jan Maciejowski and Nikolas Kantas Abstract We apply stochastic Lyapnov theory to perform stability

More information

Trace-class Monte Carlo Markov Chains for Bayesian Multivariate Linear Regression with Non-Gaussian Errors

Trace-class Monte Carlo Markov Chains for Bayesian Multivariate Linear Regression with Non-Gaussian Errors Trace-class Monte Carlo Markov Chains for Bayesian Mltivariate Linear Regression with Non-Gassian Errors Qian Qin and James P. Hobert Department of Statistics University of Florida Janary 6 Abstract Let

More information

BLOOM S TAXONOMY. Following Bloom s Taxonomy to Assess Students

BLOOM S TAXONOMY. Following Bloom s Taxonomy to Assess Students BLOOM S TAXONOMY Topic Following Bloom s Taonomy to Assess Stdents Smmary A handot for stdents to eplain Bloom s taonomy that is sed for item writing and test constrction to test stdents to see if they

More information

Decision Oriented Bayesian Design of Experiments

Decision Oriented Bayesian Design of Experiments Decision Oriented Bayesian Design of Experiments Farminder S. Anand*, Jay H. Lee**, Matthew J. Realff*** *School of Chemical & Biomoleclar Engineering Georgia Institte of echnology, Atlanta, GA 3332 USA

More information

Modelling by Differential Equations from Properties of Phenomenon to its Investigation

Modelling by Differential Equations from Properties of Phenomenon to its Investigation Modelling by Differential Eqations from Properties of Phenomenon to its Investigation V. Kleiza and O. Prvinis Kanas University of Technology, Lithania Abstract The Panevezys camps of Kanas University

More information

RELIABILITY ASPECTS OF PROPORTIONAL MEAN RESIDUAL LIFE MODEL USING QUANTILE FUNC- TIONS

RELIABILITY ASPECTS OF PROPORTIONAL MEAN RESIDUAL LIFE MODEL USING QUANTILE FUNC- TIONS RELIABILITY ASPECTS OF PROPORTIONAL MEAN RESIDUAL LIFE MODEL USING QUANTILE FUNC- TIONS Athors: N.UNNIKRISHNAN NAIR Department of Statistics, Cochin University of Science Technology, Cochin, Kerala, INDIA

More information

Technical Note. ODiSI-B Sensor Strain Gage Factor Uncertainty

Technical Note. ODiSI-B Sensor Strain Gage Factor Uncertainty Technical Note EN-FY160 Revision November 30, 016 ODiSI-B Sensor Strain Gage Factor Uncertainty Abstract Lna has pdated or strain sensor calibration tool to spport NIST-traceable measrements, to compte

More information

RESGen: Renewable Energy Scenario Generation Platform

RESGen: Renewable Energy Scenario Generation Platform 1 RESGen: Renewable Energy Scenario Generation Platform Emil B. Iversen, Pierre Pinson, Senior Member, IEEE, and Igor Ardin Abstract Space-time scenarios of renewable power generation are increasingly

More information

An Investigation into Estimating Type B Degrees of Freedom

An Investigation into Estimating Type B Degrees of Freedom An Investigation into Estimating Type B Degrees of H. Castrp President, Integrated Sciences Grop Jne, 00 Backgrond The degrees of freedom associated with an ncertainty estimate qantifies the amont of information

More information

Multilevel Statistical Models: 3 rd edition, 2003 Contents

Multilevel Statistical Models: 3 rd edition, 2003 Contents Multilevel Statistical Models: 3 rd edition, 2003 Contents Preface Acknowledgements Notation Two and three level models. A general classification notation and diagram Glossary Chapter 1 An introduction

More information

Sources of Non Stationarity in the Semivariogram

Sources of Non Stationarity in the Semivariogram Sorces of Non Stationarity in the Semivariogram Migel A. Cba and Oy Leangthong Traditional ncertainty characterization techniqes sch as Simple Kriging or Seqential Gassian Simlation rely on stationary

More information

FOUNTAIN codes [3], [4] provide an efficient solution

FOUNTAIN codes [3], [4] provide an efficient solution Inactivation Decoding of LT and Raptor Codes: Analysis and Code Design Francisco Lázaro, Stdent Member, IEEE, Gianligi Liva, Senior Member, IEEE, Gerhard Bach, Fellow, IEEE arxiv:176.5814v1 [cs.it 19 Jn

More information

Discussion of The Forward Search: Theory and Data Analysis by Anthony C. Atkinson, Marco Riani, and Andrea Ceroli

Discussion of The Forward Search: Theory and Data Analysis by Anthony C. Atkinson, Marco Riani, and Andrea Ceroli 1 Introdction Discssion of The Forward Search: Theory and Data Analysis by Anthony C. Atkinson, Marco Riani, and Andrea Ceroli Søren Johansen Department of Economics, University of Copenhagen and CREATES,

More information

VIBRATION MEASUREMENT UNCERTAINTY AND RELIABILITY DIAGNOSTICS RESULTS IN ROTATING SYSTEMS

VIBRATION MEASUREMENT UNCERTAINTY AND RELIABILITY DIAGNOSTICS RESULTS IN ROTATING SYSTEMS VIBRATIO MEASUREMET UCERTAITY AD RELIABILITY DIAGOSTICS RESULTS I ROTATIG SYSTEMS. Introdction M. Eidkevicite, V. Volkovas anas University of Technology, Lithania The rotating machinery technical state

More information

STEP Support Programme. STEP III Hyperbolic Functions: Solutions

STEP Support Programme. STEP III Hyperbolic Functions: Solutions STEP Spport Programme STEP III Hyperbolic Fnctions: Soltions Start by sing the sbstittion t cosh x. This gives: sinh x cosh a cosh x cosh a sinh x t sinh x dt t dt t + ln t ln t + ln cosh a ln ln cosh

More information

Simulation investigation of the Z-source NPC inverter

Simulation investigation of the Z-source NPC inverter octoral school of energy- and geo-technology Janary 5 20, 2007. Kressaare, Estonia Simlation investigation of the Z-sorce NPC inverter Ryszard Strzelecki, Natalia Strzelecka Gdynia Maritime University,

More information

Chapter 4 Supervised learning:

Chapter 4 Supervised learning: Chapter 4 Spervised learning: Mltilayer Networks II Madaline Other Feedforward Networks Mltiple adalines of a sort as hidden nodes Weight change follows minimm distrbance principle Adaptive mlti-layer

More information

Discontinuous Fluctuation Distribution for Time-Dependent Problems

Discontinuous Fluctuation Distribution for Time-Dependent Problems Discontinos Flctation Distribtion for Time-Dependent Problems Matthew Hbbard School of Compting, University of Leeds, Leeds, LS2 9JT, UK meh@comp.leeds.ac.k Introdction For some years now, the flctation

More information

Safe Manual Control of the Furuta Pendulum

Safe Manual Control of the Furuta Pendulum Safe Manal Control of the Frta Pendlm Johan Åkesson, Karl Johan Åström Department of Atomatic Control, Lnd Institte of Technology (LTH) Box 8, Lnd, Sweden PSfrag {jakesson,kja}@control.lth.se replacements

More information

Frequency Estimation, Multiple Stationary Nonsinusoidal Resonances With Trend 1

Frequency Estimation, Multiple Stationary Nonsinusoidal Resonances With Trend 1 Freqency Estimation, Mltiple Stationary Nonsinsoidal Resonances With Trend 1 G. Larry Bretthorst Department of Chemistry, Washington University, St. Lois MO 6313 Abstract. In this paper, we address the

More information

Section 7.4: Integration of Rational Functions by Partial Fractions

Section 7.4: Integration of Rational Functions by Partial Fractions Section 7.4: Integration of Rational Fnctions by Partial Fractions This is abot as complicated as it gets. The Method of Partial Fractions Ecept for a few very special cases, crrently we have no way to

More information

Lab Manual for Engrd 202, Virtual Torsion Experiment. Aluminum module

Lab Manual for Engrd 202, Virtual Torsion Experiment. Aluminum module Lab Manal for Engrd 202, Virtal Torsion Experiment Alminm modle Introdction In this modle, o will perform data redction and analsis for circlar cross section alminm samples. B plotting the torqe vs. twist

More information

Partitioning variation in multilevel models.

Partitioning variation in multilevel models. Partitioning variation in multilevel models. by Harvey Goldstein, William Browne and Jon Rasbash Institute of Education, London, UK. Summary. In multilevel modelling, the residual variation in a response

More information

Move Blocking Strategies in Receding Horizon Control

Move Blocking Strategies in Receding Horizon Control Move Blocking Strategies in Receding Horizon Control Raphael Cagienard, Pascal Grieder, Eric C. Kerrigan and Manfred Morari Abstract In order to deal with the comptational brden of optimal control, it

More information

Control Performance Monitoring of State-Dependent Nonlinear Processes

Control Performance Monitoring of State-Dependent Nonlinear Processes Control Performance Monitoring of State-Dependent Nonlinear Processes Lis F. Recalde*, Hong Ye Wind Energy and Control Centre, Department of Electronic and Electrical Engineering, University of Strathclyde,

More information

Lecture Notes On THEORY OF COMPUTATION MODULE - 2 UNIT - 2

Lecture Notes On THEORY OF COMPUTATION MODULE - 2 UNIT - 2 BIJU PATNAIK UNIVERSITY OF TECHNOLOGY, ODISHA Lectre Notes On THEORY OF COMPUTATION MODULE - 2 UNIT - 2 Prepared by, Dr. Sbhend Kmar Rath, BPUT, Odisha. Tring Machine- Miscellany UNIT 2 TURING MACHINE

More information

i=1 y i 1fd i = dg= P N i=1 1fd i = dg.

i=1 y i 1fd i = dg= P N i=1 1fd i = dg. ECOOMETRICS II (ECO 240S) University of Toronto. Department of Economics. Winter 208 Instrctor: Victor Agirregabiria SOLUTIO TO FIAL EXAM Tesday, April 0, 208. From 9:00am-2:00pm (3 hors) ISTRUCTIOS: -

More information

Decision Making in Complex Environments. Lecture 2 Ratings and Introduction to Analytic Network Process

Decision Making in Complex Environments. Lecture 2 Ratings and Introduction to Analytic Network Process Decision Making in Complex Environments Lectre 2 Ratings and Introdction to Analytic Network Process Lectres Smmary Lectre 5 Lectre 1 AHP=Hierar chies Lectre 3 ANP=Networks Strctring Complex Models with

More information

Ted Pedersen. Southern Methodist University. large sample assumptions implicit in traditional goodness

Ted Pedersen. Southern Methodist University. large sample assumptions implicit in traditional goodness Appears in the Proceedings of the Soth-Central SAS Users Grop Conference (SCSUG-96), Astin, TX, Oct 27-29, 1996 Fishing for Exactness Ted Pedersen Department of Compter Science & Engineering Sothern Methodist

More information

Optimal search: a practical interpretation of information-driven sensor management

Optimal search: a practical interpretation of information-driven sensor management Optimal search: a practical interpretation of information-driven sensor management Fotios Katsilieris, Yvo Boers and Hans Driessen Thales Nederland B.V. Hengelo, the Netherlands Email: {Fotios.Katsilieris,

More information

BIOSTATISTICAL METHODS

BIOSTATISTICAL METHODS BIOSTATISTICAL METHOS FOR TRANSLATIONAL & CLINICAL RESEARCH ROC Crve: IAGNOSTIC MEICINE iagnostic tests have been presented as alwas having dichotomos otcomes. In some cases, the reslt of the test ma be

More information

A Characterization of Interventional Distributions in Semi-Markovian Causal Models

A Characterization of Interventional Distributions in Semi-Markovian Causal Models A Characterization of Interventional Distribtions in Semi-Markovian Casal Models Jin Tian and Changsng Kang Department of Compter Science Iowa State University Ames, IA 50011 {jtian, cskang}@cs.iastate.ed

More information

FRTN10 Exercise 12. Synthesis by Convex Optimization

FRTN10 Exercise 12. Synthesis by Convex Optimization FRTN Exercise 2. 2. We want to design a controller C for the stable SISO process P as shown in Figre 2. sing the Yola parametrization and convex optimization. To do this, the control loop mst first be

More information

Discussion Papers Department of Economics University of Copenhagen

Discussion Papers Department of Economics University of Copenhagen Discssion Papers Department of Economics University of Copenhagen No. 10-06 Discssion of The Forward Search: Theory and Data Analysis, by Anthony C. Atkinson, Marco Riani, and Andrea Ceroli Søren Johansen,

More information

Uncertainties of measurement

Uncertainties of measurement Uncertainties of measrement Laboratory tas A temperatre sensor is connected as a voltage divider according to the schematic diagram on Fig.. The temperatre sensor is a thermistor type B5764K [] with nominal

More information

A New Approach to Direct Sequential Simulation that Accounts for the Proportional Effect: Direct Lognormal Simulation

A New Approach to Direct Sequential Simulation that Accounts for the Proportional Effect: Direct Lognormal Simulation A ew Approach to Direct eqential imlation that Acconts for the Proportional ffect: Direct ognormal imlation John Manchk, Oy eangthong and Clayton Detsch Department of Civil & nvironmental ngineering University

More information

1. Tractable and Intractable Computational Problems So far in the course we have seen many problems that have polynomial-time solutions; that is, on

1. Tractable and Intractable Computational Problems So far in the course we have seen many problems that have polynomial-time solutions; that is, on . Tractable and Intractable Comptational Problems So far in the corse we have seen many problems that have polynomial-time soltions; that is, on a problem instance of size n, the rnning time T (n) = O(n

More information

Sensitivity Analysis in Bayesian Networks: From Single to Multiple Parameters

Sensitivity Analysis in Bayesian Networks: From Single to Multiple Parameters Sensitivity Analysis in Bayesian Networks: From Single to Mltiple Parameters Hei Chan and Adnan Darwiche Compter Science Department University of California, Los Angeles Los Angeles, CA 90095 {hei,darwiche}@cs.cla.ed

More information

Workshop on Understanding and Evaluating Radioanalytical Measurement Uncertainty November 2007

Workshop on Understanding and Evaluating Radioanalytical Measurement Uncertainty November 2007 1833-3 Workshop on Understanding and Evalating Radioanalytical Measrement Uncertainty 5-16 November 007 Applied Statistics: Basic statistical terms and concepts Sabrina BARBIZZI APAT - Agenzia per la Protezione

More information

Reducing Conservatism in Flutterometer Predictions Using Volterra Modeling with Modal Parameter Estimation

Reducing Conservatism in Flutterometer Predictions Using Volterra Modeling with Modal Parameter Estimation JOURNAL OF AIRCRAFT Vol. 42, No. 4, Jly Agst 2005 Redcing Conservatism in Fltterometer Predictions Using Volterra Modeling with Modal Parameter Estimation Rick Lind and Joao Pedro Mortaga University of

More information

Strategic Timing of Content in Online Social Networks

Strategic Timing of Content in Online Social Networks Strategic Timing of Content in Online Social Networks Sina Modaresi Department of Indstrial Engineering, University of Pittsbrgh, Pittsbrgh PA 56, sim3@pitt.ed Jan Pablo Vielma Sloan School of Management,

More information

Nonlinear parametric optimization using cylindrical algebraic decomposition

Nonlinear parametric optimization using cylindrical algebraic decomposition Proceedings of the 44th IEEE Conference on Decision and Control, and the Eropean Control Conference 2005 Seville, Spain, December 12-15, 2005 TC08.5 Nonlinear parametric optimization sing cylindrical algebraic

More information

Step-Size Bounds Analysis of the Generalized Multidelay Adaptive Filter

Step-Size Bounds Analysis of the Generalized Multidelay Adaptive Filter WCE 007 Jly - 4 007 London UK Step-Size onds Analysis of the Generalized Mltidelay Adaptive Filter Jnghsi Lee and Hs Chang Hang Abstract In this paper we analyze the bonds of the fixed common step-size

More information

Outline. Model Predictive Control: Current Status and Future Challenges. Separation of the control problem. Separation of the control problem

Outline. Model Predictive Control: Current Status and Future Challenges. Separation of the control problem. Separation of the control problem Otline Model Predictive Control: Crrent Stats and Ftre Challenges James B. Rawlings Department of Chemical and Biological Engineering University of Wisconsin Madison UCLA Control Symposim May, 6 Overview

More information

J.A. BURNS AND B.B. KING redced order controllers sensors/actators. The kernels of these integral representations are called fnctional gains. In [4],

J.A. BURNS AND B.B. KING redced order controllers sensors/actators. The kernels of these integral representations are called fnctional gains. In [4], Jornal of Mathematical Systems, Estimation, Control Vol. 8, No. 2, 1998, pp. 1{12 c 1998 Birkhaser-Boston A Note on the Mathematical Modelling of Damped Second Order Systems John A. Brns y Belinda B. King

More information

Development of Second Order Plus Time Delay (SOPTD) Model from Orthonormal Basis Filter (OBF) Model

Development of Second Order Plus Time Delay (SOPTD) Model from Orthonormal Basis Filter (OBF) Model Development of Second Order Pls Time Delay (SOPTD) Model from Orthonormal Basis Filter (OBF) Model Lemma D. Tfa*, M. Ramasamy*, Sachin C. Patwardhan **, M. Shhaimi* *Chemical Engineering Department, Universiti

More information

Lecture 17 Errors in Matlab s Turbulence PSD and Shaping Filter Expressions

Lecture 17 Errors in Matlab s Turbulence PSD and Shaping Filter Expressions Lectre 7 Errors in Matlab s Trblence PSD and Shaping Filter Expressions b Peter J Sherman /7/7 [prepared for AERE 355 class] In this brief note we will show that the trblence power spectral densities (psds)

More information

System identification of buildings equipped with closed-loop control devices

System identification of buildings equipped with closed-loop control devices System identification of bildings eqipped with closed-loop control devices Akira Mita a, Masako Kamibayashi b a Keio University, 3-14-1 Hiyoshi, Kohok-k, Yokohama 223-8522, Japan b East Japan Railway Company

More information

Admissibility under the LINEX loss function in non-regular case. Hidekazu Tanaka. Received November 5, 2009; revised September 2, 2010

Admissibility under the LINEX loss function in non-regular case. Hidekazu Tanaka. Received November 5, 2009; revised September 2, 2010 Scientiae Mathematicae Japonicae Online, e-2012, 427 434 427 Admissibility nder the LINEX loss fnction in non-reglar case Hidekaz Tanaka Received November 5, 2009; revised September 2, 2010 Abstract. In

More information

ON PREDATOR-PREY POPULATION DYNAMICS UNDER STOCHASTIC SWITCHED LIVING CONDITIONS

ON PREDATOR-PREY POPULATION DYNAMICS UNDER STOCHASTIC SWITCHED LIVING CONDITIONS ON PREDATOR-PREY POPULATION DYNAMICS UNDER STOCHASTIC SWITCHED LIVING CONDITIONS Aleksandrs Gehsbargs, Vitalijs Krjacko Riga Technical University agehsbarg@gmail.com Abstract. The dynamical system theory

More information

EXPT. 5 DETERMINATION OF pk a OF AN INDICATOR USING SPECTROPHOTOMETRY

EXPT. 5 DETERMINATION OF pk a OF AN INDICATOR USING SPECTROPHOTOMETRY EXPT. 5 DETERMITIO OF pk a OF IDICTOR USIG SPECTROPHOTOMETRY Strctre 5.1 Introdction Objectives 5.2 Principle 5.3 Spectrophotometric Determination of pka Vale of Indicator 5.4 Reqirements 5.5 Soltions

More information

E ect Of Quadrant Bow On Delta Undulator Phase Errors

E ect Of Quadrant Bow On Delta Undulator Phase Errors LCLS-TN-15-1 E ect Of Qadrant Bow On Delta Undlator Phase Errors Zachary Wolf SLAC Febrary 18, 015 Abstract The Delta ndlator qadrants are tned individally and are then assembled to make the tned ndlator.

More information

Bayes and Naïve Bayes Classifiers CS434

Bayes and Naïve Bayes Classifiers CS434 Bayes and Naïve Bayes Classifiers CS434 In this lectre 1. Review some basic probability concepts 2. Introdce a sefl probabilistic rle - Bayes rle 3. Introdce the learning algorithm based on Bayes rle (ths

More information

Lecture 8: September 26

Lecture 8: September 26 10-704: Information Processing and Learning Fall 2016 Lectrer: Aarti Singh Lectre 8: September 26 Note: These notes are based on scribed notes from Spring15 offering of this corse. LaTeX template cortesy

More information

Estimating models of inverse systems

Estimating models of inverse systems Estimating models of inverse systems Ylva Jng and Martin Enqvist Linköping University Post Print N.B.: When citing this work, cite the original article. Original Pblication: Ylva Jng and Martin Enqvist,

More information

Artemisa. edigraphic.com. The uncertainty concept and its implications for laboratory medicine. medigraphic. en línea. Reporte breve Metrología

Artemisa. edigraphic.com. The uncertainty concept and its implications for laboratory medicine. medigraphic. en línea. Reporte breve Metrología medigraphic rtemisa en línea Reporte breve Metrología The ncertainty concept and its implications for laboratory medicine nders Kallner, PhD MD* MESUREMENT PERFORMNE * Department of linical hemistry Karolinska

More information

Essentials of optimal control theory in ECON 4140

Essentials of optimal control theory in ECON 4140 Essentials of optimal control theory in ECON 4140 Things yo need to know (and a detail yo need not care abot). A few words abot dynamic optimization in general. Dynamic optimization can be thoght of as

More information

Assignment Fall 2014

Assignment Fall 2014 Assignment 5.086 Fall 04 De: Wednesday, 0 December at 5 PM. Upload yor soltion to corse website as a zip file YOURNAME_ASSIGNMENT_5 which incldes the script for each qestion as well as all Matlab fnctions

More information

Incorporating Diversity in a Learning to Rank Recommender System

Incorporating Diversity in a Learning to Rank Recommender System Proceedings of the Twenty-Ninth International Florida Artificial Intelligence Research Society Conference Incorporating Diversity in a Learning to Rank Recommender System Jacek Wasilewski and Neil Hrley

More information

Collective Inference on Markov Models for Modeling Bird Migration

Collective Inference on Markov Models for Modeling Bird Migration Collective Inference on Markov Models for Modeling Bird Migration Daniel Sheldon Cornell University dsheldon@cs.cornell.ed M. A. Saleh Elmohamed Cornell University saleh@cam.cornell.ed Dexter Kozen Cornell

More information

Imprecise Continuous-Time Markov Chains

Imprecise Continuous-Time Markov Chains Imprecise Continos-Time Markov Chains Thomas Krak *, Jasper De Bock, and Arno Siebes t.e.krak@.nl, a.p.j.m.siebes@.nl Utrecht University, Department of Information and Compting Sciences, Princetonplein

More information

Propagation of measurement uncertainty in spatial characterisation of recreational fishing catch rates using logistic transform indicator kriging

Propagation of measurement uncertainty in spatial characterisation of recreational fishing catch rates using logistic transform indicator kriging st International Congress on Modelling and Simlation, Gold Coast, Astralia, 9 Nov to 4 Dec 05 www.mssan.org.a/modsim05 Propagation of measrement ncertainty in spatial characterisation of recreational fishing

More information

Simplified Identification Scheme for Structures on a Flexible Base

Simplified Identification Scheme for Structures on a Flexible Base Simplified Identification Scheme for Strctres on a Flexible Base L.M. Star California State University, Long Beach G. Mylonais University of Patras, Greece J.P. Stewart University of California, Los Angeles

More information

Lecture Notes: Finite Element Analysis, J.E. Akin, Rice University

Lecture Notes: Finite Element Analysis, J.E. Akin, Rice University 9. TRUSS ANALYSIS... 1 9.1 PLANAR TRUSS... 1 9. SPACE TRUSS... 11 9.3 SUMMARY... 1 9.4 EXERCISES... 15 9. Trss analysis 9.1 Planar trss: The differential eqation for the eqilibrim of an elastic bar (above)

More information

Department of Industrial Engineering Statistical Quality Control presented by Dr. Eng. Abed Schokry

Department of Industrial Engineering Statistical Quality Control presented by Dr. Eng. Abed Schokry Department of Indstrial Engineering Statistical Qality Control presented by Dr. Eng. Abed Schokry Department of Indstrial Engineering Statistical Qality Control C and U Chart presented by Dr. Eng. Abed

More information

FEA Solution Procedure

FEA Solution Procedure EA Soltion Procedre (demonstrated with a -D bar element problem) EA Procedre for Static Analysis. Prepare the E model a. discretize (mesh) the strctre b. prescribe loads c. prescribe spports. Perform calclations

More information

Regression Analysis of Octal Rings as Mechanical Force Transducers

Regression Analysis of Octal Rings as Mechanical Force Transducers Regression Analysis of Octal Rings as Mechanical Force Transdcers KHALED A. ABUHASEL* & ESSAM SOLIMAN** *Department of Mechanical Engineering College of Engineering, University of Bisha, Bisha, Kingdom

More information

ANOVA INTERPRETING. It might be tempting to just look at the data and wing it

ANOVA INTERPRETING. It might be tempting to just look at the data and wing it Introdction to Statistics in Psychology PSY 2 Professor Greg Francis Lectre 33 ANalysis Of VAriance Something erss which thing? ANOVA Test statistic: F = MS B MS W Estimated ariability from noise and mean

More information

Convergence analysis of ant colony learning

Convergence analysis of ant colony learning Delft University of Technology Delft Center for Systems and Control Technical report 11-012 Convergence analysis of ant colony learning J van Ast R Babška and B De Schtter If yo want to cite this report

More information

Data-Efficient Control Policy Search using Residual Dynamics Learning

Data-Efficient Control Policy Search using Residual Dynamics Learning Data-Efficient Control Policy Search sing Residal Dynamics Learning Matteo Saveriano 1, Ychao Yin 1, Pietro Falco 1 and Donghei Lee 1,2 Abstract In this work, we propose a model-based and data efficient

More information

Sequential Classification Algorithms

Sequential Classification Algorithms Prde University Prde e-pbs LARS Symposia Laboratory for Applications of Remote Sensing 1-1-1981 Seqential Classification Algorithms R. Krishnan K. R. Rao Follow this and additional works at: http://docs.lib.prde.ed/lars_symp

More information

A fundamental inverse problem in geosciences

A fundamental inverse problem in geosciences A fndamental inverse problem in geosciences Predict the vales of a spatial random field (SRF) sing a set of observed vales of the same and/or other SRFs. y i L i ( ) + v, i,..., n i ( P)? L i () : linear

More information

Andrew W. Moore Professor School of Computer Science Carnegie Mellon University

Andrew W. Moore Professor School of Computer Science Carnegie Mellon University Spport Vector Machines Note to other teachers and sers of these slides. Andrew wold be delighted if yo fond this sorce material sefl in giving yor own lectres. Feel free to se these slides verbatim, or

More information

Modelling heterogeneous variance-covariance components in two-level multilevel models with application to school effects educational research

Modelling heterogeneous variance-covariance components in two-level multilevel models with application to school effects educational research Modelling heterogeneous variance-covariance components in two-level multilevel models with application to school effects educational research Research Methods Festival Oxford 9 th July 014 George Leckie

More information

Appendix A: The Fully Developed Velocity Profile for Turbulent Duct Flows

Appendix A: The Fully Developed Velocity Profile for Turbulent Duct Flows Appendix A: The lly Developed Velocity Profile for Trblent Dct lows This appendix discsses the hydrodynamically flly developed velocity profile for pipe and channel flows. The geometry nder consideration

More information

LambdaMF: Learning Nonsmooth Ranking Functions in Matrix Factorization Using Lambda

LambdaMF: Learning Nonsmooth Ranking Functions in Matrix Factorization Using Lambda 2015 IEEE International Conference on Data Mining LambdaMF: Learning Nonsmooth Ranking Fnctions in Matrix Factorization Using Lambda Gang-He Lee Department of Compter Science and Information Engineering

More information

Effects of Soil Spatial Variability on Bearing Capacity of Shallow Foundations

Effects of Soil Spatial Variability on Bearing Capacity of Shallow Foundations Geotechnical Safety and Risk V T. Schweckendiek et al. (Eds.) 2015 The athors and IOS Press. This article is pblished online with Open Access by IOS Press and distribted nder the terms of the Creative

More information

Metropolis-Hastings Algorithm

Metropolis-Hastings Algorithm Strength of the Gibbs sampler Metropolis-Hastings Algorithm Easy algorithm to think about. Exploits the factorization properties of the joint probability distribution. No difficult choices to be made to

More information

Research Article Permanence of a Discrete Predator-Prey Systems with Beddington-DeAngelis Functional Response and Feedback Controls

Research Article Permanence of a Discrete Predator-Prey Systems with Beddington-DeAngelis Functional Response and Feedback Controls Hindawi Pblishing Corporation Discrete Dynamics in Natre and Society Volme 2008 Article ID 149267 8 pages doi:101155/2008/149267 Research Article Permanence of a Discrete Predator-Prey Systems with Beddington-DeAngelis

More information

4 Exact laminar boundary layer solutions

4 Exact laminar boundary layer solutions 4 Eact laminar bondary layer soltions 4.1 Bondary layer on a flat plate (Blasis 1908 In Sec. 3, we derived the bondary layer eqations for 2D incompressible flow of constant viscosity past a weakly crved

More information

Downloaded 07/06/18 to Redistribution subject to SIAM license or copyright; see

Downloaded 07/06/18 to Redistribution subject to SIAM license or copyright; see SIAM J. SCI. COMPUT. Vol. 4, No., pp. A4 A7 c 8 Society for Indstrial and Applied Mathematics Downloaded 7/6/8 to 8.83.63.. Redistribtion sbject to SIAM license or copyright; see http://www.siam.org/jornals/ojsa.php

More information

Designing of Virtual Experiments for the Physics Class

Designing of Virtual Experiments for the Physics Class Designing of Virtal Experiments for the Physics Class Marin Oprea, Cristina Miron Faclty of Physics, University of Bcharest, Bcharest-Magrele, Romania E-mail: opreamarin2007@yahoo.com Abstract Physics

More information

Pulses on a Struck String

Pulses on a Struck String 8.03 at ESG Spplemental Notes Plses on a Strck String These notes investigate specific eamples of transverse motion on a stretched string in cases where the string is at some time ndisplaced, bt with a

More information

Optimal Control of a Heterogeneous Two Server System with Consideration for Power and Performance

Optimal Control of a Heterogeneous Two Server System with Consideration for Power and Performance Optimal Control of a Heterogeneos Two Server System with Consideration for Power and Performance by Jiazheng Li A thesis presented to the University of Waterloo in flfilment of the thesis reqirement for

More information

Sareban: Evaluation of Three Common Algorithms for Structure Active Control

Sareban: Evaluation of Three Common Algorithms for Structure Active Control Engineering, Technology & Applied Science Research Vol. 7, No. 3, 2017, 1638-1646 1638 Evalation of Three Common Algorithms for Strctre Active Control Mohammad Sareban Department of Civil Engineering Shahrood

More information

Joint Transfer of Energy and Information in a Two-hop Relay Channel

Joint Transfer of Energy and Information in a Two-hop Relay Channel Joint Transfer of Energy and Information in a Two-hop Relay Channel Ali H. Abdollahi Bafghi, Mahtab Mirmohseni, and Mohammad Reza Aref Information Systems and Secrity Lab (ISSL Department of Electrical

More information

The Replenishment Policy for an Inventory System with a Fixed Ordering Cost and a Proportional Penalty Cost under Poisson Arrival Demands

The Replenishment Policy for an Inventory System with a Fixed Ordering Cost and a Proportional Penalty Cost under Poisson Arrival Demands Scientiae Mathematicae Japonicae Online, e-211, 161 167 161 The Replenishment Policy for an Inventory System with a Fixed Ordering Cost and a Proportional Penalty Cost nder Poisson Arrival Demands Hitoshi

More information

Path-SGD: Path-Normalized Optimization in Deep Neural Networks

Path-SGD: Path-Normalized Optimization in Deep Neural Networks Path-SGD: Path-Normalized Optimization in Deep Neral Networks Behnam Neyshabr, Rslan Salakhtdinov and Nathan Srebro Toyota Technological Institte at Chicago Department of Compter Science, University of

More information

Bayesian Inference in GLMs. Frequentists typically base inferences on MLEs, asymptotic confidence

Bayesian Inference in GLMs. Frequentists typically base inferences on MLEs, asymptotic confidence Bayesian Inference in GLMs Frequentists typically base inferences on MLEs, asymptotic confidence limits, and log-likelihood ratio tests Bayesians base inferences on the posterior distribution of the unknowns

More information

Chapter 3 MATHEMATICAL MODELING OF DYNAMIC SYSTEMS

Chapter 3 MATHEMATICAL MODELING OF DYNAMIC SYSTEMS Chapter 3 MATHEMATICAL MODELING OF DYNAMIC SYSTEMS 3. System Modeling Mathematical Modeling In designing control systems we mst be able to model engineered system dynamics. The model of a dynamic system

More information

Formulas for stopped diffusion processes with stopping times based on drawdowns and drawups

Formulas for stopped diffusion processes with stopping times based on drawdowns and drawups Stochastic Processes and their Applications 119 (009) 563 578 www.elsevier.com/locate/spa Formlas for stopped diffsion processes with stopping times based on drawdowns and drawps Libor Pospisil, Jan Vecer,

More information

Queueing analysis of service deferrals for load management in power systems

Queueing analysis of service deferrals for load management in power systems Qeeing analysis of service deferrals for load management in power systems Andrés Ferragt and Fernando Paganini Universidad ORT Urgay Abstract With the advent of renewable sorces and Smart- Grid deployments,

More information

4.2 First-Order Logic

4.2 First-Order Logic 64 First-Order Logic and Type Theory The problem can be seen in the two qestionable rles In the existential introdction, the term a has not yet been introdced into the derivation and its se can therefore

More information