Exercise 7: Maximum likelihood fits

Size: px
Start display at page:

Download "Exercise 7: Maximum likelihood fits"

Transcription

1 Kirchhoff-Institut, Physikalisches Institut and MPI für Kernphysik Winter semester KIP CIP Pool.40 Exercises for Statistical Methods in Particle Physics Dr. Oleg Brandt Dr. Markward Britsch Exercise 7: Maximum likelihood fits November 24, 204 To be handed in by by 4:00h, Sunday, November 30 Please send your solutions by to until Sunday, November 30, 4:00h, so that we can discuss them on the following Monday. Make sure that you use SMIPP:Exercise07 as subject line. It is important that you test all program code, macros, etc. before you hand them in. Please also comment the code reasonably well. Make sure that your solution code compiles, either by a command like > root -l exercise7_.c+ (mind the +) or using a Makefile attached to your . If plots are requested, please include print statements to produce pdf files in your code. Preface There are three main applications for the maximum likelihood (ML) fit. Firstly, an unbinned fit of a pdf to measured values can be done, as in Exercise. Secondly, in Exercise 3 we will fit a general function (i.e., not a pdf) to (x, y)-data points. Finally, one can fit a pdf to the shape of a histogram, which we will do on the next exercise sheet. We will also use different tools to do the fits. In Exercise we will construct our own negative log likelihood (NLL) function as a TF and use a build-in method to find the minimum. In Exercise 3 we will use the Minuit package via root s TMinuit implementation as we have done so in the hands-on exercises. An unbinned maximum likelihood fit of a pdf: a neutrinoless double beta decay signal Many experiments nowadays are looking for the so called neutrinoless double beta decay, where a nucleus decays by emitting two electrons, but no neutinos. As this process violates lepton number (L) conservation without violating the baryon number (B) conversation, the observation of such a decay would imply physics beyond the standard

2 model, as in the standard model B L is conserved. In addition, it would also allow the determination of the absolute neutrino masses. One type of experiments use germanium (e.g., the GERDA experiment, see recent results in Ref. []) for this looking for decays 76 Ge 76 Se e e, where the two electrons are detected and their energy is measured. The corresponding normal double beta decay (where in addition two neutrinos are emitted) has already been observed. Since the two neutrinos are not detected, the energy spectrum of this decay is very wide. While the energy spectrum of the neutrinoless double beta decay has a sharp peak, as all the libarated energy is contained in the electrons (see Fig. ). From the mass difference of the two nuclei, this expected liberated kinetic energy, also called Q-value, i.e., the total kinetic energy of the two electrons, can be determined very precisely to Q = ± kev. Assume that a future experiment finds a surprisingly large signal of 20 counts in the region around the expected Q-value with negligible background. In Double the following we want Beta to make a fitdecay to the data to obtain Detection an estimator for the peak value in the data, to compare it to the expected Q-value, to see if this is really the long-sought neutrinoless double beta decay. Spectrum of summed electron energies. 2νββ produces Figure a : continuous The energy distribution spectrum for the double as the betaν decay. energy The left is part not comes detected. from 0νββ results in a peak at the Q-value of 76 Ge at 2039 kev. Ge has several advantages: the one where two neutrinos are emitted. The right part illustrates the hypothetical neutrinoless double beta decay (also shown in the insert). As this decay has a very long life time, the width is completely negligible and thus the width of the signal is determined by the detector resolution. Typical resolutions of calorimetric detectors have a gaussian core, though often with corrections to the tails. Ge detectors Here we have are the typical used correction as both of a long the tail decay to the low source energy side and duethe to energy detection losses in the apparatus. To model this we use a special simplified version of the so called device. crystal ball pdf. It has a gaussian part above a certain energy value and a power law behavior below this value, as shown in Fig. 2. The energy resolution of this detector has been measured to be σ = 3.3 kev, the tail is measured to start at α =.5 standard deviations below the peak and this tail drops off as a power of n = More precisely, the form of our pdf that we use is given Ge has a very high energy resolution: The higher the energy resolution, the higher the signal to background ratio. 2 anuel Walter The GERDA Experiment for the Search of Neutrinoless Double Beta Decay Patras Workshop July 203 Waldthausen

3 A crystal ball pdf pdf value Power law pdf Gaussian pdf E [kev] Figure 2: A crystal ball function with the two behaviors above and below the energy value indicated by the blue line. by ( exp (x µ)2 f(x; µ) = N ( A x µ σ 2σ 2 ) if x µ σ ) n if x µ σ > α α with σ = 3.3 kev, α =.5, n = 2.25, A = 08396, N = 0.05 kev. The parameters A and N are chosen as to guarantee that the total pdf is normalized, continuous and differentiable. The measured kinetic energies of these 20 events are given in to you kev by the definitions const int doublebeta_numdatapoints = 20; double doublebeta_data[ doublebeta_numdatapoints ] = { , , , 2035, , , , , , , , , , , , , , , , }; in File doublebeta_data.h. Create a TF object that represents the negative log likelihood (NLL) function and minimize it using TF::GetMinimumX(). The statistical error can be read off the plot of the NLL function as in Fig. 3. The error boundaries are where the NLL function value is 2 its value at the minimum. Determine this error from the plot. Provide the plot including arrows (TArrow) or lines (TLine) where your error boundaries are. Compare 3

