Statistical Tests: Discriminants

Size: px
Start display at page:

Download "Statistical Tests: Discriminants"

Transcription

1 PHY310: Lecture 13 Statistical Tests: Discriminants Road Map Introduction to Statistical Tests (Take 2) Use in a Real Experiment Likelihood Ratio 1

2 Some Terminology for Statistical Tests Hypothesis This is what you are testing In physics, our models are usually functions that we will compare to data A model with specific parameters (e.g. the muon decay lifetime is 2.2 μs) A model with any parameter (e.g. particle decay follow an exponential p.d.f.) A model and the best fit parameters. Null Hypothesis This is the model that you are testing that is Usually denoted H0 Alternate Hypotheses Any other models you are comparing to the Null Hypothesis Usually denoted H1, H2,... Test Statistic A function of the measured variables, t(x1, x2,...) There will be a different pdf for each hypothesis (e.g. g(t H0), f(t H1), &c) 2

3 Defining Test Statistics A test statistic can be any function of the measured variables But some are better than others Examples: Two hypothesis statistics (also called discriminants) The Likelihood Ratio = t x The optimal way to compare two alternate hypotheses Fisher's Discriminant g x ; H0 g x ; H1 =at x = ai x i t x A linear approximation to the likelihood ratio Single hypothesis statistics (also call goodness-of-fit tests) The Likelihood Distribution Works for unbinned data Doesn't require an alternate hypothesis The χ² Distribution (chi-squared) Only works for binned data The absolute most common test 2 observed expected 2 = expected variance 3

4 The Problem: Classifying Data Many physics experiments are measuring things that come from several different classes of data. Particle Decays It decayed in the time window It didn't decay in the time window Super-Conductivity The sample is super conducting The sample isn't super conducting Super Novae Searchs A galaxy has a super nova A galaxy doesn't have a super nova Notice: The problem is (usually) phrased as a binary question Yes/No, True/False, Left/Right 4

5 Digression: Discriminants in Real Experiments Neutrino Oscillations: Cosmic Rays vs the Standard Model The Atmospheric Neutrino Problem Started as a background study for proton decay searches Based on measuring the electron and muon neutrino fluxes from cosmic rays striking the upper atmosphere Required classifying events as electron-like and muon-like One of the first solid body of data to significantly contradict standard model of particle physics That means the standard of proof had to be very high 5

6 The Standard Model of Particle Physics Standard Model of Particle Physics has been INCREDIBLY successful Predicted that neutrinos: are massless, can't oscillate, not their own anti particle 6

7 The Atmospheric Neutrino Problem Too Few Nu Mu Five experiments with slightly contradictory results First two were very small external contamination problems crude estimate of expectation Next three were much larger Still not many events IMB-3 biggest with ~970 events less (no!) external contamination better estimate of expectation but, coarser detector 7

8 SuperTankers of Physics: Ring Imaging Water Cherenkov Detectors Massive Active Volume for Atmospheric Interactions Solar Interactions Relic Supernova n Nucleon Decay Signals Measure light Tank of Water (all Active) light direction 8

9 Start with a Big Hole in the Ground IMB Hole Super-Kamiokande Hole 9

10 Install Light Sensors 10

11 Fill it with Water 11

12 The Discriminant Problem Discriminate between Events with an electron 12

13 The Discriminant Problem Discriminate between Events with an muon 13

14 Electrons vs Muons 14

15 Discriminant Analysis Construct a test statistic that has different PDFs for alternate hypotheses Remember a test statistic is any function of the measured variables t cut accept= dt g t H0 0 reject= dt g t H 0 t cut t cut confusion= dt g t H1 0 The acceptance should be large, the rejection small, and the confusion very small! This is also called multi-variate analysis since we almost always are trying to construct a statistical test using several different variables 15

16 Constructing the Test Statistic Suppose you've got measurements x = x 1, x 2,..., x n And likelihood functions for the alternate hypotheses ; H0 =g L x x H 0 ; H1 =g L x x H 1 The best test statistic will be the likelihood ratio = t x L x ; H0 ; H0 log L or log t =log L x x ; H 1 L x ; H1 The problem is that we usually can't construct the full likelihood Mostly generate likelihood distributions with an MC For multi-dimensional likelihoods, not enough memory (or time)! A five dimensional likelihood approximated by a pdf with 40 bins per dimension has ~100M bins Optimal selection will be t > constant 16

17 Simplifying the Likelihood Ratio A typical multi-dimensional likelihood has lots of internal correlations Approximate as a product of independent functions ; H0 = L x 1 ; H 0 L x 2 ; H0... L x n ; H 0 L x Independent likelihoods are much easier to construct Resulting statistic may not be optimal, but remember any test statistic that works is great Usually working in several dimensions (e.g. 5+) so can't make a nice scatter plot to see internal structure of p.d.f. 17

18 Building a Linearized Likelihood L x ; H0 = L x 1 ; H0 L x 2 ; H0... L x n ; H0 Best you can usually do is to make projections of each variable Can't see the internal correlations. But, it's quick and easy! Each projection can be studied independently. WARNING: generate p.d.f. and test efficiency with a different data sets The p.d.f.s are generated by histograming the projection onto each axis. This is used as a look-up to generate the full likelihood. 18

19 Applying to the Data The p.d.f. histograms for each variable must Have the same number of bins be normalized to have the same integrals. TH1F* type1x = new TH1F( type1x, X PDF, 100, -5, 5); TH1F* type2x = new TH1F( type2x, X PDF, 100, -5, 5); // Fill the histograms, then normalize type1x->scale(1.0/type1x->getentries()); type2x->scale(1.0/type2x->getentries()); The likelihood for a particular point x, y is calculated by looking up the number of entries in the bin of the pdf histograms // Find the bin numbers for each variable int binx = type1x->getxaxis()->findbin(x); int biny = type1y->getxaxis()->findbin(y); // Look up the bin contents double t1x = std::max(type1x->getbincontent(binx),1e-3); double t1y = std::max(type1y->getbincontent(biny),1e-3); double t2x = std::max(type2x->getbincontent(binx),1e-3); double t2y = std::max(type2y->getbincontent(biny),1e-3); // Calculate the log likelihood difference. double value = TMath::Log10(t1X); value += TMath::Log10(t1Y); value -= TMath::Log10(t2X); value -= TMath::Log10(t2Y); The usual likelihood cut is taken at zero. Might use a different value, it depends on the desired efficiency and purity. 19

