CERN SUMMER STUDENT PROJECT

Size: px
Start display at page:

Download "CERN SUMMER STUDENT PROJECT"

Transcription

1 CERN SUMMER STUDENT PROJECT GENERAL PHYSICS: ANALYSE DATA IN THE FORM OF HISTOGRAM WITH COMPARISON BETWEEN KOLMOGOROV-SMIRNOV TEST AND CHI SQUARE TEST NAME: Ak Muhamad Amirul Irfan Pg Haji Mohd Ariffin COUNTRY: Brunei Darussalam ( University of Brunei Darussalam) SUPERVISOR: Norraphat Srimanobhas DEPARTMENT: PH-UCM DATE:

2 Abstract This paper presents the project that I have been tasked while attending a three-month Summer Programme at CERN. The Project specification is to analyse the result of a weekly data produced by Compact Muon Solenoid (CMS) in the form of histograms. CMS is a detector which is a multi-purpose apparatus use to operate at the Large Hadron Collider (LHC) at CERN. It will yield head-on collisions of two proton (ion) beams of 7 TeV (2.75 TeV per nucleon) each, with a design luminosity of. A comparison of the results is then made using two methods namely Kolmogorov Smirnov Statistic Test and Chi-Squared Test. These tests will be further elaborated in the subsequent paragraphs. To execute this project, I have to firstly study the entire basic computer programming in particular C++ and the ROOT Basic Programmes. This is important to ensure the tasks given can be resolved within the given time. A program is subsequently written to provide output of histogram and calculation of Kolmogorov-Smirnov Test and Chi-square test. 2

3 1. INTRODUCTION The ROOT Basic Programme is a data analysis framework, originally initiated at CERN, which is use to plot many formats of graphical plotting program in C++. It also provides a reach set of mathematical libraries and tools needed for sophisticated data analysis. Moreover, it completes with various number of root libraries and offers users possibility of extending core mathematical functionality by creating plug-ins such as MathMore library and MathCore library. These can import specific types of data into the interface and also provide new tools for manipulating them. With these frameworks, it benefits the users as less code to write is required to plot graphs for analysis based on their own specifications such as fitting and histograms. C++ language is simply the following: Framework: Root V. 5/ Putty Platform: lxplus Language: C++ 2. TASKS UNDERTAKEN 2.1 Lectures Due to lack of experience in programming language, I have to start with basic C++ programming language which is the best way to understand the platform for doing the coding. The topics encompassed C++ Basics, Variables and Fundamental Data Types, Operators, Control Flow including Arrays and loops. In every topic, the theory also incorporates the tutorial for the users to try and apply for writing the programme. Having completed the topics, tutorials were given to test our knowledge on the basic C++. In the tutorial, writing a program for the output to print is the key to tackle the problems and one must be able to include the loops coding. The questions given were as follows: i. Write your own program to print the straight line and circle on the screen. ii. Write a program that can calculate volumes of cone by using concept of integration and including finding the minimum number of loops which can give the difference between numerical value and exact value less than 0.01%. 2.2 Solution The following steps were taken: Starting with, Lxplus service is interactive logon service to Linux at CERN. It consists of public machines for interactive work. In order to access to one of the machines, users have to log on to the service using lxplus.cern.ch with the user s 3

4 username and password. The users get connected to the machine that gives the best response for example least number of login sessions. 2.3 Root Basic Programme Daily use of ROOT applications to analyse their data or to perform simulations such as: 1. Processing data with ROOT (to learn about the interactive and batch use of ROOT) 2. Analysing data with ROOT (about histograms and trees; mathematical and statistical tools) 3. Showing results with ROOT (explaining pads, 2D and 3D graphics) In relation with the basic earlier, ROOT is written mainly in C++ Language. Hence, it is prerequisite to learn and understand C++ beforehand. Chapters that needed to be covered for ROOT were ROOT as Calculator, ROOT as Function Plotter, Plotting Measurements and Histograms. 2.4 Tutorial and solutions Write a macro to visualise a poisson distribution in a histogram for exercise. So here, users need to create a 1D Histogram with maximum number of counts of 15 and using random generator to generate 1000 poissonian counts and mu equal to 4. This follows by creating 2 sets of 1D histogram in one canvas where one of the histograms will show the difference and ratio of two histograms. 4

5 3. KOLMOGOROV-SMIRNOV The Kolmogorov-Smirnov test is frequently labelled as goodness-of fit test, i.e. checking if data are normally distributed. In addition, Kolmogorov-Smirnov Test is used to decide if a sample comes from a population with a specific distribution and the test is based on the empirical distribution function (ECDF). The Kolmogorov-Smirnov Test has a unique characteristic where it does not depend on the underlying cumulative distribution function being tested. It is also an exact test which does not depend on adequate sample size to be valid. The Kolmogorov Smirnov, nevertheless, has 3 limitations. First, it only applies to continuous distributions. Secondly, it tends to be more sensitive near the center of distribution. Finally is the distribution parameters must be fully specified. Equations: ( ) { } ( ) ( ) Here, let be an ordered sample and sample comes from a population with cumulative distribution function F(x). Can be seen that it doesn t depend on F but ( ) depends on the sample chosen which result is a random variable. The equation to find the sample data whether it is a good fit or not is ( ) ( ) where is the critical value from the kolmogorov-smirnov table. In order to know it is a good fit must be less than and usually closer to 0. However, in the C++ program, this numbers of steps of calculation above can be skipped as the program can calculate it automatically with parameters assumed to be unknown. In a continuation of two sets of 1D histograms in one canvas, two lines namely gaus_h1 and gaus_h2 can be tested for Kolmogorov-smirnov by writing this in a program cout<<gaus_h1->kolmogorovtest(gaus_h2)<<endl;. Result will be printed in the screen with calculation done automatically. 5