4 your results to the expectation. Plot the data into a histogram and plot the best fit function, as well as the true Q-value function with it. - ln L ln L = / E [kev] Figure 3: The minimum of the NLL gives the fit result (black arrow), while the x-values, where the NLL function is 2 above the minimal y-value, give the error range (blue arrows). Mind that the errors can be different to the left than to the right side. Hints: When implementing your fit function as a TF, you will need to define it via a C-function with parameters like that: Double_t specialcb(double_t *x, Double_t *par); where x[0] will be the x-value given to the function and par is an array with the parameters. Then define the TF like TF fitfunc("fitfunc", specialcb, 2004, 2054, 2); The 2 here gives the number of parameters. One parameter for µ which we want to determine, and a second one to scale the pdf to fit the histogram entries, i.e., to re-normalize this function to have the same integral as the histogram. For this do not forget that the size of the bins changes this integral. Check that this re-normalization works by looking at plots! You do not want to fit the re-normalization. Fix it to the correct value in the fit by calling TF::FixParameter(). Although it is performance wise stupid, for ease of coding, you can implement the NLL using the logarithm of the fit function that you have defined. 4

5 2 Determining the bias of a maximum likelihood fit: a neutrinoless double beta decay signal To determine the bias, make 000 toy MC experiments drawing 20 times from your fit function using your fit result from above as µ. Do the fit for each toy data set. You can get the bias as the mean of the results of the fits to your toy MC data minus µ from your fit to data. Is your bias significant taking into account the error on the mean (TH::GetMeanError())? If yes, take the bias into account and quote a reasonable systematic error. Compare to the expectation and to the results form Exercise. Also compare your determined statistical error with the RMS form the toy MC results. Do they match? Hints: It is probably a good idea to define a global pointer pointing to the data. It will point first to the measured data, then to the current toy MC data set and can be used in your main code as well as in the function that implements the NLL. 3 A maximum likelihood fit of a function to data points Here we re-use the code already used in the hands-on 7.2 this Monday, starting with the same setup. Suppose we have 20 independent measurements r i ± σ i with the same σ, but different mean values µ i. Now consider there is a linear dependence of µ i on some variable x of the mean values, i.e., r i = µ i = + x with standard deviation σ = 0.. The points will have equal distances in x, x = 0.. An Example is shown in Fig. 4 +x distribution of fitted parameter Figure 4: 20 data points fluctuation of with individual point a linear dependence. hist_flucpoint 4 Entries 20 Mean RMS In the following we 3want to investigate the behavior of the maximum likelihood 2.5 (ML) method under different circumstances by using toy MC data that follows the 2 above. First we will use.5 gaussian error distributions and a linear model with two fit 0.6 parameters (r = a 0 + a x). Mind that finding the global minimum of a two dimensional function is already far less -0.5 trivial then -0.2 finding the 0. global minimum of a one 0.2dimensional function, that is why we are using the software Minuit here. Have a short look at the a0 distribution hist_a0 corresponding root documentation: Entries 0 Mean 0 RMS ln L fit (- ln L ) - (- ln L ) true fit a distribution hist_a Entries 0 Mean 0 RMS

6 Later we will have a look at what happens with non-gaussian errors. Another option is to use gaussian errors, but a non-linear model (r = (a + a 4 0 x)( a 0+a ) ) in the fit, designed in a way that again a 0 =, a = is the correct answer. Eventually we will try non-gaussian errors with the non-linear model. To do this, we need to construct a NLL function and then minimize this function. We have done this already in the hands-on exercise. Now do the following. a) Change the existing program so it does a large number of toy MC experiments and plot: for one case the points with errors, the true linear dependence and the fitted dependence (already done in the hands-on exercise) fluctuations of the individual points (already done in the hands-on exercise) distribution of the fit parameter a 0 distribution of the fit parameter a distribution of a 0 vs. a ln L fit mean ( ln L true ) ( ln L fit ) in a 0 a plane The numbers are already obtained from Minuit in the code, you only have to fill the pre-defined histograms! b) Now we will change the production of our measurements to non-gaussian errors. Use a function nongaussfunc in neg_lnl.cc that implements the function f(y) = exp ( ) y4 σ (where y will be y = ri µ 4 i later on). To get the correct RMS = σ = 0., we need to set σ Γ( 4 = σ ) Γ( 3 4 ) (where Γ is the gamma function, for which you can use TMath::Gamma()). Do the same plots as before. c) Now do the same with gaussian errors, but fitting the non-linear function from above (fcn_nonlin in neg_lnl.cc). d) And now non-linear, non-gaussian. For all these observe and compare. Do the distributions look reasonable? Is there evidence for a bias? References [] Phys. Rev. Lett. (203)

Modern Methods of Data Analysis - WS 07/08

Modern Methods of Data Analysis - WS 07/08 Modern Methods of Data Analysis Lecture VII (26.11.07) Contents: Maximum Likelihood (II) Exercise: Quality of Estimators Assume hight of students is Gaussian distributed. You measure the size of N students.

More information

An introduction to Bayesian reasoning in particle physics

An introduction to Bayesian reasoning in particle physics An introduction to Bayesian reasoning in particle physics Graduiertenkolleg seminar, May 15th 2013 Overview Overview A concrete example Scientific reasoning Probability and the Bayesian interpretation

More information

Lecture 3. G. Cowan. Lecture 3 page 1. Lectures on Statistical Data Analysis

Lecture 3. G. Cowan. Lecture 3 page 1. Lectures on Statistical Data Analysis Lecture 3 1 Probability (90 min.) Definition, Bayes theorem, probability densities and their properties, catalogue of pdfs, Monte Carlo 2 Statistical tests (90 min.) general concepts, test statistics,

More information

Background Free Search for 0 Decay of 76Ge with GERDA