20 Evaluating Efficiency and Contamination Data is classified by calculating the log(l) for each point The cut is chosen based on the desired efficiency and purity Plot the distribution of log(l) Expected distribution should be compared with measured. Efficiency is number correctly classified. Contamination is number incorrectly classified 20

21 Finally Statistical tests that compare alternate hypotheses are used to classify data into two or more categories Called Discriminant Analysis, or Multi-Variate Analysis If you know the full multi-dimensional p.d.f. then the likelihood is an optimal statistical test It's as good as it can get. Usually you don't know the full p.d.f. but you can approximate it as a product of independent p.d.f.s for each variable Looses information about the internal correlations, but makes the problem computationally tractable. For a wide class of data, the log likelihood difference is a simple and nearly optimal statistic. Choose this unless there are indications that it is significantly sub-optimal There are more complex statistics to use when the log likelihood difference is extremely sub-optimal The End 21

Analyzing Data. PHY310: Lecture 16. Road Map

Analyzing Data. PHY310: Lecture 16. Road Map PHY310: Lecture 16 Analyzing Data Road Map Step One: Defining the Data Set Where it came from Understanding the background physics What are the measured variables Second Topic Third Topic 1 Example Analysis

More information

Data Analysis II. PHY310: Lecture 18. Road Map

Data Analysis II. PHY310: Lecture 18. Road Map 03/22/07 PHY310: Statistical Data Analysis 1 PHY310: Lecture 18 Data Analysis II Road Map Choosing the number of bins in a histogram Correcting Histograms for Systematic Uncertainty Weighting Events 03/22/07

More information

UNO: Underground Nucleon Decay and Neutrino Observatory

UNO: Underground Nucleon Decay and Neutrino Observatory UNO: Underground Nucleon Decay and Neutrino Observatory Clark McGrew NESS, Jan 2002 NESS 2002 McGrew p. 1 The UNO Concept Build on well-established techniques Explore broad range of physics Provide a general

More information

Recent results from Super-Kamiokande

Recent results from Super-Kamiokande Recent results from Super-Kamiokande ~ atmospheric neutrino ~ Yoshinari Hayato ( Kamioka, ICRR, U-Tokyo ) for the Super-Kamiokande collaboration 1 41.4m Super-Kamiokande detector 50000 tons Ring imaging

More information

Super-KamiokaNDE: Beyond Neutrino Oscillations. A. George University of Pittsburgh

Super-KamiokaNDE: Beyond Neutrino Oscillations. A. George University of Pittsburgh Super-KamiokaNDE: Beyond Neutrino Oscillations A. George University of Pittsburgh PART 1: NUCLEON DECAY What s in a name? Various stages of the experiment have been called: o Kamiokande o Kamiokande-II

More information

Showering Muons in Super Kamiokande. Scott Locke University of California, Irvine August 7 th, 2017

Showering Muons in Super Kamiokande. Scott Locke University of California, Irvine August 7 th, 2017 Showering Muons in Super Kamiokande Scott Locke University of California, Irvine August 7 th, 2017 Super Kamiokande Detector 39.3 m 41.4 m 1000 m 50kton water Cherenkov Ultrapure Water 22.5 kton fiducial

More information

Statistical Methods for Particle Physics Lecture 2: statistical tests, multivariate methods

Statistical Methods for Particle Physics Lecture 2: statistical tests, multivariate methods Statistical Methods for Particle Physics Lecture 2: statistical tests, multivariate methods www.pp.rhul.ac.uk/~cowan/stat_aachen.html Graduierten-Kolleg RWTH Aachen 10-14 February 2014 Glen Cowan Physics

More information

Long Baseline Neutrinos

Long Baseline Neutrinos Long Baseline Neutrinos GINA RAMEIKA FERMILAB SLAC SUMMER INSTITUTE AUGUST 5-6, 2010 Lecture 1 Outline Defining Long Baseline Experiment Ingredients Neutrino Beams Neutrino Interactions Neutrino Cross

More information

Solar Neutrinos and the 2015 Nobel Prize

Solar Neutrinos and the 2015 Nobel Prize Solar Neutrinos and the 2015 Nobel Prize UBC/TRIUMF Saturday Morning Lecture Series November 2016 Outline 1. What's a neutrino? 2. How do you detect neutrinos? 3. The solar neutrino problem 4. Neutrino

More information

Physics 403. Segev BenZvi. Classical Hypothesis Testing: The Likelihood Ratio Test. Department of Physics and Astronomy University of Rochester

Physics 403. Segev BenZvi. Classical Hypothesis Testing: The Likelihood Ratio Test. Department of Physics and Astronomy University of Rochester Physics 403 Classical Hypothesis Testing: The Likelihood Ratio Test Segev BenZvi Department of Physics and Astronomy University of Rochester Table of Contents 1 Bayesian Hypothesis Testing Posterior Odds

More information

RELATIVITY. Special Relativity

RELATIVITY. Special Relativity RELATIVITY Special Relativity FROM WARMUP How does special relativity differ from general? Special relativity deals with inertial reference frames. General relativity deals with gravity and acceleration

More information

Search for Astrophysical Neutrino Point Sources at Super-Kamiokande