6 4. CHI-SQUARED TEST The chi-square test is used to test if a sample of data came from a population with a specific distribution. The attractive feature that chi-square test has is that it can be applied to any univariate distribution which can calculate the cumulative distribution function. Furthermore it can also be applied to binned data i.e. data put into classes. However, it has limitation where chi-square requires a sufficient sample size in order for the test to be valid. Different from Kolmogorov-Smirnov test, chi-square test can be applied to discrete distributions such as binomial and poisson. Equation: ( ( ) ( )) ( ) From the equations above, F is cumulative distribution function for the distribution being tested, and is the upper limit and lower limit for class respectively. Whereas N is the number of sample size. In Chi-square, the data are divided into k bins for the second equation and also, is the observed frequency for bin and is the expected frequency for bin. Is test statistic then compared to of critical value. of critical value can be found firstly from calculating the degree of freedom where and followed by its under the null hypothesis. Usually, the critical region for the test is of test statistic is greater than the of critical value. Where as in C++, for two binned data, write a program as follows: Given the arrays bins1[1..nbins] and bins2[1..nbins], containing two sets of binned data, and given the number of constraints knstrn (normally 1 or 0), this routine returns the number of degrees of freedom df, the chi-square chsq, and the significance probability. A small value of probability indicates a significant difference between the distributions bins1 and bins2. Note that bins1 and bins2 are both float arrays, although they will normally contain integer values. { float gammq(float a, float x); int j; float temp; *df=nbins-knstrn; *chsq=0.0; for (j=1;j<=nbins;j++) if (bins1[j] == 0.0 && bins2[j] == 0.0) --(*df); else { temp=bins1[j]-bins2[j]; *chsq += temp*temp/(bins1[j]+bins2[j]); } *prob=gammq(0.5*(*df),0.5*(*chsq)); } 6

7 5. FINDINGS/RESULTS The larger the number of loops, the smaller the number of error of rate in Kolmogorov- Smirnov Test i.e. for 10000, the result of error is only whereas for loops, the result of error is For Chi-Squared Test, The number of error rates will decrease as the class increases for each specific loop. Therefore, this shows a noticeable improvement in the reading of error rates. 6. CONCLUSIONS The parameters of the distribution are usually unknown and need to be estimated. When the parameters are estimated from the data, it affects the power of the KS test. Moreover, the KS test does not perform well in the sense of power; when the data are tested with the same type of distribution with a similar mean with less power than the Chi-square test. In additions, the KS test has superior power to the Chi-square test when the sample size is large. In all cases studied, the KS test always has a smaller type I error rate than the Chi-square test. For the Chi-square test, as the number of intervals increased, the type I error rate and power decreased. In general, the computing time of the KS test is longer than that of the Chi-square test. Besides, the limit of this study is empirical and not mathematical. Therefore, with the differences and limitation in each test, this will affect most of the end result as can be seen above. 7

8 REFERENCE: 1) Engineering Statistic Handbook: Chi square goodness of fit test, 2) Engineering Statistic Handbook: Kolmogorov-Smirnov Goodness of fit test, 3) Hsaio-Mei Wang, Comparison of goodness of fit test: Kolmogorov-Smirnov Test and Pearson Chi Square Test. 4) Numerical Recipes in C: The Art Of Scientific Computing, , Cambridge University Press. 5) Unix Tutorial for Beginners, 8

Precision Timing in High Pile-Up and Time-Based Vertex Reconstruction

Precision Timing in High Pile-Up and Time-Based Vertex Reconstruction Precision Timing in High Pile-Up and Time-Based Vertex Reconstruction Cedric Flamant (CERN Summer Student) - Supervisor: Adi Bornheim Division of High Energy Physics, California Institute of Technology,

More information

A New Segment Building Algorithm for the Cathode Strip Chambers in the CMS Experiment

A New Segment Building Algorithm for the Cathode Strip Chambers in the CMS Experiment EPJ Web of Conferences 108, 02023 (2016) DOI: 10.1051/ epjconf/ 201610802023 C Owned by the authors, published by EDP Sciences, 2016 A New Segment Building Algorithm for the Cathode Strip Chambers in the

More information

KS4 3 Year scheme of Work Year 10 Higher

KS4 3 Year scheme of Work Year 10 Higher KS4 3 Year scheme of Work Year 10 Higher Review: Equations A2 Substitute numerical values into formulae and expressions, including scientific formulae unfamiliar formulae will be given in the question

More information

The Power and Sample Size Application

The Power and Sample Size Application Chapter 72 The Power and Sample Size Application Contents Overview: PSS Application.................................. 6148 SAS Power and Sample Size............................... 6148 Getting Started:

More information

JUST THE MATHS UNIT NUMBER STATISTICS 1 (The presentation of data) A.J.Hobson

JUST THE MATHS UNIT NUMBER STATISTICS 1 (The presentation of data) A.J.Hobson JUST THE MATHS UNIT NUMBER 18.1 STATISTICS 1 (The presentation of data) by A.J.Hobson 18.1.1 Introduction 18.1.2 The tabulation of data 18.1.3 The graphical representation of data 18.1.4 Exercises 18.1.5

More information

Cecil Jones Academy Mathematics Fundamentals