Background Free Search for 0 Decay of 76Ge with GERDA Background Free Search for 0 Decay of 76Ge with GERDA Victoria Wagner for the GERDA collaboration Max-Planck-Institut für Kernphysik Rencontres de Moriond, Electro Weak La Thuile, March 24 2017 The GERDA

More information

Background rejection techniques in Germanium 0νββ-decay experiments. ν=v

Background rejection techniques in Germanium 0νββ-decay experiments. ν=v Background rejection techniques in Germanium 0νββ-decay experiments n p ν=v n eep II. Physikalisches Institut Universität Göttingen Institutsseminar des Inst. für Kern- und Teilchenphysik, Outline Neutrinos

More information

Use of the likelihood principle in physics. Statistics II

Use of the likelihood principle in physics. Statistics II Use of the likelihood principle in physics Statistics II 1 2 3 + Bayesians vs Frequentists 4 Why ML does work? hypothesis observation 5 6 7 8 9 10 11 ) 12 13 14 15 16 Fit of Histograms corresponds This

More information

E. Santovetti lesson 4 Maximum likelihood Interval estimation

E. Santovetti lesson 4 Maximum likelihood Interval estimation E. Santovetti lesson 4 Maximum likelihood Interval estimation 1 Extended Maximum Likelihood Sometimes the number of total events measurements of the experiment n is not fixed, but, for example, is a Poisson

More information

Measuring Cosmic Ray Muon Decay Constant and Flux

Measuring Cosmic Ray Muon Decay Constant and Flux WJP, PHY381 (2015) Wabash Journal of Physics v3.3, p.1 Measuring Cosmic Ray Muon Decay Constant and Flux R.C. Dennis, D.T. Tran, J. Qi, and J. Brown Department of Physics, Wabash College, Crawfordsville,

More information

Statistical Methods in Particle Physics

Statistical Methods in Particle Physics Statistical Methods in Particle Physics Introduction October 15, 2012 Silvia Masciocchi, GSI Darmstadt s.masciocchi@gsi.de Niklaus Berger, University of Heidelberg nberger@physi.uni-heidelberg.de Winter

More information

Design, Construction, Operation, and Simulation of a Radioactivity Assay Chamber

Design, Construction, Operation, and Simulation of a Radioactivity Assay Chamber Design, Construction, Operation, and Simulation of a Radioactivity Assay Chamber Wesley Ketchum and Abe Reddy EWI Group, UW REU 2006 Outline Neutrino Physics Background Double Beta Decay and the Majorana

More information

Discovery and Significance. M. Witherell 5/10/12

Discovery and Significance. M. Witherell 5/10/12 Discovery and Significance M. Witherell 5/10/12 Discovering particles Much of what we know about physics at the most fundamental scale comes from discovering particles. We discovered these particles by

More information

Neutrinoless Double Beta Decay for Particle Physicists

Neutrinoless Double Beta Decay for Particle Physicists Neutrinoless Double Beta Decay for Particle Physicists GK PhD Presentation Björn Lehnert Institut für Kern- und Teilchenphysik Berlin, 04/10/2011 About this talk Double beta decay: Particle physics implications

More information

Error analysis for efficiency

Error analysis for efficiency Glen Cowan RHUL Physics 28 July, 2008 Error analysis for efficiency To estimate a selection efficiency using Monte Carlo one typically takes the number of events selected m divided by the number generated

More information

Statistical Data Analysis Stat 3: p-values, parameter estimation

Statistical Data Analysis Stat 3: p-values, parameter estimation Statistical Data Analysis Stat 3: p-values, parameter estimation London Postgraduate Lectures on Particle Physics; University of London MSci course PH4515 Glen Cowan Physics Department Royal Holloway,

More information

Computer simulation of radioactive decay

Computer simulation of radioactive decay Computer simulation of radioactive decay y now you should have worked your way through the introduction to Maple, as well as the introduction to data analysis using Excel Now we will explore radioactive

More information

Robustness and Distribution Assumptions

Robustness and Distribution Assumptions Chapter 1 Robustness and Distribution Assumptions 1.1 Introduction In statistics, one often works with model assumptions, i.e., one assumes that data follow a certain model. Then one makes use of methodology

More information

Analysis of γ spectrum

Analysis of γ spectrum IFM The Department of Physics, Chemistry and Biology LAB 26 Analysis of γ spectrum NAME PERSONAL NUMBER DATE APPROVED I. OBJECTIVES - To understand features of gamma spectrum and recall basic knowledge

More information

Physics 1252 Section Exam #2A

Physics 1252 Section Exam #2A Thu, 23 March 2017 Name: Physics 1252 Section 27180 Exam #2A Instructions: This is a closed-book, closed-notes exam. You are allowed to use a clean print-out of your formula sheet, any scientific calculator,

More information

SCINTILLATION DETECTORS & GAMMA SPECTROSCOPY: AN INTRODUCTION

SCINTILLATION DETECTORS & GAMMA SPECTROSCOPY: AN INTRODUCTION SCINTILLATION DETECTORS & GAMMA SPECTROSCOPY: AN INTRODUCTION OBJECTIVE The primary objective of this experiment is to use an NaI(Tl) detector, photomultiplier tube and multichannel analyzer software system

More information

Gamma-Ray coincidence and 60 Co angular correlation

Gamma-Ray coincidence and 60 Co angular correlation Gamma-Ray coincidence and 60 Co angular correlation With two γ-ray detectors, it is possible to determine that two g-rays are part of the same cascade by measuring the spectrum in one detector coincident

More information

LUCIFER. Marco Vignati INFN Roma XCVIII congresso SIF, Napoli, 21 Settembre 2012