Search for Astrophysical Neutrino Point Sources at Super-Kamiokande Search for Astrophysical Neutrino Point Sources at Super-Kamiokande Yusuke Koshio for Super-K collaboration Kamioka, ICRR, Univ. of Tokyo LNGS, INFN Super-Kamiokande detector Recent results of search for

More information

The Factors That Limit Time Resolution for Photon Detection in Large Cherenkov Detectors

The Factors That Limit Time Resolution for Photon Detection in Large Cherenkov Detectors The Factors That Limit Time Resolution for Photon Detection in Large Cherenkov Detectors Kate Scholberg, Duke University Chicago, April 2011 OUTLINE - Overview/physics motivation - Event reconstruction

More information

Supernova Neutrino Directionality

Supernova Neutrino Directionality Supernova Neutrino Directionality Fan Zhang April 25, 2016 Subject: Senior Thesis Date Performed: Jan 2015 to Apr 2016 Instructor: Prof. Kate Scholberg Defense Committee: Prof. Kate Scholberg Prof. Roxanne

More information

FYST17 Lecture 8 Statistics and hypothesis testing. Thanks to T. Petersen, S. Maschiocci, G. Cowan, L. Lyons

FYST17 Lecture 8 Statistics and hypothesis testing. Thanks to T. Petersen, S. Maschiocci, G. Cowan, L. Lyons FYST17 Lecture 8 Statistics and hypothesis testing Thanks to T. Petersen, S. Maschiocci, G. Cowan, L. Lyons 1 Plan for today: Introduction to concepts The Gaussian distribution Likelihood functions Hypothesis

More information

Advanced statistical methods for data analysis Lecture 1

Advanced statistical methods for data analysis Lecture 1 Advanced statistical methods for data analysis Lecture 1 RHUL Physics www.pp.rhul.ac.uk/~cowan Universität Mainz Klausurtagung des GK Eichtheorien exp. Tests... Bullay/Mosel 15 17 September, 2008 1 Outline

More information

PHY326/426 Dark Matter and the Universe. Dr. Vitaly Kudryavtsev F9b, Tel.:

PHY326/426 Dark Matter and the Universe. Dr. Vitaly Kudryavtsev F9b, Tel.: PHY326/426 Dark Matter and the Universe Dr. Vitaly Kudryavtsev F9b, Tel.: 0114 2224531 v.kudryavtsev@sheffield.ac.uk Indirect searches for dark matter WIMPs Dr. Vitaly Kudryavtsev Dark Matter and the Universe

More information

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

Lecture 2. G. Cowan Lectures on Statistical Data Analysis Lecture 2 page 1 Lecture 2 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

Status and Neutrino Oscillation Physics Potential of the Hyper-Kamiokande Project in Japan

Status and Neutrino Oscillation Physics Potential of the Hyper-Kamiokande Project in Japan Status and Neutrino Oscillation Physics Potential of the Hyper-Kamiokande Project in Japan Gianfranca De Rosa Univ. Federico II and INFN Naples On behalf of Hyper-Kamiokande Collaboration Hyper-Kamiokande:

More information

Statistical Methods for Particle Physics (I)

Statistical Methods for Particle Physics (I) Statistical Methods for Particle Physics (I) https://agenda.infn.it/conferencedisplay.py?confid=14407 Glen Cowan Physics Department Royal Holloway, University of London g.cowan@rhul.ac.uk www.pp.rhul.ac.uk/~cowan

More information

Multivariate statistical methods and data mining in particle physics

Multivariate statistical methods and data mining in particle physics Multivariate statistical methods and data mining in particle physics RHUL Physics www.pp.rhul.ac.uk/~cowan Academic Training Lectures CERN 16 19 June, 2008 1 Outline Statement of the problem Some general

More information

Statistical Methods for Particle Physics Lecture 1: parameter estimation, statistical tests

Statistical Methods for Particle Physics Lecture 1: parameter estimation, statistical tests Statistical Methods for Particle Physics Lecture 1: parameter estimation, statistical tests http://benasque.org/2018tae/cgi-bin/talks/allprint.pl TAE 2018 Benasque, Spain 3-15 Sept 2018 Glen Cowan Physics

More information

MiniBooNE Progress and Little Muon Counter Overview

MiniBooNE Progress and Little Muon Counter Overview MiniBooNE Progress and Little Muon Counter Overview Neutrino Introduction and MiniBooNE Motivation MiniBooNE Detector and LMC Calibration and Performance Progress Toward Physics Results Terry Hart, University

More information

Probability Distributions

Probability Distributions 02/07/07 PHY310: Statistical Data Analysis 1 PHY310: Lecture 05 Probability Distributions Road Map The Gausssian Describing Distributions Expectation Value Variance Basic Distributions Generating Random

More information

Bari Osmanov, University of Florida. OscSNS - proposal for neutrino experiment at ORNL SNS facility

Bari Osmanov, University of Florida. OscSNS - proposal for neutrino experiment at ORNL SNS facility , University of Florida OscSNS - proposal for neutrino experiment at ORNL SNS facility 1 of 19 Outline ORNL SNS facility Neutrino production at SNS Neutrino detection at SNS Event reconstruction and particle

More information

PHYS 5326 Lecture #6. 1. Neutrino Oscillation Formalism 2. Neutrino Oscillation Measurements

PHYS 5326 Lecture #6. 1. Neutrino Oscillation Formalism 2. Neutrino Oscillation Measurements PHYS 5326 Lecture #6 Wednesday, Feb. 14, 2007 Dr. 1. Neutrino Oscillation Formalism 2. Neutrino Oscillation Measurements 1. Solar Neutrinos 2. Atmospheric neutrinos 3. Accelerator Based Oscillation Experiments

More information

Neutrinos: What we ve learned and what we still want to find out. Jessica Clayton Astronomy Club November 10, 2008