Cecil Jones Academy Mathematics Fundamentals Year 10 Fundamentals Core Knowledge Unit 1 Unit 2 Estimate with powers and roots Calculate with powers and roots Explore the impact of rounding Investigate similar triangles Explore trigonometry in right-angled

More information

SAR SURFACE ICE COVER DISCRIMINATION USING DISTRIBUTION MATCHING

SAR SURFACE ICE COVER DISCRIMINATION USING DISTRIBUTION MATCHING SAR SURFACE ICE COVER DISCRIMINATION USING DISTRIBUTION MATCHING Rashpal S. Gill Danish Meteorological Institute, Ice charting and Remote Sensing Division, Lyngbyvej 100, DK 2100, Copenhagen Ø, Denmark.Tel.

More information

Fathom Dynamic Data TM Version 2 Specifications

Fathom Dynamic Data TM Version 2 Specifications Data Sources Fathom Dynamic Data TM Version 2 Specifications Use data from one of the many sample documents that come with Fathom. Enter your own data by typing into a case table. Paste data from other

More information

14.2 Do Two Distributions Have the Same Means or Variances?

14.2 Do Two Distributions Have the Same Means or Variances? 14.2 Do Two Distributions Have the Same Means or Variances? 615 that this is wasteful, since it yields much more information than just the median (e.g., the upper and lower quartile points, the deciles,

More information

Why is Statistics important in Bioinformatics?

Why is Statistics important in Bioinformatics? Why is Statistics important in Bioinformatics? Random processes are inherent in evolution and in sampling (data collection). Errors are often unavoidable in the data collection process. Statistics helps

More information

Assignments Fill out this form to do the assignments or see your scores.

Assignments Fill out this form to do the assignments or see your scores. Assignments Assignment schedule General instructions for online assignments Troubleshooting technical problems Fill out this form to do the assignments or see your scores. Login Course: Statistics W21,

More information

Key Stage 4: Year 10. Subject: Mathematics. Aims of the subject:

Key Stage 4: Year 10. Subject: Mathematics. Aims of the subject: Key Stage 4: Year 10 Subject: Mathematics Aims of the subject: The mathematics department aim to develop the full potential of every student in the subject. It is our aim to ensure that every pupil experiences

More information

Data Quality Monitoring at CMS with Machine Learning

Data Quality Monitoring at CMS with Machine Learning Data Quality Monitoring at CMS with Machine Learning July-August 2016 Author: Aytaj Aghabayli Supervisors: Jean-Roch Vlimant Maurizio Pierini CERN openlab Summer Student Report 2016 Abstract The Data Quality

More information

Quantitative - One Population

Quantitative - One Population Quantitative - One Population The Quantitative One Population VISA procedures allow the user to perform descriptive and inferential procedures for problems involving one population with quantitative (interval)

More information

ISTITUTO NAZIONALE DI FISICA NUCLEARE

ISTITUTO NAZIONALE DI FISICA NUCLEARE ISTITUTO NAZIONALE DI FISICA NUCLEARE Sezione di Perugia INFN/TC-05/10 July 4, 2005 DESIGN, IMPLEMENTATION AND CONFIGURATION OF A GRID SITE WITH A PRIVATE NETWORK ARCHITECTURE Leonello Servoli 1,2!, Mirko

More information

Numerical methods in physics

Numerical methods in physics Numerical methods in physics Marc Wagner Goethe-Universität Frankfurt am Main summer semester 2018 Version: April 9, 2018 1 Contents 1 Introduction 3 2 Representation of numbers in computers, roundoff

More information

Testing Random- Number Generators

Testing Random- Number Generators Testing Random- Number Generators Raj Jain Washington University Saint Louis, MO 63131 Jain@cse.wustl.edu These slides are available on-line at: http://www.cse.wustl.edu/~jain/cse574-06/ 27-1 Overview

More information

BUSINESS ANALYTICS. 96 HOURS Practical Learning. DexLab Certified. Training Module. Gurgaon (Head Office)

BUSINESS ANALYTICS. 96 HOURS Practical Learning. DexLab Certified. Training Module. Gurgaon (Head Office) SAS (Base & Advanced) Analytics & Predictive Modeling Tableau BI 96 HOURS Practical Learning WEEKDAY & WEEKEND BATCHES CLASSROOM & LIVE ONLINE DexLab Certified BUSINESS ANALYTICS Training Module Gurgaon

More information

Excel 2010 with XLSTAT

Excel 2010 with XLSTAT Excel 2010 with XLSTAT J E N N I F E R LE W I S PR I E S T L E Y, PH.D. Introduction to Excel 2010 with XLSTAT The layout for Excel 2010 is slightly different from the layout for Excel 2007. However, with

More information

What s New in Oracle Crystal Ball? What s New in Version Browse to:

What s New in Oracle Crystal Ball? What s New in Version Browse to: What s New in Oracle Crystal Ball? Browse to: - What s new in version 11.1.1.0.00 - What s new in version 7.3 - What s new in version 7.2 - What s new in version 7.1 - What s new in version 7.0 - What

More information

How Random is Random?

How Random is Random? "!$#%!&(' )*!$#+, -/.(#2 cd4me 3%46587:9=?46@A;CBEDGF 7H;>I846=?7H;>JLKM7ONQPRKSJL4T@8KM4SUV7O@8W X 46@A;u+4mg^hb@8ub;>ji;>jk;t"q(cufwvaxay6vaz

More information

1-2 9 Measures and accuracy

1-2 9 Measures and accuracy Year Term Week Chapter Ref Lesson 9.1 Estimation and approximation Year 2 m Autumn Term 1-2 9 Measures and accuracy 3-4 (Number) 9.2 Calculator methods 9.3 Measures and accuracy Assessment 9 10.1 Solving

More information

Physics 736. Experimental Methods in Nuclear-, Particle-, and Astrophysics. - Statistical Methods -

Physics 736. Experimental Methods in Nuclear-, Particle-, and Astrophysics. - Statistical Methods - Physics 736 Experimental Methods in Nuclear-, Particle-, and Astrophysics - Statistical Methods - Karsten Heeger heeger@wisc.edu Course Schedule and Reading course website http://neutrino.physics.wisc.edu/teaching/phys736/

More information

Figure 2: download MuRun2010B.csv (This is data from the first LHC run, taken in 2010)

Figure 2: download MuRun2010B.csv (This is data from the first LHC run, taken in 2010) These are instructions for creating an invariant mass histogram using SCILAB and CERN s open data. This is meant to complement the instructions and tutorial for using Excel/OpenOffice to create the same

More information

P445/515 Data Analysis using PAW

P445/515 Data Analysis using PAW P445/515 Data Analysis using PAW C. McGrew February 10, 2003 Abstract PAW (Physics Analysis Workstation) is a complete physics analysis package developed at CERN to handle high energy physics data. It

More information

Page 1. Graphical and Numerical Statistics

Page 1. Graphical and Numerical Statistics TOPIC: Description Statistics In this tutorial, we show how to use MINITAB to produce descriptive statistics, both graphical and numerical, for an existing MINITAB dataset. The example data come from Exercise

More information

Data Analysis and Solver Plugins for KSpread USER S MANUAL. Tomasz Maliszewski

Data Analysis and Solver Plugins for KSpread USER S MANUAL. Tomasz Maliszewski Data Analysis and Solver Plugins for KSpread USER S MANUAL Tomasz Maliszewski tmaliszewski@wp.pl Table of Content CHAPTER 1: INTRODUCTION... 3 1.1. ABOUT DATA ANALYSIS PLUGIN... 3 1.3. ABOUT SOLVER PLUGIN...

More information

Curriculum Area: Mathematics Year: 9

Curriculum Area: Mathematics Year: 9 Reviewed in the light of the new national curriculum July 2014 TOPICS YEAR CURRICULUM HOW YOU CAN SUPPORT LEARNING AT HOME, EG. BOOKS, WEBSITES, FAMILY LEARNING THROUGH VISITS. Term 1 1. Number Properties

More information

SPSS Basics for Probability Distributions

SPSS Basics for Probability Distributions Built-in Statistical Functions in SPSS Begin by defining some variables in the Variable View of a data file, save this file as Probability_Distributions.sav and save the corresponding output file as Probability_Distributions.spo.

More information

Frequently Asked Questions Updated 2006 (TRIM version 3.51) PREPARING DATA & RUNNING TRIM

Frequently Asked Questions Updated 2006 (TRIM version 3.51) PREPARING DATA & RUNNING TRIM Frequently Asked Questions Updated 2006 (TRIM version 3.51) PREPARING DATA & RUNNING TRIM * Which directories are used for input files and output files? See menu-item "Options" and page 22 in the manual.

More information

An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s.

An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s. Using Monte Carlo to Estimate π using Buffon s Needle Problem An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s. Here s the problem (in a simplified form). Suppose

More information

Using Large Data Sets Workbook Version A (MEI)

Using Large Data Sets Workbook Version A (MEI) Using Large Data Sets Workbook Version A (MEI) 1 Index Key Skills Page 3 Becoming familiar with the dataset Page 3 Sorting and filtering the dataset Page 4 Producing a table of summary statistics with

More information

Adding timing to the VELO

Adding timing to the VELO Summer student project report: Adding timing to the VELO supervisor: Mark Williams Biljana Mitreska Cern Summer Student Internship from June 12 to August 4, 2017 Acknowledgements I would like to thank

More information

Reliability Engineering Analysis of ATLAS Data Reprocessing Campaigns

Reliability Engineering Analysis of ATLAS Data Reprocessing Campaigns Journal of Physics: Conference Series OPEN ACCESS Reliability Engineering Analysis of ATLAS Data Reprocessing Campaigns To cite this article: A Vaniachine et al 2014 J. Phys.: Conf. Ser. 513 032101 View

More information

KS4 Course Outline: Mathematics

KS4 Course Outline: Mathematics Topic Index: Higher tier (6+), Autumn Term Year 10 Grade Topic EFG B A-A* Factorise an expression eg. 6a+8 = 2(3a+4); a 2-3a = a(a - 3) 104 Factorise an expression with 2 or more factors eg. 4x 3 + 6xy

More information

Mathematics Curriculum

Mathematics Curriculum Mathematics Curriculum Pathway A Pupils who enter St Hilda s with a scaled score of approximately 110 or above from KS2, begin working on the Year 8 curriculum (approximately GCSE grades 3 and 4). These

More information

The Compact Muon Solenoid Experiment. Conference Report. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland

The Compact Muon Solenoid Experiment. Conference Report. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland Available on CMS information server CMS CR -2009/098 The Compact Muon Solenoid Experiment Conference Report Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland 15 April 2009 FROG: The Fast And Realistic

More information

LAB 2: DATA FILTERING AND NOISE REDUCTION

LAB 2: DATA FILTERING AND NOISE REDUCTION NAME: LAB TIME: LAB 2: DATA FILTERING AND NOISE REDUCTION In this exercise, you will use Microsoft Excel to generate several synthetic data sets based on a simplified model of daily high temperatures in

More information

Computationally efficient algorithms for the two-dimensional Kolmogorov-Smirnov test

Computationally efficient algorithms for the two-dimensional Kolmogorov-Smirnov test International Conference on Computing in High Energy and Nuclear Physics (CHEP 7) IOP Publishing Journal of Physics: Conference Series 1 (8) 419 doi:1.188/174-6596/1/4/419 Computationally efficient algorithms

More information

Verification / Validation Tools

Verification / Validation Tools Verification / Validation Tools B. Mascialino, A. Pfeiffer, M.G. Pia, A. Ribon, P. Viarengo 0 th Geant4 Workshop Bordeaux, November 8 th 2005 Goodness of Fit tests Goodness-of-Fit tests measure: the compatibility

More information

Ph3 Mathematica Homework: Week 8

Ph3 Mathematica Homework: Week 8 Ph3 Mathematica Homework: Week 8 Eric D. Black California Institute of Technology v1.1 Anyone who considers arithmetical methods of producing random digits is, of course, in a state of sin. For, as has

More information

The basic arrangement of numeric data is called an ARRAY. Array is the derived data from fundamental data Example :- To store marks of 50 student

The basic arrangement of numeric data is called an ARRAY. Array is the derived data from fundamental data Example :- To store marks of 50 student Organizing data Learning Outcome 1. make an array 2. divide the array into class intervals 3. describe the characteristics of a table 4. construct a frequency distribution table 5. constructing a composite

More information

Department of Electronic Engineering FINAL YEAR PROJECT REPORT

Department of Electronic Engineering FINAL YEAR PROJECT REPORT Department of Electronic Engineering FINAL YEAR PROJECT REPORT BEngCE-2007/08-HCS-HCS-03-BECE Natural Language Understanding for Query in Web Search 1 Student Name: Sit Wing Sum Student ID: Supervisor:

More information

Lecture 11: Distributions as Models October 2014

Lecture 11: Distributions as Models October 2014 Lecture 11: Distributions as Models 36-350 1 October 2014 Previously R functions for regression models R functions for probability distributions Agenda Distributions from data Review of R for theoretical

More information

CMS High Level Trigger Timing Measurements

CMS High Level Trigger Timing Measurements Journal of Physics: Conference Series PAPER OPEN ACCESS High Level Trigger Timing Measurements To cite this article: Clint Richardson 2015 J. Phys.: Conf. Ser. 664 082045 Related content - Recent Standard

More information

Using Excel for Graphical Analysis of Data

Using Excel for Graphical Analysis of Data Using Excel for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable physical parameters. Graphs are

More information

Savio Salesian College. Mathematics Department

Savio Salesian College. Mathematics Department Savio Salesian College Mathematics Department Get your maths revision material from the school website here. Raising achievement Foundation/Higher Tier Grades 1 9 Mathematics department Tiers Foundation

More information

Spark and HPC for High Energy Physics Data Analyses

Spark and HPC for High Energy Physics Data Analyses Spark and HPC for High Energy Physics Data Analyses Marc Paterno, Jim Kowalkowski, and Saba Sehrish 2017 IEEE International Workshop on High-Performance Big Data Computing Introduction High energy physics

More information

List of NEW Maths content

List of NEW Maths content List of NEW Maths content Our brand new Maths content for the new Maths GCSE (9-1) consists of 212 chapters broken up into 37 titles and 4 topic areas (Algebra, Geometry & Measures, Number and Statistics).

More information

ATLAS NOTE. December 4, ATLAS offline reconstruction timing improvements for run-2. The ATLAS Collaboration. Abstract

ATLAS NOTE. December 4, ATLAS offline reconstruction timing improvements for run-2. The ATLAS Collaboration. Abstract ATLAS NOTE December 4, 2014 ATLAS offline reconstruction timing improvements for run-2 The ATLAS Collaboration Abstract ATL-SOFT-PUB-2014-004 04/12/2014 From 2013 to 2014 the LHC underwent an upgrade to

More information

Index. Bar charts, 106 bartlett.test function, 159 Bottles dataset, 69 Box plots, 113

Index. Bar charts, 106 bartlett.test function, 159 Bottles dataset, 69 Box plots, 113 Index A Add-on packages information page, 186 187 Linux users, 191 Mac users, 189 mirror sites, 185 Windows users, 187 aggregate function, 62 Analysis of variance (ANOVA), 152 anova function, 152 as.data.frame

More information

- 1 - Fig. A5.1 Missing value analysis dialog box

- 1 - Fig. A5.1 Missing value analysis dialog box WEB APPENDIX Sarstedt, M. & Mooi, E. (2019). A concise guide to market research. The process, data, and methods using SPSS (3 rd ed.). Heidelberg: Springer. Missing Value Analysis and Multiple Imputation

More information

Confidence Level Red Amber Green

Confidence Level Red Amber Green Maths Topic Foundation/ 1 Place Value 2 Ordering Integers 3 Ordering Decimals 4 Reading Scales 5 Simple Mathematical Notation 6a Interpreting Real-Life Tables Time 6b Interpreting Real-Life Tables Timetables

More information

Fast Automated Estimation of Variance in Discrete Quantitative Stochastic Simulation

Fast Automated Estimation of Variance in Discrete Quantitative Stochastic Simulation Fast Automated Estimation of Variance in Discrete Quantitative Stochastic Simulation November 2010 Nelson Shaw njd50@uclive.ac.nz Department of Computer Science and Software Engineering University of Canterbury,

More information

Restoring data from a backup

Restoring data from a backup Restoring data from a backup The following topics explain how to find a backup to restore and then perform a restore: Finding a backup to restore on page 98 Restoring to the original location on page 101

More information

Tutorial: Using Tina Vision s Quantitative Pattern Recognition Tool.

Tutorial: Using Tina Vision s Quantitative Pattern Recognition Tool. Tina Memo No. 2014-004 Internal Report Tutorial: Using Tina Vision s Quantitative Pattern Recognition Tool. P.D.Tar. Last updated 07 / 06 / 2014 ISBE, Medical School, University of Manchester, Stopford

More information

Descriptive Statistics, Standard Deviation and Standard Error

Descriptive Statistics, Standard Deviation and Standard Error AP Biology Calculations: Descriptive Statistics, Standard Deviation and Standard Error SBI4UP The Scientific Method & Experimental Design Scientific method is used to explore observations and answer questions.

More information

SAS/STAT 13.1 User s Guide. The Power and Sample Size Application

SAS/STAT 13.1 User s Guide. The Power and Sample Size Application SAS/STAT 13.1 User s Guide The Power and Sample Size Application This document is an individual chapter from SAS/STAT 13.1 User s Guide. The correct bibliographic citation for the complete manual is as

More information

BESTFIT, DISTRIBUTION FITTING SOFTWARE BY PALISADE CORPORATION

BESTFIT, DISTRIBUTION FITTING SOFTWARE BY PALISADE CORPORATION Proceedings of the 1996 Winter Simulation Conference ed. J. M. Charnes, D. J. Morrice, D. T. Brunner, and J. J. S\vain BESTFIT, DISTRIBUTION FITTING SOFTWARE BY PALISADE CORPORATION Linda lankauskas Sam

More information

Virtualizing a Batch. University Grid Center

Virtualizing a Batch. University Grid Center Virtualizing a Batch Queuing System at a University Grid Center Volker Büge (1,2), Yves Kemp (1), Günter Quast (1), Oliver Oberst (1), Marcel Kunze (2) (1) University of Karlsruhe (2) Forschungszentrum

More information

GCSE Higher Revision List

GCSE Higher Revision List GCSE Higher Revision List Level 8/9 Topics I can work with exponential growth and decay on the calculator. I can convert a recurring decimal to a fraction. I can simplify expressions involving powers or

More information

Prompt data reconstruction at the ATLAS experiment

Prompt data reconstruction at the ATLAS experiment Prompt data reconstruction at the ATLAS experiment Graeme Andrew Stewart 1, Jamie Boyd 1, João Firmino da Costa 2, Joseph Tuggle 3 and Guillaume Unal 1, on behalf of the ATLAS Collaboration 1 European

More information

Department Curriculum Map (new GCSE)

Department Curriculum Map (new GCSE) Department Curriculum Map 2014-15 (new GCSE) Department Mathematics required in Year 11 Foundation 1. Structure and calculation: N1 to N9 Fractions, decimals and percentages: N10 to N12 Measure and accuracy:

More information

Foundation tier knowledge, skills and understanding

Foundation tier knowledge, skills and understanding Foundation tier knowledge, skills and understanding 1. Number Structure and calculation N1 N2 N3 N4 N5 N6 N7 N8 order positive and negative integers, decimals and fractions; use the symbols =,, ,,

More information

9-1 GCSE Maths. GCSE Mathematics has a Foundation tier (Grades 1 5) and a Higher tier (Grades 4 9).

9-1 GCSE Maths. GCSE Mathematics has a Foundation tier (Grades 1 5) and a Higher tier (Grades 4 9). 9-1 GCSE Maths GCSE Mathematics has a Foundation tier (Grades 1 5) and a Higher tier (Grades 4 9). In each tier, there are three exams taken at the end of Year 11. Any topic may be assessed on each of

More information

Detector Control LHC

Detector Control LHC Detector Control Systems @ LHC Matthias Richter Department of Physics, University of Oslo IRTG Lecture week Autumn 2012 Oct 18 2012 M. Richter (UiO) DCS @ LHC Oct 09 2012 1 / 39 Detectors in High Energy

More information

PoS(ACAT08)100. FROG: The Fast & Realistic OPENGL Event Displayer

PoS(ACAT08)100. FROG: The Fast & Realistic OPENGL Event Displayer FROG: The Fast & Realistic OPENGL Event Displayer Center for Particle Physics and Phenomenology (CP3) Université catholique de Louvain Chemin du cyclotron 2, B-1348-Louvain-la-Neuve - Belgium E-mail: loic.quertenmont@cern.ch

More information

MULTI-FINGER PENETRATION RATE AND ROC VARIABILITY FOR AUTOMATIC FINGERPRINT IDENTIFICATION SYSTEMS

MULTI-FINGER PENETRATION RATE AND ROC VARIABILITY FOR AUTOMATIC FINGERPRINT IDENTIFICATION SYSTEMS MULTI-FINGER PENETRATION RATE AND ROC VARIABILITY FOR AUTOMATIC FINGERPRINT IDENTIFICATION SYSTEMS I. Introduction James L. Wayman, Director U.S. National Biometric Test Center College of Engineering San

More information

Data Quality Monitoring Display for ATLAS experiment

Data Quality Monitoring Display for ATLAS experiment Data Quality Monitoring Display for ATLAS experiment Y Ilchenko 1, C Cuenca Almenar 2, A Corso-Radu 2, H Hadavand 1, S Kolos 2, K Slagle 2, A Taffard 2 1 Southern Methodist University, Dept. of Physics,

More information

Interval Estimation. The data set belongs to the MASS package, which has to be pre-loaded into the R workspace prior to use.

Interval Estimation. The data set belongs to the MASS package, which has to be pre-loaded into the R workspace prior to use. Interval Estimation It is a common requirement to efficiently estimate population parameters based on simple random sample data. In the R tutorials of this section, we demonstrate how to compute the estimates.

More information

St John s Curriculum Overview Year 8

St John s Curriculum Overview Year 8 St John s Curriculum Overview Year 8 Introduction Subject title Mathematics During the course of the year students will build upon their knowledge Setting arrangements Time allowance each fortnight Students

More information

You ve already read basics of simulation now I will be taking up method of simulation, that is Random Number Generation

You ve already read basics of simulation now I will be taking up method of simulation, that is Random Number Generation Unit 5 SIMULATION THEORY Lesson 39 Learning objective: To learn random number generation. Methods of simulation. Monte Carlo method of simulation You ve already read basics of simulation now I will be

More information

LASER s Level 2 Maths Course - Summary

LASER s Level 2 Maths Course - Summary LASER s Level 2 Maths Course - Summary Unit Code Unit Title Credits Level Status SER945 Shape, Space and Measurement 3 2 Mandatory SER946 Collecting, Recording and Analysing Data 3 2 Mandatory SER947 Development

More information

Bramhall high school Year 9 Assessment descriptor Mathematics

Bramhall high school Year 9 Assessment descriptor Mathematics Grade Description Exceeding Calculate with fractional powers. Calculate exactly with surds. 8/9 Establish the exact values of sinθ and cosθ for θ = 0, 30, 45, 60 and 90, the exact value of tanθ for θ =

More information

Continuous Improvement Toolkit. Normal Distribution. Continuous Improvement Toolkit.

Continuous Improvement Toolkit. Normal Distribution. Continuous Improvement Toolkit. Continuous Improvement Toolkit Normal Distribution The Continuous Improvement Map Managing Risk FMEA Understanding Performance** Check Sheets Data Collection PDPC RAID Log* Risk Analysis* Benchmarking***

More information

Homework Set 1- Fundamentals

Homework Set 1- Fundamentals 1 Homework Set 1- Fundamentals Topics if statements with ints if-else statements with Strings if statements with multiple boolean statements for loops and arrays while loops String ".equals()" method "=="

More information

Mean Tests & X 2 Parametric vs Nonparametric Errors Selection of a Statistical Test SW242

Mean Tests & X 2 Parametric vs Nonparametric Errors Selection of a Statistical Test SW242 Mean Tests & X 2 Parametric vs Nonparametric Errors Selection of a Statistical Test SW242 Creation & Description of a Data Set * 4 Levels of Measurement * Nominal, ordinal, interval, ratio * Variable Types

More information

Primary Vertex Reconstruction at LHCb

Primary Vertex Reconstruction at LHCb LHCb-PUB-214-44 October 21, 214 Primary Vertex Reconstruction at LHCb M. Kucharczyk 1,2, P. Morawski 3, M. Witek 1. 1 Henryk Niewodniczanski Institute of Nuclear Physics PAN, Krakow, Poland 2 Sezione INFN

More information

KS4 Scheme of Work

KS4 Scheme of Work Some Most All KS4 Scheme of Work 2016 2018 Year 10 Autumn 1 Number 1. Fractions N10, N12, R3 R9 2. Percentages N10, N12 3. Indices (incl. root notation) N7, N6 4. Sequences A23 1. Calculations with indices

More information

Markscheme May 2017 Mathematical studies Standard level Paper 1

Markscheme May 2017 Mathematical studies Standard level Paper 1 M17/5/MATSD/SP1/ENG/TZ/XX/M Markscheme May 017 Mathematical studies Standard level Paper 1 3 pages M17/5/MATSD/SP1/ENG/TZ/XX/M This markscheme is the property of the International Baccalaureate and must

More information

Harris: Quantitative Chemical Analysis, Eight Edition CHAPTER 05: QUALITY ASSURANCE AND CALIBRATION METHODS

Harris: Quantitative Chemical Analysis, Eight Edition CHAPTER 05: QUALITY ASSURANCE AND CALIBRATION METHODS Harris: Quantitative Chemical Analysis, Eight Edition CHAPTER 05: QUALITY ASSURANCE AND CALIBRATION METHODS 5-0. International Measurement Evaluation Program Sample: Pb in river water (blind sample) :

More information

Choosing the Right Procedure

Choosing the Right Procedure 3 CHAPTER 1 Choosing the Right Procedure Functional Categories of Base SAS Procedures 3 Report Writing 3 Statistics 3 Utilities 4 Report-Writing Procedures 4 Statistical Procedures 5 Efficiency Issues

More information

YEAR 12 Core 1 & 2 Maths Curriculum (A Level Year 1)

YEAR 12 Core 1 & 2 Maths Curriculum (A Level Year 1) YEAR 12 Core 1 & 2 Maths Curriculum (A Level Year 1) Algebra and Functions Quadratic Functions Equations & Inequalities Binomial Expansion Sketching Curves Coordinate Geometry Radian Measures Sine and

More information

ANSWERS -- Prep for Psyc350 Laboratory Final Statistics Part Prep a

ANSWERS -- Prep for Psyc350 Laboratory Final Statistics Part Prep a ANSWERS -- Prep for Psyc350 Laboratory Final Statistics Part Prep a Put the following data into an spss data set: Be sure to include variable and value labels and missing value specifications for all variables

More information

Offline Tutorial I. Małgorzata Janik Łukasz Graczykowski. Warsaw University of Technology

Offline Tutorial I. Małgorzata Janik Łukasz Graczykowski. Warsaw University of Technology Offline Tutorial I Małgorzata Janik Łukasz Graczykowski Warsaw University of Technology Offline Tutorial, 5.07.2011 1 Contents ALICE experiment AliROOT ROOT GRID & AliEn Event generators - Monte Carlo

More information

Key Stage 4: Year 9. Subject: Mathematics. Aims of the subject:

Key Stage 4: Year 9. Subject: Mathematics. Aims of the subject: Key Stage 4: Year 9 Subject: Mathematics Aims of the subject: The mathematics department aim to develop the full potential of every student in the subject. It is our aim to ensure that every pupil experiences

More information

MATHEMATICS SYLLABUS SECONDARY 4th YEAR

MATHEMATICS SYLLABUS SECONDARY 4th YEAR European Schools Office of the Secretary-General Pedagogical Development Unit Ref.: 2010-D-581-en-2 Orig.: EN MATHEMATICS SYLLABUS SECONDARY 4th YEAR 4 period/week course APPROVED BY THE JOINT TEACHING

More information

Computational Modelling 102 (Scientific Programming) Tutorials

Computational Modelling 102 (Scientific Programming) Tutorials COMO 102 : Scientific Programming, Tutorials 2003 1 Computational Modelling 102 (Scientific Programming) Tutorials Dr J. D. Enlow Last modified August 18, 2003. Contents Tutorial 1 : Introduction 3 Tutorial

More information

Year 8 Review 1, Set 1 Number confidence (Four operations, place value, common indices and estimation)

Year 8 Review 1, Set 1 Number confidence (Four operations, place value, common indices and estimation) Year 8 Review 1, Set 1 Number confidence (Four operations, place value, common indices and estimation) Place value Digit Integer Negative number Difference, Minus, Less Operation Multiply, Multiplication,

More information

Practical Statistics for Particle Physics Analyses: Introduction to Computing Examples

Practical Statistics for Particle Physics Analyses: Introduction to Computing Examples Practical Statistics for Particle Physics Analyses: Introduction to Computing Examples Louis Lyons (Imperial College), Lorenzo Moneta (CERN) IPMU, 27-29 March 2017 Introduction Hands-on session based on

More information

Student Version 8 AVERILL M. LAW & ASSOCIATES

Student Version 8 AVERILL M. LAW & ASSOCIATES ExpertFit Student Version 8 AVERILL M. LAW & ASSOCIATES 4729 East Sunrise Drive, # 462 Tucson, AZ 85718 Phone: 520-795-6265 E-mail: averill@simulation.ws Website: www.averill-law.com 1. Introduction ExpertFit

More information

WORK PROJECT REPORT: TAPE STORAGE AND CRC PROTECTION

WORK PROJECT REPORT: TAPE STORAGE AND CRC PROTECTION WORK PROJECT REPORT: TAPE STORAGE AND CRC PROTECTION CERN Summer Student Programme 2014 Student: Main supervisor: Second supervisor: Division: Karel Ha Julien Marcel Leduc

More information

Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition

Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition Online Learning Centre Technology Step-by-Step - Minitab Minitab is a statistical software application originally created

More information

AP Computer Science Homework Set 1 Fundamentals

AP Computer Science Homework Set 1 Fundamentals AP Computer Science Homework Set 1 Fundamentals P1A. Using MyFirstApp.java as a model, write a similar program, MySecondApp.java, that prints your favorites. Your program should do the following: a. create

More information

Higher tier knowledge, skills and understanding

Higher tier knowledge, skills and understanding Higher tier knowledge, skills and understanding 1. Number Structure and calculation N1 N2 N3 N4 N5 N6 N7 order positive and negative integers, decimals and fractions; use the symbols =,, ,, apply the

More information

Key Stage 3 Curriculum

Key Stage 3 Curriculum Key Stage 3 Curriculum Learning Area: Maths Learning Area Coordinator: Ms S J Pankhurst What will I study? SUBJECT YEAR 7 Autumn 1 Autumn 2 Spring 1 Spring 2 Summer 1 Summer 2 Focus Counting and comparing

More information

STAT - Edit Scroll up the appropriate list to highlight the list name at the very top Press CLEAR, followed by the down arrow or ENTER

STAT - Edit Scroll up the appropriate list to highlight the list name at the very top Press CLEAR, followed by the down arrow or ENTER Entering/Editing Data Use arrows to scroll to the appropriate list and position Enter or edit data, pressing ENTER after each (including the last) Deleting Data (One Value at a Time) Use arrows to scroll

More information

Maths Curriculum Map

Maths Curriculum Map Year 7 Maths Curriculum Map Autumn Spring Summer Analysing Data: Calculating Averages Construct and Interpret Charts Number Skills: Order of operations Rounding and estimating Negative numbers Prime numbers,

More information

What We ll Do... Random

What We ll Do... Random What We ll Do... Random- number generation Random Number Generation Generating random variates Nonstationary Poisson processes Variance reduction Sequential sampling Designing and executing simulation

More information

What is the Monte Carlo Method?

What is the Monte Carlo Method? Program What is the Monte Carlo Method? A bit of history Applications The core of Monte Carlo: Random realizations 1st example: Initial conditions for N-body simulations 2nd example: Simulating a proper

More information