LUCIFER. Marco Vignati INFN Roma XCVIII congresso SIF, Napoli, 21 Settembre 2012 LUCIFER Marco Vignati INFN Roma XCVIII congresso SIF, Napoli, 21 Settembre 212 Neutrino nature Except for the total leptonic number the neutrino is a neutral fermion. So if the total leptonic number is

More information

Detection of Z Gauge Bosons in the Di-muon Decay Mode in CMS

Detection of Z Gauge Bosons in the Di-muon Decay Mode in CMS Detection of Z Gauge Bosons in the Di-muon Decay Mode in CM Robert Cousins, Jason Mumford and Viatcheslav Valuev University of California, Los Angeles for the CM collaboration Physics at LHC Vienna, -7

More information

Physics 6720 Introduction to Statistics April 4, 2017

Physics 6720 Introduction to Statistics April 4, 2017 Physics 6720 Introduction to Statistics April 4, 2017 1 Statistics of Counting Often an experiment yields a result that can be classified according to a set of discrete events, giving rise to an integer

More information

MASS ATTENUATION COEFFICIENT OF LEAD

MASS ATTENUATION COEFFICIENT OF LEAD OBJECTIVE MASS ATTENUATION COEFFICIENT OF LEAD The objective of this experiment is to measure the mass attenuation coefficient of lead by manipulating Beer-Lambert s law of attenuation. INTRODUCTION Background

More information

The GERmanium Detector Array

The GERmanium Detector Array The GERmanium Detector Array n n ν=v p e - e - p Outline: Exp. issues of 0νββ-decay of 76 Ge Concept of GERDA Status of the experiment Summary and conclusions Kevin Kröninger (Max-Planck-Institut für Physik,

More information

Results on neutrinoless double beta decay of 76 Ge from the GERDA experiment

Results on neutrinoless double beta decay of 76 Ge from the GERDA experiment EPJ Web of Conferences 95, 04049 (05) DOI:.5/ epjconf/ 059504049 C Owned by the authors, published by EDP Sciences, 05 Results on neutrinoless double beta decay of 76 Ge from the GERDA experiment Dimitrios

More information

BEGe Detector studies update

BEGe Detector studies update BEGe Detector studies update Performance and analysis Dušan Budjáš Stefan Schönert Mikael Hult* MPI für Kernphysik Heidelberg * IRMM Geel MAX-PLANCK-INSTITUTNSTITUT FÜR KERNPHYSIK Outline 1. BEGe publication

More information

Energy loss of alpha particles - Prelab questions

Energy loss of alpha particles - Prelab questions Energy loss of alpha particles - Prelab questions 1. Write down the decay path from 226 Ra to 206 Pb. Show the intermediate nuclides and the nuclear reactions which cause each transformation (α/β ± decay).

More information

Measurements of a Table

Measurements of a Table Measurements of a Table OBJECTIVES to practice the concepts of significant figures, the mean value, the standard deviation of the mean and the normal distribution by making multiple measurements of length

More information

Error propagation. Alexander Khanov. October 4, PHYS6260: Experimental Methods is HEP Oklahoma State University

Error propagation. Alexander Khanov. October 4, PHYS6260: Experimental Methods is HEP Oklahoma State University Error propagation Alexander Khanov PHYS660: Experimental Methods is HEP Oklahoma State University October 4, 017 Why error propagation? In many cases we measure one thing and want to know something else

More information

Cosmogenic background for the GERDA experiment. Luciano Pandola INFN, Laboratori del Gran Sasso, Italy

Cosmogenic background for the GERDA experiment. Luciano Pandola INFN, Laboratori del Gran Sasso, Italy Cosmogenic background for the GERDA experiment Luciano Pandola INFN, Laboratori del Gran Sasso, Italy Cosmogenic Activity and Background Workshop, Berkeley April 15 th, 2011 GERDA experiment at LNGS The

More information

Status of the AMoRE experiment searching for neutrinoless double beta decay of 100 Mo

Status of the AMoRE experiment searching for neutrinoless double beta decay of 100 Mo Status of the AMoRE experiment searching for neutrinoless double beta decay of 100 Mo Hyon-Suk Jo Center for Underground Physics Institute for Basic Science INPC 2016 - Adelaide Convention Centre, Australia

More information

Status and Perspectives of the COBRA-Experiment

Status and Perspectives of the COBRA-Experiment Status and Perspectives of the COBRA-Experiment Jan Tebrügge for the COBRA Collaboration Status and Perspectives of the COBRA-Experiment Jan Tebrügge beta decays for thedouble COBRA Collaboration CdZnTe

More information

Neutron Activation of 76Ge

Neutron Activation of 76Ge Neutron Activation of 76Ge Georg Meierhofer people involved: P. Grabmayr J. Jochum Kepler Center for Astro and Particle Physics University Tübingen P. Kudejova L. Canella J. Jolie IKP, Universität zu Köln

More information

Double Beta Present Activities in Europe

Double Beta Present Activities in Europe APPEAL Workshop 19-21 February 2007, Japan Double Beta Present Activities in Europe Xavier Sarazin Laboratoire de l Accélérateur Linéaire Orsay France Germanium detector Bolometers CdZnTe semiconductors

More information

LAB 2 1. Measurement of 2. Binomial Distribution

LAB 2 1. Measurement of 2. Binomial Distribution LAB 2 Gan Phys 3700 1. Measurement of π In this exercise we will determine a value for π by throwing darts: a) Determine π by throwing a dart 100 or more times. Use an 8x11 inch sheet of paper with a circle

More information

Physics 1252 Exam #2A