Neutrinos: What we ve learned and what we still want to find out. Jessica Clayton Astronomy Club November 10, 2008 Neutrinos: What we ve learned and what we still want to find out Jessica Clayton Astronomy Club November 10, 2008 Neutrinos, they are very small, they have no charge and have no mass, and do not interact

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

PHYS 5326 Lecture #2. Wednesday, Jan. 24, 2007 Dr. Jae Yu. Wednesday, Jan. 24, 2007 PHYS 5326, Spring 2007 Jae Yu

PHYS 5326 Lecture #2. Wednesday, Jan. 24, 2007 Dr. Jae Yu. Wednesday, Jan. 24, 2007 PHYS 5326, Spring 2007 Jae Yu PHYS 5326 Lecture #2 Wednesday, Jan. 24, 2007 Dr. 1. Sources of Neutrinos 2. How is neutrino beam produced? 3. Physics with neutrino experiments 4. Characteristics of accelerator based neutrino experiments

More information

Super-Kamiokande. Alexandre Zeenny, Nolwenn Lévêque

Super-Kamiokande. Alexandre Zeenny, Nolwenn Lévêque Super-Kamiokande Alexandre Zeenny, Nolwenn Lévêque Purpose Super-Kamiokande is a neutrino observatory located in Japan. Purposes of the Super-Kamiokande experiments is to reveal the neutrino properties

More information

Recent Results from T2K and Future Prospects

Recent Results from T2K and Future Prospects Recent Results from TK and Future Prospects Konosuke Iwamoto, on behalf of the TK Collaboration University of Rochester E-mail: kiwamoto@pas.rochester.edu The TK long-baseline neutrino oscillation experiment

More information

Gadolinium Doped Water Cherenkov Detectors

Gadolinium Doped Water Cherenkov Detectors Gadolinium Doped Water Cherenkov Detectors David Hadley University of Warwick NuInt-UK Workshop 20th July 2015 Water Cherenkov Detector Super-Kamiokande 22.5 kt fiducial mass 2 Physics with Large Scale

More information

Possible Interpretations of IceCube High Energy Neutrinos

Possible Interpretations of IceCube High Energy Neutrinos Possible Interpretations of IceCube High Energy Neutrinos ~1 km² Geographic South Pole Program on Particle Physics at the Dawn of the LHC13. ICTP-SP. Boris Panes, USP. Nov 12-2015 Based on 1411.5318 and

More information

Results from T2K. Alex Finch Lancaster University ND280 T2K

Results from T2K. Alex Finch Lancaster University ND280 T2K Results from T2K Alex Finch Lancaster University ND280 T2K 1 Contents T2K Overview Tokai Kamioka Neutrino Oscillations Results Muon neutrino disappearance Electron neutrino appearance Charged Current inclusive

More information

arxiv: v1 [hep-ex] 25 Aug 2015