Physics 1252 Exam #2A Physics 1252 Exam #2A Instructions: This is a closed-book, closed-notes exam. You are allowed to use a clean print-out of your formula sheet, any scientific calculator, and a ruler. Do not write on your

More information

Physics 1212 Exam #2B

Physics 1212 Exam #2B Physics 1212 Exam #2B Instructions: This is a closed-book, closed-notes exam. You are allowed to use a clean print-out of your formula sheet, any scientific calculator, and a ruler. Do not write on your

More information

Experimental Searches for Neutrinoless Double-Beta Decays in 76-Ge Alan Poon

Experimental Searches for Neutrinoless Double-Beta Decays in 76-Ge Alan Poon Experimental Searches for Neutrinoless Double-Beta Decays in 76-Ge Alan Poon Institute for Nuclear and Particle Astrophysics Nuclear Science Division 1 Outline Introduction - 0νββ decay (see Agostini s

More information

Overview: In this experiment we study the decay of a radioactive nucleus, Cesium 137. Figure 1: The Decay Modes of Cesium 137

Overview: In this experiment we study the decay of a radioactive nucleus, Cesium 137. Figure 1: The Decay Modes of Cesium 137 Radioactivity (Part I and Part II) 7-MAC Objectives: To measure the absorption of beta and gamma rays To understand the concept of half life and to measure the half life of Ba 137* Apparatus: Radioactive

More information

manipulate this equation to solve for D * in terms of N

manipulate this equation to solve for D * in terms of N Lab 2 Preparation Questions Tear off this page and turn in at the beginning of Lab Name Section Day Date RADIOACTIVE DECAY: Relationships between parent and daughter nuclides N 0 = initial number of radioactive

More information

Rutherford Scattering

Rutherford Scattering Rutherford Scattering Today's understanding of the atom, as a structure whose positive charge and majority of mass are concentrated in a minute nucleus, is due to the α particle scattering experiments

More information

Statistical Methods in Particle Physics

Statistical Methods in Particle Physics Statistical Methods in Particle Physics Lecture 10 December 17, 01 Silvia Masciocchi, GSI Darmstadt Winter Semester 01 / 13 Method of least squares The method of least squares is a standard approach to

More information

Experiment 2: Projectile motion and conservation of energy

Experiment 2: Projectile motion and conservation of energy Experiment 2: Projectile motion and conservation of energy Nate Saffold nas2173@columbia.edu Office Hour: Mondays, 5:30PM-6:30PM @ Pupin 1216 INTRO TO EXPERIMENTAL PHYS-LAB 1494/2699 Overview The physics

More information

Investigation of Possible Biases in Tau Neutrino Mass Limits

Investigation of Possible Biases in Tau Neutrino Mass Limits Investigation of Possible Biases in Tau Neutrino Mass Limits Kyle Armour Departments of Physics and Mathematics, University of California, San Diego, La Jolla, CA 92093 (Dated: August 8, 2003) We study

More information

arxiv: v1 [physics.ins-det] 3 Feb 2011

arxiv: v1 [physics.ins-det] 3 Feb 2011 Nuclear Instruments and Methods in Physics Research A 00 (2018) 1 5 Alogo.pdf Nuclear Instruments and Methods in Physics Research A Scintillation decay time and pulse shape discrimination in oxygenated

More information

GERDA experiment A search for neutrinoless double beta decay. Roberto Santorelli (Physik-Institut der Universität Zürich)

GERDA experiment A search for neutrinoless double beta decay. Roberto Santorelli (Physik-Institut der Universität Zürich) GERDA experiment A search for neutrinoless double beta decay Roberto Santorelli (Physik-Institut der Universität Zürich) on behalf of the GERDA collaboration ÖPG/SPS/ÖGAA meeting 04/09/09 Neutrinos mixing

More information

Recent Heavy Flavors results from Tevatron. Aleksei Popov (Institute for High Energy Physics, Protvino) on behalf of the CDF and DØ Collaborations

Recent Heavy Flavors results from Tevatron. Aleksei Popov (Institute for High Energy Physics, Protvino) on behalf of the CDF and DØ Collaborations Recent Heavy Flavors results from Tevatron Aleksei Popov (Institute for High Energy Physics, Protvino) on behalf of the CDF and DØ Collaborations March 27, 2017 Outline Tevatron, CDF and DØ Confirmation

More information

Course Project. Physics I with Lab

Course Project. Physics I with Lab COURSE OBJECTIVES 1. Explain the fundamental laws of physics in both written and equation form 2. Describe the principles of motion, force, and energy 3. Predict the motion and behavior of objects based

More information

Project Memorandum. N N o. = e (ρx)(µ/ρ) (1)

Project Memorandum. N N o. = e (ρx)(µ/ρ) (1) Project Memorandum To : Jebediah Q. Dingus, Gamma Products Inc. From : Patrick R. LeClair, Material Characterization Associates, Inc. Re : 662 kev Gamma ray shielding Date : January 5, 2010 PH255 S10 LeClair

More information

Björn Lehnert. Search for double beta decays of palladium isotopes into excited states

Björn Lehnert. Search for double beta decays of palladium isotopes into excited states Search for double beta decays of palladium isotopes into excited states INTERNATIONAL SCHOOL OF NUCLEAR PHYSICS 35th Course Erice 23/09/2013 Björn Lehnert Institut für Kern- und Teilchenphysik Outline

More information

Overview: In this experiment we will study the decay of a radioactive nucleus, Cesium. Figure 1: The Decay Modes of Cesium 137

Overview: In this experiment we will study the decay of a radioactive nucleus, Cesium. Figure 1: The Decay Modes of Cesium 137 Radioactivity (Part I and Part II) Objectives: To measure the absorption of beta and gamma rays To understand the concept of half life and to measure the half life of Ba 137* Apparatus: Radioactive source,

More information

Strand J. Atomic Structure. Unit 2. Radioactivity. Text

Strand J. Atomic Structure. Unit 2. Radioactivity. Text Strand J. Atomic Structure Unit 2. Radioactivity Contents Page Unstable Nuclei 2 Alpha, Beta and Gamma Radiation 5 Balancing Equations for Radioactive Decay 10 Half Life 12 J.2.1. Unstable Nuclei. The

More information

GAMMA RAY SPECTROSCOPY

GAMMA RAY SPECTROSCOPY GAMMA RAY SPECTROSCOPY Gamma Ray Spectroscopy 1 In this experiment you will use a sodium iodide (NaI) detector along with a multichannel analyzer (MCA) to measure gamma ray energies from energy level transitions

More information

UNIT 18 RADIOACTIVITY. Objectives. to be able to use knowledge of electric and magnetic fields to explore the nature of radiation

UNIT 18 RADIOACTIVITY. Objectives. to be able to use knowledge of electric and magnetic fields to explore the nature of radiation UNIT 18 RADIOACTIVITY Objectives to be able to use knowledge of electric and magnetic fields to explore the nature of radiation to understand that radioactivity is a statistical process; each unstable

More information

First results on neutrinoless double beta decay of 82 Se with CUPID-0

First results on neutrinoless double beta decay of 82 Se with CUPID-0 First results on neutrinoless double beta decay of 82 Se with CUPID-0 Lorenzo Pagnanini on behalf of the CUPID-0 collaboration 30 th Rencontres de Blois CUPID: a next generation experiment CUPID (CUORE

More information

Collapse and the Tritium Endpoint Pileup

Collapse and the Tritium Endpoint Pileup Collapse and the Tritium Endpoint Pileup arxiv:nucl-th/9901092v2 4 Feb 1999 Richard Shurtleff January 23, 1999 Abstract The beta-decay of a tritium nucleus produces an entangled quantum system, a beta

More information

The Gerda Experiment for the Search of Neutrinoless Double Beta Decay

The Gerda Experiment for the Search of Neutrinoless Double Beta Decay The Gerda Experiment for the Search of Neutrinoless Double Beta Decay Manuel Walter for the Gerda collaboration Physik-Institut, Universität Zürich, 8057 Zürich, Switzerland DOI: will be assigned The Gerda

More information

Phys 243 Lab 7: Radioactive Half-life

Phys 243 Lab 7: Radioactive Half-life Phys 243 Lab 7: Radioactive Half-life Dr. Robert MacDonald The King s University College Winter 2013 Abstract In today s lab you ll be measuring the half-life of barium-137, a radioactive isotope of barium.

More information

Math 115 Practice for Exam 2

Math 115 Practice for Exam 2 Math 115 Practice for Exam Generated October 30, 017 Name: SOLUTIONS Instructor: Section Number: 1. This exam has 5 questions. Note that the problems are not of equal difficulty, so you may want to skip

More information

CSE 331 Winter 2018 Homework 1

CSE 331 Winter 2018 Homework 1 Directions: - Due Wednesday, January 10 by 11 pm. - Turn in your work online using gradescope. You should turn in a single pdf file. You can have more than one answer per page, but please try to avoid

More information

AMoRE 0 experiment using low temperature 40 Ca 100 MoO 4 calorimeters

AMoRE 0 experiment using low temperature 40 Ca 100 MoO 4 calorimeters AMoRE 0 experiment using low temperature 40 Ca 100 MoO 4 calorimeters Yong-Hamb Kim On behalf of AMoRE collaboration Institute for Basic Science (IBS) Korea Research Institute for Standards and Science

More information

Modern Methods of Data Analysis - WS 07/08

Modern Methods of Data Analysis - WS 07/08 Modern Methods of Data Analysis Lecture V (12.11.07) Contents: Central Limit Theorem Uncertainties: concepts, propagation and properties Central Limit Theorem Consider the sum X of n independent variables,

More information

GERDA: The GERmanium Detector Array for the search for neutrinoless decays of 76 Ge. Allen Caldwell Max-Planck-Institut für Physik

GERDA: The GERmanium Detector Array for the search for neutrinoless decays of 76 Ge. Allen Caldwell Max-Planck-Institut für Physik GERDA: The GERmanium Detector Array for the search for neutrinoless decays of 76 Ge Allen Caldwell Max-Planck-Institut für Physik What we know Mass Scale NORMAL INVERTED m 12 2 known m 13 2 known Mixing

More information

13.2 NUCLEAR PHYSICS HW/Study Packet

13.2 NUCLEAR PHYSICS HW/Study Packet 13.2 NUCLEAR PHYSICS HW/Study Packet Required: READ Tsokos, pp 407-412 SL/HL Supplemental: Cutnell and Johnson, pp 652-652, 970-973 DO Questions pp 412-414 #1,3,11 REMEMBER TO. Work through all of the

More information

Experiment 2 Random Error and Basic Statistics

Experiment 2 Random Error and Basic Statistics PHY9 Experiment 2: Random Error and Basic Statistics 8/5/2006 Page Experiment 2 Random Error and Basic Statistics Homework 2: Turn in at start of experiment. Readings: Taylor chapter 4: introduction, sections

More information

Search for 0νββ-decay with GERDA Phase II

Search for 0νββ-decay with GERDA Phase II Search for 0νββ-decay with GERDA Phase II (MPI für Physik) for the collaboration GERDA OUTLINE: Phase I background results Phase II data taking Phase II background \wo cuts LAr veto and PSD cuts 0νββ result

More information

INTRODUCTION TO LABORATORY EXPERIMENT AND MEASUREMENT

INTRODUCTION TO LABORATORY EXPERIMENT AND MEASUREMENT INTRODUCTION TO LABORATORY EXPERIMENT AND MEASUREMENT Purpose Theory a. To take some simple measurements to use for statistical analysis b. To learn how to use a Vernier caliper and a micrometer screw

More information

A Study of Radioactivity and Determination of Half-Life

A Study of Radioactivity and Determination of Half-Life A Study of Radioactivity and Determination of Half-Life Purpose: To examine different types of radioactivity and their properties, and measure the half-life of a radioisotope Introduction A radioactive

More information

Statistics of Radioactive Decay

Statistics of Radioactive Decay Statistics of Radioactive Decay Introduction The purpose of this experiment is to analyze a set of data that contains natural variability from sample to sample, but for which the probability distribution

More information

Radioactivity 1. How: We randomize and spill a large set of dice, remove those showing certain numbers, then repeat.

Radioactivity 1. How: We randomize and spill a large set of dice, remove those showing certain numbers, then repeat. PHYS 1301 Radioactivity 1 Why: To illustrate the notion of half-life of a decaying system. What: We will remove members of a population using a certain rule at each stage and from the decay in the population

More information

Lifetime Measurement

Lifetime Measurement Lifetime Measurement Calculator 3 The activity (in decays per second) of some radioactive samples varies in time in a particularly simple way. If the activity (R) in decays per second of a sample is proportional

More information

Generalized Partial Wave Analysis Software for PANDA

Generalized Partial Wave Analysis Software for PANDA Generalized Partial Wave Analysis Software for PANDA 39. International Workshop on the Gross Properties of Nuclei and Nuclear Excitations The Structure and Dynamics of Hadrons Hirschegg, January 2011 Klaus

More information

CANDLES Experiment Current Status and Future Plan. X. Li for the CANDLES Collaboration

CANDLES Experiment Current Status and Future Plan. X. Li for the CANDLES Collaboration CANDLES Experiment Current Status and Future Plan X. Li for the CANDLES Collaboration 1 Neutrinoless Double Beta Decay (0νββ) 2νββ decay 0νββ decay (A, Z) => (A, Z+2) + 2e - process beyond Standard Model

More information

Physics 1000 Half Life Lab

Physics 1000 Half Life Lab Physics 1000 Half Life Lab Determination of Half-Life with a Geiger-Müller Counter Object: Apparatus: To understand the concept of half-life; to become familiar with the use of a Geiger-Müller counter;

More information

Esperimenti bolometrici al Gran Sasso: CUORE e CRESST

Esperimenti bolometrici al Gran Sasso: CUORE e CRESST Esperimenti bolometrici al Gran Sasso: CUORE e CRESST Marco Vignati 24 Ottobre 2011 0νDBD in Theory Nuclear process: (A,Z) (A,Z+2) + 2 e - Can only happen if lepton number is not conserved. The decay probability

More information

HEROICA: a test facility for the characterization of BEGe detectors for the GERDA experiment

HEROICA: a test facility for the characterization of BEGe detectors for the GERDA experiment Physikalisches Institut Kepler Center for Astro and Particle Physics : a test facility for the characterization of BEGe detectors for the GERDA experiment Raphael Falkenstein for the GERDA collaboration

More information

Lifetime Measurement

Lifetime Measurement Lifetime Measurement LabQuest 3 The activity (in decays per second) of some radioactive samples varies in time in a particularly simple way. If the activity (R) in decays per second of a sample is proportional

More information

Systematic uncertainties in statistical data analysis for particle physics. DESY Seminar Hamburg, 31 March, 2009

Systematic uncertainties in statistical data analysis for particle physics. DESY Seminar Hamburg, 31 March, 2009 Systematic uncertainties in statistical data analysis for particle physics DESY Seminar Hamburg, 31 March, 2009 Glen Cowan Physics Department Royal Holloway, University of London g.cowan@rhul.ac.uk www.pp.rhul.ac.uk/~cowan

More information

Chapter 8. Experiment 6: Collisions in Two Dimensions. Historical Aside

Chapter 8. Experiment 6: Collisions in Two Dimensions. Historical Aside Chapter 8 Experiment 6: Collisions in Two Dimensions Last week we introduced the Principle of Conservation of Momentum and we demonstrated it experimentally in linear collisions. This week we will extend

More information

Two Neutrino Double Beta (2νββ) Decays into Excited States

Two Neutrino Double Beta (2νββ) Decays into Excited States Two Neutrino Double Beta (2νββ) Decays into Excited States International School of Subnuclear Physics 54 th Course: The new physics frontiers in the LHC-2 era Erice, 17/06/2016 Björn Lehnert TU-Dresden,

More information

PHYS 202. Lecture 24 Professor Stephen Thornton April 27, 2005

PHYS 202. Lecture 24 Professor Stephen Thornton April 27, 2005 PHYS 202 Lecture 24 Professor Stephen Thornton April 27, 2005 Reading Quiz 44 20Ca has how many neutrons? 1) 44 2) 24 3) 20 4) Can t be determined Answer: 2 Mass number is 44 Atomic number is 20 Neutron

More information

9 Nuclear decay Answers to exam practice questions

9 Nuclear decay Answers to exam practice questions Pages 173 178 Exam practice questions 1 X-rays are quanta of energy emitted when electrons fall to a lower energy level, and so do not emanate from the nucleus Answer D. 2 Alpha particles, being the most

More information

I. Pre-Lab Introduction

I. Pre-Lab Introduction I. Pre-Lab Introduction Please complete the following pages before the lab by filling in the requested items. A. Atomic notation: Atoms are composed of a nucleus containing neutrons and protons surrounded

More information

Significant Figures and an Introduction to the Normal Distribution

Significant Figures and an Introduction to the Normal Distribution Significant Figures and an Introduction to the Normal Distribution Object: To become familiar with the proper use of significant figures and to become acquainted with some rudiments of the theory of measurement.

More information

THE MÖSSBAUER EFFECT

THE MÖSSBAUER EFFECT THE MÖSSBAUER EFFECT Resonant gamma ray fluorescence is a useful tool in determining a variety of nuclear and solid state properties. The discovery of the Mössbauer effect greatly increased the accuracy

More information

Various aspects and results on beta decay, DBD, COBRA and LFV

Various aspects and results on beta decay, DBD, COBRA and LFV Fakultät Mathematik und Naturwissenschaften, Institut für Kern- und Teilchenphysik Various aspects and results on beta decay, DBD, COBRA and LFV 31.5. 2017, MEDEX 2017 Institut für Kern- und Teilchenphysik