arxiv: v1 [hep-ex] 25 Aug 2015 Anti-neutrino oscillations with TK arxiv:508.05v [hep-ex] 5 Aug 05 Université de Genève (H E-mail: melody.ravonel@cern.ch TK is a long-baseline neutrino oscillation experiment, in which a muon neutrino

More information

Detecting neutrinos from the next galactic supernova in the NOvA detectors. Andrey Sheshukov DLNP JINR

Detecting neutrinos from the next galactic supernova in the NOvA detectors. Andrey Sheshukov DLNP JINR Detecting neutrinos from the next galactic supernova in the NOvA detectors Andrey Sheshukov DLNP JINR 11 Apr 2018 Supernova neutrino signal detection: SN1987a 23 Feb 1987, 7:35 UTC A burst of 25 neutrino

More information

Potential of the large liquid-scintillator detector LENA in particle and astrophysics

Potential of the large liquid-scintillator detector LENA in particle and astrophysics Potential of the large liquid-scintillator detector LENA in particle and astrophysics Teresa Marrodán Undagoitia tmarroda@ph.tum.de Institut E15 Physik-Department Technical University of Munich DPG Teilchenphysik

More information

Neutrino oscillation physics potential of Hyper-Kamiokande

Neutrino oscillation physics potential of Hyper-Kamiokande Neutrino oscillation physics potential of Hyper-Kamiokande on behalf of the Hyper-Kamiokande Collaboration Queen Mary University of London E-mail: l.cremonesi@qmul.ac.uk Hyper-Kamiokande (Hyper-K) is a

More information

PHL424: 4 fundamental forces in nature

PHL424: 4 fundamental forces in nature PHL424: 4 fundamental forces in nature The familiar force of gravity pulls you down into your seat, toward the Earth's center. You feel it as your weight. Why don't you fall through your seat? Well, another

More information

Ryan Stillwell Paper: /10/2014. Neutrino Astronomy. A hidden universe. Prepared by: Ryan Stillwell. Tutor: Patrick Bowman

Ryan Stillwell Paper: /10/2014. Neutrino Astronomy. A hidden universe. Prepared by: Ryan Stillwell. Tutor: Patrick Bowman Neutrino Astronomy A hidden universe Prepared by: Ryan Stillwell Tutor: Patrick Bowman Paper: 124.129 Date: 10 October 2014 i Table of Contents 1. Introduction pg 1 1.1 Background pg 1 2. Findings & Discussion

More information

Hypothesis testing:power, test statistic CMS:

Hypothesis testing:power, test statistic CMS: Hypothesis testing:power, test statistic The more sensitive the test, the better it can discriminate between the null and the alternative hypothesis, quantitatively, maximal power In order to achieve this

More information

Astrophysical Nucleosynthesis

Astrophysical Nucleosynthesis R. D. Gehrz ASTRO 2001, Fall Semester 2018 1 RDG The Chemical Evolution of the Universe 2RDG 1 The Stellar Evolution Cycle 3 RDG a v a v X X V = v a + v X 4 RDG reaction rate r n n s cm ax a X r r ( E)

More information

Detectors for astroparticle physics

Detectors for astroparticle physics Detectors for astroparticle physics Teresa Marrodán Undagoitia marrodan@physik.uzh.ch Universität Zürich Kern und Teilchenphysik II, Zürich 07.05.2010 Teresa Marrodán Undagoitia (UZH) Detectors for astroparticle

More information

arxiv: v1 [nucl-ex] 7 Sep 2009

arxiv: v1 [nucl-ex] 7 Sep 2009 CCπ Event Reconstruction at MiniBooNE R.H. Nelson University of Colorado, Dept. of Physics, 39 UCB, Boulder, CO 839, USA arxiv:99.238v [nucl-ex] 7 Sep 29 Abstract. We describe the development of a fitter

More information

1. Neutrino Oscillations

1. Neutrino Oscillations Neutrino oscillations and masses 1. Neutrino oscillations 2. Atmospheric neutrinos 3. Solar neutrinos, MSW effect 4. Reactor neutrinos 5. Accelerator neutrinos 6. Neutrino masses, double beta decay 1.

More information

Rice University Physics 332 LIFETIME OF THE MUON I. INTRODUCTION...2! II. MEASUREMENT PROCEDURES...3! III. ANALYSIS PROCEDURES...7!

Rice University Physics 332 LIFETIME OF THE MUON I. INTRODUCTION...2! II. MEASUREMENT PROCEDURES...3! III. ANALYSIS PROCEDURES...7! Rice University Physics 332 LIFETIME OF THE MUON I. INTRODUCTION...2! II. MEAUREMENT PROCEDURE...3! III. ANALYI PROCEDURE...7! Revised July 2011 I. Introduction In this experiment you will measure the

More information

Search for high energy neutrino astrophysical sources with the ANTARES Cherenkov telescope

Search for high energy neutrino astrophysical sources with the ANTARES Cherenkov telescope Dottorato di Ricerca in Fisica - XXVIII ciclo Search for high energy neutrino astrophysical sources with the ANTARES Cherenkov telescope Chiara Perrina Supervisor: Prof. Antonio Capone 25 th February 2014

More information

New Results from the MINOS Experiment

New Results from the MINOS Experiment University College London E-mail: annah@hep.ucl.ac.uk The MINOS experiment is a long-baseline neutrino experiment designed to study neutrino behaviour, in particular the phenomenon of neutrino oscillations.

More information

PoS(NOW2016)003. T2K oscillation results. Lorenzo Magaletti. INFN Sezione di Bari

PoS(NOW2016)003. T2K oscillation results. Lorenzo Magaletti. INFN Sezione di Bari INFN Sezione di Bari E-mail: lorenzo.magaletti@ba.infn.it The TK (Tokai-to-Kamioka) experiment is a second generation long baseline neutrino oscillation experiment that probes physics beyond the Standard

More information

Some Introduction Proto-Nubar Meeting 28/Feb/2006 Caius Howcroft 1

Some Introduction Proto-Nubar Meeting 28/Feb/2006 Caius Howcroft 1 1 At the march meeting I wandered what analysis we might be able to do with the anti-neutrino content of the beam. What I actual was looking for was good thesis topics. Transitions nu->nubar. Beam systematics.

More information

Super- Kamiokande. Super- Kamiokande (1996- ) h=41.4m. Hyper- K (201X? - ) Kamiokande ( ) M. Yokoyama Friday 14:30

Super- Kamiokande. Super- Kamiokande (1996- ) h=41.4m. Hyper- K (201X? - ) Kamiokande ( ) M. Yokoyama Friday 14:30 Super- Kamiokande h=41.4m Super- Kamiokande (1996- ) 50,000 tons of Pure Water 20inch PMT (inner detector) #PMT, coverage SK- I(1996-2001): 11146, 40% SK- II(2001-2005): 5182, 20% SK- III(2006-2008): 11129,

More information

Lessons from Neutrinos in the IceCube Deep Core Array

Lessons from Neutrinos in the IceCube Deep Core Array Lessons from Neutrinos in the IceCube Deep Core Array Irina Mocioiu Penn State TeV 2009, July 15 2009 Point sources Diffuse fluxes from astrophysical objects from cosmic ray interactions from dark matter

More information

EXPLORING PARTICLE-ANTIPARTICLE ASYMMETRY IN NEUTRINO OSCILLATION. Atsuko K. Ichikawa, Kyoto University

EXPLORING PARTICLE-ANTIPARTICLE ASYMMETRY IN NEUTRINO OSCILLATION. Atsuko K. Ichikawa, Kyoto University EXPLORING PARTICLE-ANTIPARTICLE ASYMMETRY IN NEUTRINO OSCILLATION Atsuko K. Ichikawa, Kyoto University Got PhD by detecting doubly-strange nuclei using emulsion After that, working on accelerator-based

More information

MITOCW MIT18_02SCF10Rec_61_300k

MITOCW MIT18_02SCF10Rec_61_300k MITOCW MIT18_02SCF10Rec_61_300k JOEL LEWIS: Hi. Welcome back to recitation. In lecture, you've been learning about the divergence theorem, also known as Gauss's theorem, and flux, and all that good stuff.

More information

Cherenkov Detector. Cosmic Rays Cherenkov Detector. Lodovico Lappetito. CherenkovDetector_ENG - 28/04/2016 Pag. 1

Cherenkov Detector. Cosmic Rays Cherenkov Detector. Lodovico Lappetito. CherenkovDetector_ENG - 28/04/2016 Pag. 1 Cherenkov Detector Cosmic Rays Cherenkov Detector Lodovico Lappetito CherenkovDetector_ENG - 28/04/2016 Pag. 1 Table of Contents Introduction on Cherenkov Effect... 4 Super - Kamiokande... 6 Construction

More information

Super-Kamiokande ~The Status of n Oscillation ~

Super-Kamiokande ~The Status of n Oscillation ~ May 26, 2006 Vulcano Workshop 2006 Super-Kamiokande ~The Status of n Oscillation ~ Yoshihisa OBAYASHI (ICRR, Univ. of Tokyo) for Super-Kamiokande Collaboration May 26, 2006 Y.Obayashi @ Vulcano 2006 1

More information

Proton Decays. -- motivation, status, and future prospect -- Univ. of Tokyo, Kamioka Observatory Masato Shiozawa

Proton Decays. -- motivation, status, and future prospect -- Univ. of Tokyo, Kamioka Observatory Masato Shiozawa Proton Decays -- motivation, status, and future prospect -- Univ. of Tokyo, Kamioka Observatory Masato Shiozawa Look for Baryon number violation B number conservation is experimental subject B number conservation

More information

Neutrino sources. Atmospheric neutrinos Solar neutrinos Supernova neutrinos High energy neutrino sources Cosmic neutrino background

Neutrino sources. Atmospheric neutrinos Solar neutrinos Supernova neutrinos High energy neutrino sources Cosmic neutrino background Neutrino sources Natural sources: Atmospheric neutrinos Solar neutrinos Supernova neutrinos High energy neutrino sources Cosmic neutrino background Artificial sources Accelerator neutrinos Reactor neutrinos

More information

Cosmic Rays: A Way to Introduce Modern Physics Concepts. Steve Schnetzer

Cosmic Rays: A Way to Introduce Modern Physics Concepts. Steve Schnetzer Cosmic Rays: A Way to Introduce Modern Physics Concepts Steve Schnetzer Rutgers CR Workshop May 19, 2007 Concepts Astrophysics Particle Physics Radiation Relativity (time dilation) Solar Physics Particle

More information

Particle Physics. Michaelmas Term 2009 Prof Mark Thomson. Handout 11 : Neutrino Oscillations. Neutrino Experiments

Particle Physics. Michaelmas Term 2009 Prof Mark Thomson. Handout 11 : Neutrino Oscillations. Neutrino Experiments Particle Physics Michaelmas Term 2009 Prof Mark Thomson Handout 11 : Neutrino Oscillations Prof. M.A. Thomson Michaelmas 2009 340 Neutrino Experiments Before discussing current experimental data, need

More information

Atmospheric Neutrinos and Neutrino Oscillations

Atmospheric Neutrinos and Neutrino Oscillations FEATURE Principal Investigator Takaaki Kajita Research Area Experimental Physics Atmospheric Neutrinos and Neutrino Oscillations Introduction About a hundred years ago Victor Hess aboard a balloon measured

More information

XI. Beyond the Standard Model

XI. Beyond the Standard Model XI. Beyond the Standard Model While the Standard Model appears to be confirmed in all ways, there are some unclear points and possible extensions: Why do the observed quarks and leptons have the masses

More information

reνolution Three Neutrino Oscillation Lecture Two Lindley Winslow Massachusetts Institute of Technology

reνolution Three Neutrino Oscillation Lecture Two Lindley Winslow Massachusetts Institute of Technology reνolution Three Neutrino Oscillation Lecture Two Lindley Winslow Massachusetts Institute of Technology 1 The neutrino is neutral. The neutrino only interacts weakly. The neutrino has a small non-zero

More information

Recent Nucleon Decay Results from Super-Kamiokande

Recent Nucleon Decay Results from Super-Kamiokande Recent Nucleon Decay Results from Super-Kamiokande Jennifer L. Raaf Boston University April 14, 28 Motivation Super-Kamiokande n ν π decay search Results Motivation Interesting candidate for grand unification:

More information

Measurement of Muon Lifetime

Measurement of Muon Lifetime Measurement of Muon Lifetime Noah Scandrette Physics and Astronomy Department, San Francisco State University, San Francisco, California (Dated: December 16, 2016) The average lifetime of the muon has

More information

章飞虹 ZHANG FeiHong INTERNATIONAL SCHOOL OF SUBNUCLEAR PHYSICS Ph.D. student from Institute of High Energy Physics, Beijing

章飞虹 ZHANG FeiHong INTERNATIONAL SCHOOL OF SUBNUCLEAR PHYSICS Ph.D. student from Institute of High Energy Physics, Beijing 章飞虹 ZHANG FeiHong zhangfh@ihep.ac.cn Ph.D. student from Institute of High Energy Physics, Beijing INTERNATIONAL SCHOOL OF SUBNUCLEAR PHYSICS 2012 Erice, 23 June 2 July 2012 1 Before Hunting Introduction

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

PHYSICS AND ASTRONOMY WITH SHOWERING UPWARD MUONS IN SUPER-KAMIOKANDE. SHANTANU DESAI Ph.D Final Oral Examination December 3 rd 2003

PHYSICS AND ASTRONOMY WITH SHOWERING UPWARD MUONS IN SUPER-KAMIOKANDE. SHANTANU DESAI Ph.D Final Oral Examination December 3 rd 2003 PHYSICS AND ASTRONOMY WITH SHOWERING UPWARD MUONS IN SUPER-KAMIOKANDE SHANTANU DESAI Ph.D Final Oral Examination December 3 rd 2003 Outline of the Talk: Super-Kamiokande detector PHYSICS Dataset used and

More information

Supernova Neutrinos in Future Liquid-Scintillator Detectors

Supernova Neutrinos in Future Liquid-Scintillator Detectors Supernova Neutrinos in Future Liquid-Scintillator Detectors Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 9, China E-mail: liyufeng@ihep.ac.cn A high-statistics measurement of

More information

Tau Neutrino Physics Introduction. Barry Barish 18 September 2000

Tau Neutrino Physics Introduction. Barry Barish 18 September 2000 Tau Neutrino Physics Introduction Barry Barish 18 September 2000 ν τ the third neutrino The Number of Neutrinos big-bang nucleosynthesis D, 3 He, 4 He and 7 Li primordial abundances abundances range over

More information

Atmospheric Neutrinos

Atmospheric Neutrinos Atmospheric Neutrinos Part 1: 1930 1990 Mark Vagins IPMU, University of Tokyo/UC Irvine SLAC Summer Institute August 12, 2010 First off, I want to tell you that my lectures will probably seem a bit different

More information

arxiv: v1 [physics.ins-det] 14 Jan 2016

arxiv: v1 [physics.ins-det] 14 Jan 2016 arxiv:1601.03496v1 [physics.ins-det] 14 Jan 2016 Underground physics with DUNE Vitaly A. Kudryavtsev on behalf of the DUNE Collaboration Department of Physics and Astronomy, University of Sheffield, Sheffield,

More information

PoS(ICRC2017)945. In-ice self-veto techniques for IceCube-Gen2. The IceCube-Gen2 Collaboration

PoS(ICRC2017)945. In-ice self-veto techniques for IceCube-Gen2. The IceCube-Gen2 Collaboration 1 In-ice self-veto techniques for IceCube-Gen2 The IceCube-Gen2 Collaboration http://icecube.wisc.edu/collaboration/authors/icrc17_gen2 E-mail: jan.lunemann@vub.ac.be The discovery of astrophysical high-energy

More information

2. What are the tradeoffs among different measures of error (e.g. probability of false alarm, probability of miss, etc.)?

2. What are the tradeoffs among different measures of error (e.g. probability of false alarm, probability of miss, etc.)? ECE 830 / CS 76 Spring 06 Instructors: R. Willett & R. Nowak Lecture 3: Likelihood ratio tests, Neyman-Pearson detectors, ROC curves, and sufficient statistics Executive summary In the last lecture we

More information

arxiv: v1 [hep-ex] 30 Nov 2009

arxiv: v1 [hep-ex] 30 Nov 2009 On extraction of oscillation parameters Jan Sobczyk and Jakub Zmuda Institute of Theoretical Physics, University of Wroclaw, plac Maxa Borna 9, 50-204 Wroclaw, Poland (Dated: November 28, 2017) arxiv:0912.0021v1

More information

1 Introduction. 2 Nucleon Decay Searches

1 Introduction. 2 Nucleon Decay Searches RECENT RESULTS FROM SUPERKAMIOKANDE SHUNICHI MINE Department of Physics and Astronomy, University of California, Irvine, USA I will summarize the most recent nucleon decay and sterile neutrino results

More information

The ICARUS Project FRONTIERS IN CONTEMPORARY PHYSICS II. Vanderbilt University, March 5-10, Sergio Navas (ETH Zürich) " Atmospheric neutrinos

The ICARUS Project FRONTIERS IN CONTEMPORARY PHYSICS II. Vanderbilt University, March 5-10, Sergio Navas (ETH Zürich)  Atmospheric neutrinos The ICARUS Project FRONTIERS IN CONTEMPORARY PHYSICS II Vanderbilt University, March 5-10, 2001 Sergio Navas (ETH Zürich) Detection Principle The T600 Module Physics Programme: " Atmospheric neutrinos

More information

Atmospheric neutrinos with Super-Kamiokande S.Mine (University of California, Irvine) for Super-Kamiokande collaboration

Atmospheric neutrinos with Super-Kamiokande S.Mine (University of California, Irvine) for Super-Kamiokande collaboration Atmospheric neutrinos with Super-Kamiokande S.Mine (University of California, Irvine) for Super-Kamiokande collaboration An artist s impression of a cosmic ray interacting with the Earth s atmosphere.

More information

GADZOOKS! project at Super-Kamiokande

GADZOOKS! project at Super-Kamiokande GADZOOKS! project at Super-Kamiokande M.Ikeda (Kamioka ICRR, U.of Tokyo) for Super-K collaboration 2015,6,9@WIN2015 Contents GADZOOKS! project Supernova Relic Neutrino search R&D status and Plan Summary

More information

F. TASNÁDI LINKÖPING UNIVERSITY THEORETICAL PHYSICS NEUTRINO OSCILLATIONS & MASS

F. TASNÁDI LINKÖPING UNIVERSITY THEORETICAL PHYSICS NEUTRINO OSCILLATIONS & MASS F. TASNÁDI LINKÖPING UNIVERSITY THEORETICAL PHYSICS NEUTRINO OSCILLATIONS & MASS the fundamental discoveries in physics con4nues 1 CONGRATULATIONS - NOBEL PRIZE IN PHYSICS 2016 the secrets of exotic matter

More information

Measurement of the CR e+/e- ratio with ground-based instruments

Measurement of the CR e+/e- ratio with ground-based instruments Measurement of the CR e+/e- ratio with ground-based instruments Pierre Colin Max-Planck-Institut für Physik CR Moon shadow MPP retreat - 21 January 2014 Cosmic ray electrons Observation: Above the atmosphere:

More information

Particle Physics with Neutrino Telescope Aart Heijboer, Nikhef

Particle Physics with Neutrino Telescope Aart Heijboer, Nikhef Particle Physics with Neutrino Telescope Aart Heijboer, Nikhef 1 high energy Quanta from the Universe (why look for neutrinos) Universe contains very high Energy particle accelerators (E = up to 10 6

More information

This is particularly true if you see long tails in your data. What are you testing? That the two distributions are the same!

This is particularly true if you see long tails in your data. What are you testing? That the two distributions are the same! Two sample tests (part II): What to do if your data are not distributed normally: Option 1: if your sample size is large enough, don't worry - go ahead and use a t-test (the CLT will take care of non-normal

More information

Neutrino Oscillations

Neutrino Oscillations Neutrino Oscillations Elisa Bernardini Deutsches Elektronen-Synchrotron DESY (Zeuthen) Suggested reading: C. Giunti and C.W. Kim, Fundamentals of Neutrino Physics and Astrophysics, Oxford University Press

More information

LOW ENERGY SOLAR NEUTRINOS WITH BOREXINO. Lea Di Noto on behalf of the Borexino collaboration

LOW ENERGY SOLAR NEUTRINOS WITH BOREXINO. Lea Di Noto on behalf of the Borexino collaboration LOW ENERGY SOLAR NEUTRINOS WITH BOREXINO Lea Di Noto on behalf of the Borexino collaboration Vulcano Workshop 20 th -26 th May 2018 [cm -2 s -1 MeV -1 ] SOLAR NEUTRINOS Electrons neutrinos are produced

More information

Atmospheric Neutrinos MINOS MINOS Far Detector Type of Atmospheric Neutrinos at MINOS Two MINOS Atmospheric Analyses.

Atmospheric Neutrinos MINOS MINOS Far Detector Type of Atmospheric Neutrinos at MINOS Two MINOS Atmospheric Analyses. Atmospheric Neutrinos MINOS MINOS Far Detector Type of Atmospheric Neutrinos at MINOS Two MINOS Atmospheric Analyses 1 Produced in the atmosphere from interactions of primary cosmic rays. p + N π ± + X

More information

PoS(FPCP2017)024. The Hyper-Kamiokande Project. Justyna Lagoda

PoS(FPCP2017)024. The Hyper-Kamiokande Project. Justyna Lagoda National Centre for Nuclear Research Otwock-Swierk, Poland E-mail: justyna.lagoda@ncbj.gov.pl The Hyper-Kamiokande is a project of a large water Cherenkov detector to be built in Japan. The design allows

More information

Super-K Gd. M.Ikeda(ICRR) for Super-K collaboration Workshop for Neutrino Programs with facilities in Japan

Super-K Gd. M.Ikeda(ICRR) for Super-K collaboration Workshop for Neutrino Programs with facilities in Japan Super-K Gd M.Ikeda(ICRR) for Super-K collaboration 20150804@JPARC Workshop for Neutrino Programs with facilities in Japan 1 Contents Introduction to SK-Gd Physics motivations Study of Gd effect to SK Plan

More information

Practice Problems Section Problems

Practice Problems Section Problems Practice Problems Section 4-4-3 4-4 4-5 4-6 4-7 4-8 4-10 Supplemental Problems 4-1 to 4-9 4-13, 14, 15, 17, 19, 0 4-3, 34, 36, 38 4-47, 49, 5, 54, 55 4-59, 60, 63 4-66, 68, 69, 70, 74 4-79, 81, 84 4-85,

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

Solar Neutrinos. Learning about the core of the Sun. Guest lecture: Dr. Jeffrey Morgenthaler Jan 26, 2006

Solar Neutrinos. Learning about the core of the Sun. Guest lecture: Dr. Jeffrey Morgenthaler Jan 26, 2006 Solar Neutrinos Learning about the core of the Sun Guest lecture: Dr. Jeffrey Morgenthaler Jan 26, 2006 Review Conventional solar telescopes Observe optical properties of the Sun to test standard model

More information

Super-Kamiokande (on the activities from 2000 to 2006 and future prospects)

Super-Kamiokande (on the activities from 2000 to 2006 and future prospects) Super-Kamiokande (on the activities from 2000 to 2006 and future prospects) M. Nakahata for Neutr ino and astr opar ticle Division Super-Kamiokande detector Atmospheric neutrinos Solar Neutrinos Proton

More information

Cosmic Rays. Discovered in 1912 by Viktor Hess using electroscopes to measure ionization at altitudes via balloon

Cosmic Rays. Discovered in 1912 by Viktor Hess using electroscopes to measure ionization at altitudes via balloon Cosmic Rays Discovered in 1912 by Viktor Hess using electroscopes to measure ionization at altitudes via balloon Nobel Prize in 1936 Origin of high energy cosmic rays is still not completely understood

More information

MITOCW Investigation 6, Part 6

MITOCW Investigation 6, Part 6 MITOCW Investigation 6, Part 6 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free.

More information

Chapter 32 Lecture Notes

Chapter 32 Lecture Notes Chapter 32 Lecture Notes Physics 2424 - Strauss Formulas: mc 2 hc/2πd 1. INTRODUCTION What are the most fundamental particles and what are the most fundamental forces that make up the universe? For a brick

More information

Ultra-High-Energy Cosmic Rays: A Tale of Two Observatories

Ultra-High-Energy Cosmic Rays: A Tale of Two Observatories Ultra-High-Energy Cosmic Rays: A Tale of Two Observatories RuoYu Shang Nicholas Sherer Fei Sun Bryce Thurston Measurement of the Depth of Maximumof Extensive Air Showers above 10 18 ev,"phys. Rev. Letters104(2010)

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

The 64th Compton Lecture Series Unsolved Mysteries of the Universe: Looking for Clues in Surprising Places

The 64th Compton Lecture Series Unsolved Mysteries of the Universe: Looking for Clues in Surprising Places The 64th Compton Lecture Series Unsolved Mysteries of the Universe: Looking for Clues in Surprising Places Brian Odom Fall 2006 http://kicp.uchicago.edu/~odom/compton.htm Lecture 2: From the Big Bang to

More information

High-energy neutrino detection with the ANTARES underwater erenkov telescope. Manuela Vecchi Supervisor: Prof. Antonio Capone

High-energy neutrino detection with the ANTARES underwater erenkov telescope. Manuela Vecchi Supervisor: Prof. Antonio Capone High-energy neutrino detection with the ANTARES underwater erenkov telescope Supervisor: Prof. Antonio Capone 1 Outline Neutrinos: a short introduction Multimessenger astronomy: the new frontier Neutrino

More information

Cosmic rays and the muon lifetime 1

Cosmic rays and the muon lifetime 1 Cosmic rays and the muon lifetime 1 Abstract An experiment detecting the decay of cosmic muons has been installed for the third-year students at the University of Lund. The setup of the experiment makes

More information