More information

The GERDA Experiment:

The GERDA Experiment: The GERDA Experiment: a search for neutrinoless double beta decay Max-Planck-Institute for Physics, Munich now at University of Wisconsin, Madison on behalf of the GERDA Collaboration Outline: Motivation

More information

Detection of X-Rays. Solid state detectors Proportional counters Microcalorimeters Detector characteristics

Detection of X-Rays. Solid state detectors Proportional counters Microcalorimeters Detector characteristics Detection of X-Rays Solid state detectors Proportional counters Microcalorimeters Detector characteristics Solid State X-ray Detectors X-ray interacts in material to produce photoelectrons which are collected

More information

PHYA1. General Certificate of Education Advanced Subsidiary Examination June Particles, Quantum Phenomena and Electricity (JUN10PHAY101 TOTAL

PHYA1. General Certificate of Education Advanced Subsidiary Examination June Particles, Quantum Phenomena and Electricity (JUN10PHAY101 TOTAL Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials Physics A Unit 1 For this paper you must have: a pencil and a ruler a calculator a Data and

More information

Scintillation Detector

Scintillation Detector Scintillation Detector Introduction The detection of ionizing radiation by the scintillation light produced in certain materials is one of the oldest techniques on record. In Geiger and Marsden s famous

More information

Econ 1123: Section 2. Review. Binary Regressors. Bivariate. Regression. Omitted Variable Bias

Econ 1123: Section 2. Review. Binary Regressors. Bivariate. Regression. Omitted Variable Bias Contact Information Elena Llaudet Sections are voluntary. My office hours are Thursdays 5pm-7pm in Littauer Mezzanine 34-36 (Note room change) You can email me administrative questions to ellaudet@gmail.com.

More information

Hydra. A. Augusto Alves Jr and M.D. Sokoloff. University of Cincinnati

Hydra. A. Augusto Alves Jr and M.D. Sokoloff. University of Cincinnati Hydra A library for data analysis in massively parallel platforms A. Augusto Alves Jr and M.D. Sokoloff University of Cincinnati aalvesju@cern.ch Presented at the Workshop Perspectives of GPU computing

More information

Modern Methods of Data Analysis - WS 07/08

Modern Methods of Data Analysis - WS 07/08 Modern Methods of Data Analysis Lecture VIc (19.11.07) Contents: Maximum Likelihood Fit Maximum Likelihood (I) Assume N measurements of a random variable Assume them to be independent and distributed according

More information

Absolute photon energy calibration using π 0 s

Absolute photon energy calibration using π 0 s Absolute photon energy calibration using π s A.D. Bukin BINP, Novosibirsk June 1, 25 BaBar Note #571 BaBar Note #582 analytically First idea of deconvolution algorithm Idea to use special fitting functions

More information

Experiment 1: The Same or Not The Same?

Experiment 1: The Same or Not The Same? Experiment 1: The Same or Not The Same? Learning Goals After you finish this lab, you will be able to: 1. Use Logger Pro to collect data and calculate statistics (mean and standard deviation). 2. Explain

More information

arxiv: v1 [nucl-ex] 20 Dec 2008

arxiv: v1 [nucl-ex] 20 Dec 2008 Operation of a GERDA Phase I prototype detector in liquid argon and nitrogen M. Barnabé Heider a, A. Bakalyarov b, L. Bezrukov c, C. Cattadori d, O. Chkvorets a, K. Gusev b,e, M. Hult f, I. Kirpichnikov

More information

Using the same notation, give the isotope of carbon that has two fewer neutrons.

Using the same notation, give the isotope of carbon that has two fewer neutrons. A radioactive isotope of carbon is represented by C. Using the same notation, give the isotope of carbon that has two fewer neutrons. () Calculate the charge on the ion formed when two electrons are removed

More information

Lab NUC. Determination of Half-Life with a Geiger-Müller Counter

Lab NUC. Determination of Half-Life with a Geiger-Müller Counter Lab NUC Determination of Half-Life with a Geiger-Müller Counter Object: Apparatus: To understand the concept of half-life; to become familiar with the use of a Geiger-Müller counter; to determine the half-lives

More information

Coincidence measurements for Gerda Phase II

Coincidence measurements for Gerda Phase II Coincidence measurements for Gerda Phase II Katharina von Sturm Università degli Studi di Padova June 26, 2014 Katharina von Sturm (Uni Padova) Coincidence measurements June 26, 2014 1 / 17 Table of contents

More information