Likelihood Statistics

Size: px
Start display at page:

Download "Likelihood Statistics"

Transcription

1 Likelihood Statistics Anja Vest IEKP, Uni Karlsruhe October 25 Event weights Likelihood plots Confidence levels TLimit root class

2 Likelihood Ratio Experimental result = configuration of events that agrees with either a pure background (b) hypothesis signal + background (s+b) hypothesis Discriminator: e.g. M rec (peak in M rec distribution signal observation ) (also a 2D discriminator possible, e.g. M rec and b tag content of an event) Divide M rec into bins: i = 1, 2,..., N bins each containing N i observed candidates histogram Likelihood ratio: ranks an experimental result between being b like oder s+b like Anja Vest, IEKP, Uni Karlsruhe 1

3 Likelihood Ratio Likelihood ratio: Q = L(s + b) L(b) = P P oisson(data s + b) P P oisson (Data b) = exp( (s tot + b tot )) exp( b tot ) N bins i=1 ( s i + b i b i ) N i more simple: weighted sum of all observed events: 2lnQ(M H ) = 2s tot 2 N bins i=1 N i ln(1 + s i(m H ) b i ) Anja Vest, IEKP, Uni Karlsruhe 2

4 The likelihood probability density function Likelihood p.d.f.: histogram generated when performing a large number of experiments Generate for example 5 experiments without signal hypothesis (b-only) For each experiment: event configuration (N i ) and M H 2lnQ(M H ) p.d.f. Repeat the same for the signal + background hypothesis (s + b) Anja Vest, IEKP, Uni Karlsruhe 3

5 p.d.f. for a Higgs test mass of 115 GeV events/3 GeV Signal+Background Experiment 1 events/3 GeV Signal+Background Experiment 2 events/3 GeV Signal+Background Experiment events/3 GeV Reconstructed mass Signal+Background Experiment 4 events/3 GeV Reconstructed mass Signal+Background Experiment 5 p.d.f Reconstructed mass Test mass = 115 GeV Reconstructed mass Reconstructed mass s+b like lnQ b like Anja Vest, IEKP, Uni Karlsruhe 4

6 Likelihood p.d.f. s for diffeternt Higgs masses p.d.f. p.d.f. p.d.f Test mass = 112 GeV Test mass = 115 GeV -2lnQ Test mass = 118 GeV -2lnQ lnQ -2lnQ median likelihood of bg experiments likelihood of mh=115 median likelihood of s+b experiments Test mass Anja Vest, IEKP, Uni Karlsruhe 5

7 The likelihood probability density function -2 ln(q) LEP Observed Expected background Expected signal + background m H (GeV/c 2 ) Anja Vest, IEKP, Uni Karlsruhe 6

8 The likelihood probability density function Example: observed likelihood: 2lnQ = 3 Anja Vest, IEKP, Uni Karlsruhe 7

9 Confidence levels CL b : background confidence level, measures the compatibility of the experiment with the background 1 CL b : probability for a b only experiment to give a more s+b like likelihood than the observed one < 1 CL b >=.5 irrespective of the Higgs mass Correspondance between 1 CL b and the resulting significance (Gaussian approximation): 1 CL b Significance 1σ 2σ 3σ 4σ 5σ Anja Vest, IEKP, Uni Karlsruhe 8

10 The likelihood probability density function 1-CL b LEP Observed Expected for signal+background Expected for background m H (GeV/c 2 ) 2σ 3σ 4σ Anja Vest, IEKP, Uni Karlsruhe 9

11 Confidence levels CL s+b : measures the compatibility of the experiment with the s+b hypothesis A larger CL s+b means that the experimental result is more s+b like, but not neccessarily more s like CL s : If CL s+b is small (< 5%), the s+b hypothesis can be excluded at more than 95% confidence level, but it does not mean, that the signal hypothesis is excluded at that level. There is no way to directly measure the signal confidence level, because of the presence of significant background The signal confidence level is apriori defined to be: CL s = CL s+b CL b Anja Vest, IEKP, Uni Karlsruhe 1

12 The likelihood probability density function CL s LEP Observed Expected for background m H (GeV/c 2 ) Anja Vest, IEKP, Uni Karlsruhe 11

13 Confidence levels CL = 1 CL s (obviously conservative since the coverage probability is in general larger than the CL) Anja Vest, IEKP, Uni Karlsruhe 12

14 Using ROOT to calculate Significances and Limits TLimit is a ROOT add on. It computes limits using the Likelihood ratio method (originally implemented by Tom Junk in fortran 77) Classes: TLimitDataSource Takes the signal, background and data histograms to form a channel. More channels can be added using AddChannel(), as well as different systematic sources. TLimit Actual algorithm to compute 95% C.L. limits using the Likelihood ratio semibayesian method. It takes TLimitDataSource as input and runs a set of MC experiments in order to compute the limits. If needed, the inputs (s i and b i ) are fluctuated according to their systematics. The output is a TConfidenceLevel. TConfidenceLevel Final result of the TLimit algorithm. It is created just after the time consuming part and can be stored in a TFile for further processing. It contains light methods to return CLs, CLb and other interesting quantities, e.g. Get5sProbability(). Anja Vest, IEKP, Uni Karlsruhe 13

15 Using ROOT to calculate Significances and Limits TConfidenceLevel* ComputeLimit (TLimitDataSource* data, Int t nmc, TRandom* generator, Double t(*statistic) (Double t, Double t, Double t) stat) data: the input TLimitDataSource nmc: number of MC experiments to produce generator: MC generator used. Default: TRandom3 stat: function used as statistic. Default: TLimit::LogLikelihood Anja Vest, IEKP, Uni Karlsruhe 14

16 Using the root class TConfidenceLevel // Get the histograms TFile* infile=new TFile("Results.root","READ"); infile->cd(); TH1D* sh=(th1d*)infile->get("signal_histo"); TH1D* bh=(th1d*)infile->get("background_histo"); TH1D* dh=(th1d*)infile->get("data_histo"); // Compute the limits cout << "Computing limits... " << endl; TLimitDataSource* mydatasource = new TLimitDataSource(signal,background,data); TConfidenceLevel *myconfidence = TLimit::ComputeLimit(mydatasource,5); cout << "CLs : " << myconfidence->cls() << endl; cout << "CLsb : " << myconfidence->clsb() << endl; cout << "CLb : " << myconfidence->clb() << endl; cout << "< CLs > : " << myconfidence->getexpectedcls_b() << endl; cout << "< CLsb > : " << myconfidence->getexpectedclsb_b() << endl; cout << "< CLb > : " << myconfidence->getexpectedclb_b() << endl; cout << "3 sigma probability : " << myconfidence->get3sprobability() << endl; cout << "5 sigma probability : " << myconfidence->get5sprobability() << endl; myconfidence->draw(); Anja Vest, IEKP, Uni Karlsruhe 15

17 Example: mytest.c Signal and background compared to data... Using a set of randomly created histograms: Output: root [].L mytest.c root [1] limit() Computing limits... CLs :.263 CLsb : CLb : < CLs > : < CLsb > :.7688 < CLb > :.52 3 sigma probability : sigma probability : lnQ b_hist Entries 5 Mean RMS Anja Vest, IEKP, Uni Karlsruhe 16

18 Example: mytest.c Signal and background compared to data... Using a set of randomly created histograms: Output: root [].L mytest.c root [1] limit() Computing limits... CLs : CLsb : CLb : < CLs > : < CLsb > :.7688 < CLb > :.52 3 sigma probability : sigma probability : lnQ b_hist Entries 5 Mean RMS Anja Vest, IEKP, Uni Karlsruhe 17

19 Example: mytest.c Signal and background compared to data... Using a set of randomly created histograms: Output: root [].L mytest.c root [1] limit() Computing limits... CLs : e-1 CLsb : e-1 CLb : < CLs > : e-1 < CLsb > : e-1 < CLb > :.52 3 sigma probability : sigma probability : lnQ b_hist Entries 5 Mean RMS Anja Vest, IEKP, Uni Karlsruhe 18

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

Statistical Tools in Collider Experiments. Multivariate analysis in high energy physics

Statistical Tools in Collider Experiments. Multivariate analysis in high energy physics Statistical Tools in Collider Experiments Multivariate analysis in high energy physics Lecture 5 Pauli Lectures - 10/02/2012 Nicolas Chanon - ETH Zürich 1 Outline 1.Introduction 2.Multivariate methods

More information

Search for Higgs Bosons at LEP. Haijun Yang University of Michigan, Ann Arbor

Search for Higgs Bosons at LEP. Haijun Yang University of Michigan, Ann Arbor Search for Higgs Bosons at LEP Haijun Yang University of Michigan, Ann Arbor L3 On behalf of the L3 Collaboration American Physical Society Meeting(APS03), Philadelphia April 5-8, 2003 OUTLINE Introduction

More information

Final status of L3 Standard Model Higgs searches and latest results from LEP wide combinations. Andre Holzner ETHZ / L3

Final status of L3 Standard Model Higgs searches and latest results from LEP wide combinations. Andre Holzner ETHZ / L3 Final status of L3 Standard Model Higgs searches and latest results from LEP wide combinations Andre Holzner ETHZ / L3 Outline Higgs mechanism Signal processes L3 Detector Experimental signatures Data

More information

Introduction to the Terascale: DESY 2015

Introduction to the Terascale: DESY 2015 Introduction to the Terascale: DESY 2015 Analysis walk-through exercises EXERCISES Ivo van Vulpen Exercise 0: Root and Fitting basics We start with a simple exercise for those who are new to Root. If you

More information

MODIFIED FREQUENTIST ANALYSIS OF SEARCH RESULTS (THE CL s METHOD)

MODIFIED FREQUENTIST ANALYSIS OF SEARCH RESULTS (THE CL s METHOD) MODIFIED FREQUENTIST ANALYSIS OF SEARCH RESULTS (THE CL s METHOD) A. L. Read University of Oslo, Department of Physics, P.O. Box 148, Blindern, 316 Oslo 3, Norway Abstract The statistical analysis of direct

More information

Highlights of Higgs Physics at LEP

Highlights of Higgs Physics at LEP hep-ph/43 February 4 Highlights of Higgs Physics at André Sopczak Lancaster University arxiv:hep-ph/43 v Feb 4 Abstract Final results from the combined data of the four experiments AH,, L3 and OPAL on

More information

RooStatsCms: a tool for analyses modelling, combination and statistical studies

RooStatsCms: a tool for analyses modelling, combination and statistical studies RooStatsCms: a tool for analyses modelling, combination and statistical studies D. Piparo, G. Schott, G. Quast Institut für f Experimentelle Kernphysik Universität Karlsruhe Outline The need for a tool

More information

Search for the Standard Model Higgs boson at LEP

Search for the Standard Model Higgs boson at LEP Physics Letters B 565 (2003) 61 75 www.elsevier.com/locate/npe Search for the Standard Model Higgs boson at LEP ALEPH Collaboration 1 DELPHI Collaboration 2 L3 Collaboration 3 OPAL Collaboration 4 The

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

CMS Internal Note. The content of this note is intended for CMS internal use and distribution only

CMS Internal Note. The content of this note is intended for CMS internal use and distribution only Available on CMS information server CMS IN 2003/xxxx CMS Internal Note The content of this note is intended for CMS internal use and distribution only August 26, 2003 Expected signal observability at future

More information

Higgs Results from LEP2. University of Wisconsin January 24, 2002 WIN 02

Higgs Results from LEP2. University of Wisconsin January 24, 2002 WIN 02 Higgs Results from LEP2 Peter McNamara University of Wisconsin January 24, 22 WIN 2 No Higgs? In December, 2, New Scientist wrote: The legendary particle that physicists thought explained why matter has

More information

CDF top quark " $ )(! # % & '

CDF top quark  $ )(! # % & ' $% CDF quark 7 3 5 ( "#! Tevatron Run II Started Spring 1. proton-antiproton collider with (Run I :. antiproton recycler commissioning electron cooling operational by Summer 5. increase in luminosity.

More information

First two sided limit on BR(B s μ + μ - ) Matthew Herndon, University of Wisconsin Madison SUSY M. Herndon, SUSY

First two sided limit on BR(B s μ + μ - ) Matthew Herndon, University of Wisconsin Madison SUSY M. Herndon, SUSY First two sided limit on BR(B s μ + μ - ) Matthew Herndon, University of Wisconsin Madison SUSY 2011 M. Herndon, SUSY 2011 1 B s(d) μ + μ - Beyond the SM Indirect searches for new physics Look at processes

More information

Statistical Methods for Particle Physics Lecture 3: Systematics, nuisance parameters

Statistical Methods for Particle Physics Lecture 3: Systematics, nuisance parameters Statistical Methods for Particle Physics Lecture 3: Systematics, nuisance parameters http://benasque.org/2018tae/cgi-bin/talks/allprint.pl TAE 2018 Centro de ciencias Pedro Pascual Benasque, Spain 3-15

More information

Hypothesis testing (cont d)

Hypothesis testing (cont d) Hypothesis testing (cont d) Ulrich Heintz Brown University 4/12/2016 Ulrich Heintz - PHYS 1560 Lecture 11 1 Hypothesis testing Is our hypothesis about the fundamental physics correct? We will not be able

More information

Statistics for Particle Physics. Kyle Cranmer. New York University. Kyle Cranmer (NYU) CERN Academic Training, Feb 2-5, 2009

Statistics for Particle Physics. Kyle Cranmer. New York University. Kyle Cranmer (NYU) CERN Academic Training, Feb 2-5, 2009 Statistics for Particle Physics Kyle Cranmer New York University 91 Remaining Lectures Lecture 3:! Compound hypotheses, nuisance parameters, & similar tests! The Neyman-Construction (illustrated)! Inverted

More information

Measurements of Fermionic Couplings of the Standard Model Higgs Boson using the bb, ττ and µµ Decay Channels with the ATLAS Detector

Measurements of Fermionic Couplings of the Standard Model Higgs Boson using the bb, ττ and µµ Decay Channels with the ATLAS Detector Measurements of Fermionic Couplings of the Standard Model Higgs Boson using the bb, ττ and µµ Decay Channels with the ATLAS Detector International Europhysics Conference on High Energy Physics Venice,

More information

Combined Higgs Results

Combined Higgs Results Chapter 2 Combined Higgs Results This chapter presents the combined ATLAS search for the Standard Model Higgs boson. The analysis has been performed using 4.7 fb of s = 7 TeV data collected in 2, and 5.8

More information

MODIFIED FREQUENTIST ANALYSIS OF SEARCH RESULTS (THE METHOD)

MODIFIED FREQUENTIST ANALYSIS OF SEARCH RESULTS (THE METHOD) MODIFIED FREQUENTIST ANALYSIS OF SEARCH RESULTS (THE METHOD) A. L. Read University of Oslo, Department of Physics, P.O. Box 148, Blindern, 316 Oslo 3, Norway Abstract The statistical analysis of direct

More information

Search for tt(h bb) using the ATLAS detector at 8 TeV

Search for tt(h bb) using the ATLAS detector at 8 TeV Search for tt(h bb) using the ATLAS detector at 8 TeV on behalf of the ATLAS Collaboration University of Göttingen Motivation, Strategy & Introduction Overview: tt(h bb) leptonic analysis Summary & Outlook

More information

Search for Higgs in H WW lνlν

Search for Higgs in H WW lνlν Search for Higgs in H WW lνlν John Alison University of Pennsylvania on behalf of the ATLAS Collaboration Higgs Physics Standard Model Remarkably Accurate Description Data. One Remaining Piece: Higgs Boson.

More information

First two sided limit on BR(B s µ + µ - ) Matthew Herndon, University of Wisconsin Madison SUSY M. Herndon, SUSY

First two sided limit on BR(B s µ + µ - ) Matthew Herndon, University of Wisconsin Madison SUSY M. Herndon, SUSY First two sided limit on BR(B s µ + µ - ) Matthew Herndon, University of Wisconsin Madison SUSY 2011 M. Herndon, SUSY 2011 1 B s(d) µ + µ - Beyond the SM! Indirect searches for new physics! Look at processes

More information

The Signal Estimator Limit Setting Method

The Signal Estimator Limit Setting Method EUROPEAN LABORATORY FOR PARTICLE PHYSICS (CERN) arxiv:physics/9812030v1 [physics.data-an] 17 Dec 1998 December 15, 1998 The Signal Estimator Limit Setting Method Shan Jin a,, Peter McNamara a, a Department

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

Statistical Tools in Collider Experiments. Multivariate analysis in high energy physics

Statistical Tools in Collider Experiments. Multivariate analysis in high energy physics Statistical Tools in Collider Experiments Multivariate analysis in high energy physics Pauli Lectures - 06/0/01 Nicolas Chanon - ETH Zürich 1 Main goals of these lessons - Have an understanding of what

More information

Statistics for the LHC Lecture 2: Discovery

Statistics for the LHC Lecture 2: Discovery Statistics for the LHC Lecture 2: Discovery Academic Training Lectures CERN, 14 17 June, 2010 indico.cern.ch/conferencedisplay.py?confid=77830 Glen Cowan Physics Department Royal Holloway, University of

More information

D + analysis in pp collisions

D + analysis in pp collisions D + analysis in pp collisions Giacomo Ortona INFN Torino Junior s Day (CERN) - 2010-11-11 Junior s Day (CERN) - 2010-11-11 2010-11-11 1 / 22 Outline 1 Physics Motivation 2 Invariant Mass Analysis 3 Cuts

More information

Hà γγ in the VBF production mode and trigger photon studies using the ATLAS detector at the LHC

Hà γγ in the VBF production mode and trigger photon studies using the ATLAS detector at the LHC Hà γγ in the VBF production mode and trigger photon studies using the ATLAS detector at the LHC Olivier DAVIGNON (LPNHE Paris / CNRS-IN2P3 / UPMC Paris Diderot) Journées de Rencontre Jeunes Chercheurs

More information

Statistical Methods in Particle Physics

Statistical Methods in Particle Physics Statistical Methods in Particle Physics Lecture 11 January 7, 2013 Silvia Masciocchi, GSI Darmstadt s.masciocchi@gsi.de Winter Semester 2012 / 13 Outline How to communicate the statistical uncertainty

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

D0 Higgs Results and Tevatron Higgs Combination

D0 Higgs Results and Tevatron Higgs Combination D Higgs Results and Tevatron Higgs Combination Graham W. Wilson University of Kansas July 3rd On behalf of the CDF and D collaborations Graham W. Wilson (University of Kansas) BEACH, Wichita July 3rd /

More information

Searches for BSM Physics in Rare B-Decays in ATLAS

Searches for BSM Physics in Rare B-Decays in ATLAS Searches for BSM Physics in Rare B-Decays in ATLAS Iskander Ibragimov on behalf of the ATLAS Collaboration SUSY 14 The nd International Conference on Supersymmetry and Unification of Fundamental Interactions

More information

Statistical Methods in Particle Physics Lecture 2: Limits and Discovery

Statistical Methods in Particle Physics Lecture 2: Limits and Discovery Statistical Methods in Particle Physics Lecture 2: Limits and Discovery SUSSP65 St Andrews 16 29 August 2009 Glen Cowan Physics Department Royal Holloway, University of London g.cowan@rhul.ac.uk www.pp.rhul.ac.uk/~cowan

More information

Higgs boson searches at LEP II

Higgs boson searches at LEP II PROCEEDINGS Higgs boson searches at LEP II Department of Physics and Astronomy University of Glasgow Kelvin Building University Avenue Glasgow G12 8QQ UK E-mail: D.H.Smith@cern.ch Abstract: A brief overview

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

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

tth searches at ATLAS and CMS Thomas CALVET for the ATLAS and CMS collaborations Stony Brook University Apr 11 th, 2018

tth searches at ATLAS and CMS Thomas CALVET for the ATLAS and CMS collaborations Stony Brook University Apr 11 th, 2018 tth searches at ATLAS and CMS Thomas CALVET for the ATLAS and CMS collaborations Stony Brook University SM@LHC2018 Apr 11 th, 2018 Cross-section (pb) The Higgs Top Sector Higgs boson discovery in 2012

More information

Searches for Leptonic Decays of the B-meson at BaBar

Searches for Leptonic Decays of the B-meson at BaBar Searches for Leptonic Decays of the B-meson at BaBar Stephen Jacob Sekula (MIT) on behalf of the BaBar collaboration Presented at Frontiers in Contemporary Physics III Vanderbilt University May 22-28,

More information

The Tevatron s Search for High Mass Higgs Bosons

The Tevatron s Search for High Mass Higgs Bosons The Tevatron s Search for High Mass Higgs Bosons Konstantinos A. Petridis University of Manchester On behalf of the CDF and DØ Collaborations K.A. Petridis (University of Manchester) Tevatron High Mass

More information

Why I never believed the Tevatron Higgs sensitivity claims for Run 2ab Michael Dittmar

Why I never believed the Tevatron Higgs sensitivity claims for Run 2ab Michael Dittmar Why I never believed the Tevatron Higgs sensitivity claims for Run 2ab Michael Dittmar 18.03.09 Why I never believed the Tevatron Higgs sensitivity claims for Run 2ab Michael Dittmar 18.03.09 How to judge

More information

Searches at LEP. Tom Junk Carleton University Ottawa, Canada. RADCOR 2000 September 12, 2000

Searches at LEP. Tom Junk Carleton University Ottawa, Canada. RADCOR 2000 September 12, 2000 Searches at LEP Tom Junk Carleton University Ottawa, Canada RADCOR 2 September 12, 2 With many thanks to the ALEPH, DELPHI, L3, and OPAL collaborations, and the Accelerator Divisions at CERN Introduction

More information

Search for MSSM Higgs at LEP. Haijun Yang. University of Michigan, Ann Arbor

Search for MSSM Higgs at LEP. Haijun Yang. University of Michigan, Ann Arbor Search for MSSM Higgs at LEP Haijun Yang University of Michigan, Ann Arbor Physics Seminar at Univ. of Michigan February 4, 2002 Introduction of MSSM UTLINE L Main Backgrounds L Analysis Procedure LEP

More information

Statistical Methods for Particle Physics Lecture 4: discovery, exclusion limits

Statistical Methods for Particle Physics Lecture 4: discovery, exclusion limits Statistical Methods for Particle Physics Lecture 4: discovery, exclusion limits www.pp.rhul.ac.uk/~cowan/stat_aachen.html Graduierten-Kolleg RWTH Aachen 10-14 February 2014 Glen Cowan Physics Department

More information

PoS(ICHEP2012)238. Search for B 0 s µ + µ and other exclusive B decays with the ATLAS detector. Paolo Iengo

PoS(ICHEP2012)238. Search for B 0 s µ + µ and other exclusive B decays with the ATLAS detector. Paolo Iengo Search for B s µ + µ and other exclusive B decays with the ATLAS detector. On behalf of the ATLAS Collaboration INFN Naples, Italy E-mail: paolo.iengo@cern.ch The ATLAS experiment, collecting data in pp

More information

Higgs couplings and mass measurements with ATLAS. Krisztian Peters CERN On behalf of the ATLAS Collaboration

Higgs couplings and mass measurements with ATLAS. Krisztian Peters CERN On behalf of the ATLAS Collaboration Higgs couplings and mass measurements with ATLAS CERN On behalf of the ATLAS Collaboration July observation: qualitative picture A single state observed around ~125 GeV Qualitatively all observations consistent

More information

Title Text. ATLAS Higgs Boson Discovery Potential

Title Text. ATLAS Higgs Boson Discovery Potential Title Text ATLAS Higgs Boson Discovery Potential Isabelle Wingerter-Seez - LAPP - Annecy isabelle.wingerter@lapp.in2p3.fr Corfu Summer Institute September 2009 1 Title Text ATLAS Standard Model Higgs Boson

More information

Boosted Top Resonance Searches at CMS

Boosted Top Resonance Searches at CMS Boosted Top Resonance Searches at CMS Justin Pilot, UC Davis on behalf of the CMS Collaboration Northwest Terascale Workshop, Using Jet Substructure University of Oregon 5 April 013 Introduction Many new

More information

Combined Higgs Searches at DZero

Combined Higgs Searches at DZero Combined Higgs Searches at DZero + CDF & DØ W&C, December 7 th 2007 Gregorio Bernardi, LPNHE-Paris for the DØ Collaboration Standard Model Higgs Searches New results since Lepton-Photon (2007) Combination

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

Searches at LEP. Ivo van Vulpen CERN. On behalf of the LEP collaborations. Moriond Electroweak 2004

Searches at LEP. Ivo van Vulpen CERN. On behalf of the LEP collaborations. Moriond Electroweak 2004 Searches at LEP Moriond Electroweak 2004 Ivo van Vulpen CERN On behalf of the LEP collaborations LEP and the LEP data LEP: e + e - collider at s m Z (LEP1) and s = 130-209 GeV (LEP2) Most results (95%

More information

Higgs search in WW * and ZZ *

Higgs search in WW * and ZZ * Higgs search in WW * and ZZ * Emanuele Di Marco on behalf of CMS collaboration La Sapienza Università di Roma & INFN Roma1 July, 29 2011 1 Higgs production at LHC gluon fusion (gg H) gg H is the dominant

More information

Inclusive top pair production at Tevatron and LHC in electron/muon final states

Inclusive top pair production at Tevatron and LHC in electron/muon final states Inclusive top pair production at Tevatron and LHC in electron/muon final states Andreas Jung for the ATLAS, CDF, CMS and D Collaboration Fermilab, DAB5 - MS 357, P.O. Box 5, Batavia, IL, 651, USA DOI:

More information

Discovery Potential for the Standard Model Higgs at ATLAS

Discovery Potential for the Standard Model Higgs at ATLAS IL NUOVO CIMENTO Vol.?, N.?? Discovery Potential for the Standard Model Higgs at Glen Cowan (on behalf of the Collaboration) Physics Department, Royal Holloway, University of London, Egham, Surrey TW EX,

More information

Events with High P T Leptons and Missing P T and Anomalous Top at HERA

Events with High P T Leptons and Missing P T and Anomalous Top at HERA with High Leptons and Missing and Anomalous Top at HERA David South (DESY) On Behalf of the H Collaboration IIth International Workshop on Deep Inelastic Scattering (DIS 24) Štrbské Pleso, High Tatras,

More information

RooFit/RooStats Analysis Report

RooFit/RooStats Analysis Report RooFit/RooStats Analysis Report D. Hayden Department of Physics Royal Holloway University of London Supervisor: Dr Tracey Berry December 9, 2009 Abstract I have started to use a new and highly flexible

More information

A flavour-independent Higgs boson search in e+e- collisions at s up to 209 GeV. 11 th, May, 2009 Kohei Yoshida

A flavour-independent Higgs boson search in e+e- collisions at s up to 209 GeV. 11 th, May, 2009 Kohei Yoshida A flavour-independent Higgs boson search in e+e- collisions at s up to 209 GeV 11 th, May, 2009 Kohei Yoshida Introduction Search for the Higgsstrahlung process (e+ e - ZH) ALEPH experiment @ LEP year

More information

Primer on statistics:

Primer on statistics: Primer on statistics: MLE, Confidence Intervals, and Hypothesis Testing ryan.reece@gmail.com http://rreece.github.io/ Insight Data Science - AI Fellows Workshop Feb 16, 018 Outline 1. Maximum likelihood

More information

Complete LEP Data: Status of Higgs Boson Searches

Complete LEP Data: Status of Higgs Boson Searches hep-ph/282 December 2 Complete LEP Data: Status of Higgs Boson Searches arxiv:hep-ph/282v 5 Dec 2 André Sopczak Lancaster University Abstract The LEP experiments completed data-taking in November 2. New

More information

Discovery searches for light new physics with BaBar

Discovery searches for light new physics with BaBar SLAC-PUB-1548 Discovery searches for light new physics with BaBar Neus Lopez-March BABAR Collaboration E-mail: neus.lopezmarch@epfl.ch The BABAR experiment collected large samples of events during the

More information

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

Sta)s)cs exercises Thursday 14:00-18:00 Friday 09:00-12:30

Sta)s)cs exercises Thursday 14:00-18:00 Friday 09:00-12:30 Introductory StaHsHcs School, March 2013 (DESY) muon muon Analysis walkthrough muon muon Sta)s)cs exercises Thursday 14:00-18:00 Friday 09:00-12:30 Ivo van Vulpen (UvA/Nikhef) Sta)s)cs is everywhere in

More information

BABAR results on Lepton Flavour Violating (LFV) searches for τ lepton + pseudoscalar mesons & Combination of BABAR and BELLE LFV limits

BABAR results on Lepton Flavour Violating (LFV) searches for τ lepton + pseudoscalar mesons & Combination of BABAR and BELLE LFV limits BABAR results on Lepton Flavour Violating (LFV) searches for τ lepton + pseudoscalar mesons & Combination of BABAR and BELLE LFV limits Swagato Banerjee 9 th International Workshop on Tau Lepton Physics

More information

ETH Zurich HS Mauro Donegà: Higgs physics meeting name date 1

ETH Zurich HS Mauro Donegà: Higgs physics meeting name date 1 Higgs physics - lecture 4 ETH Zurich HS 2015 Mauro Donegà Mauro Donegà: Higgs physics meeting name date 1 Outline 1 2 3 4 5 6 Introduction Accelerators Detectors EW constraints Search at LEP1 / LEP 2 Statistics:

More information

Statistical Methods in Particle Physics Day 4: Discovery and limits

Statistical Methods in Particle Physics Day 4: Discovery and limits Statistical Methods in Particle Physics Day 4: Discovery and limits 清华大学高能物理研究中心 2010 年 4 月 12 16 日 Glen Cowan Physics Department Royal Holloway, University of London g.cowan@rhul.ac.uk www.pp.rhul.ac.uk/~cowan

More information

Top Quark Production at the LHC. Masato Aoki (Nagoya University, Japan) For the ATLAS, CMS Collaborations

Top Quark Production at the LHC. Masato Aoki (Nagoya University, Japan) For the ATLAS, CMS Collaborations Top Quark Production at the LHC Masato Aoki (Nagoya University, Japan) For the ATLAS, CMS Collaborations Phys. Rev. D 83 (2011) 091503, Phys. Rev. D 82 (2010) 054018, Phys. Rev. D 81 (2010) 054028, Comput.

More information

Physics at Tevatron. Koji Sato KEK Theory Meeting 2005 Particle Physics Phenomenology March 3, Contents

Physics at Tevatron. Koji Sato KEK Theory Meeting 2005 Particle Physics Phenomenology March 3, Contents Physics at Tevatron Contents Koji Sato KEK Theory Meeting 5 Particle Physics Phenomenology March 3, 5 mass measurement Top physics cross section Top mass measurement SM Higgs search Tevatron Run II Started

More information

Confidence Limits and Intervals 3: Various other topics. Roger Barlow SLUO Lectures on Statistics August 2006

Confidence Limits and Intervals 3: Various other topics. Roger Barlow SLUO Lectures on Statistics August 2006 Confidence Limits and Intervals 3: Various other topics Roger Barlow SLUO Lectures on Statistics August 2006 Contents 1.Likelihood and lnl 2.Multidimensional confidence regions 3.Systematic errors: various

More information

Measurement of EW production! of Z+2j at the LHC

Measurement of EW production! of Z+2j at the LHC Measurement of EW production! of Z+j at the LHC Frontiers of Fundamental Physics, Marseille Kiran Joshi On behalf the ATLAS and CMS collaborations /7/ Overview Introduction and motivation ATLAS measurement

More information

Higgs and Z τ + τ in CMS

Higgs and Z τ + τ in CMS Higgs and Z τ + τ in CMS Christian Veelken for the CMS Collaboration Moriond EWK Conference, March 14 th 2011 Z τ + τ - Production @ 7 TeV τ + Z τ - CMS Measurement of Z/γ* l + l -, l = e/µ: σ BR(Z/γ*

More information

Study of Higgs boson leptonic decay modes

Study of Higgs boson leptonic decay modes Study of Higgs boson leptonic decay modes Windows on the Universe ICSE, Vietnam 11-17.08.2013 Pawel Brückman de Renstrom on behalf of the ATLAS, CMS, CDF, D0 Collaborations ( Institute of Nuclear Physics

More information

Text. Decays of heavy flavour hadrons measured by CMS and ATLAS. M.Smizanska, Lancaster University

Text. Decays of heavy flavour hadrons measured by CMS and ATLAS. M.Smizanska, Lancaster University Text Decays of heavy flavour hadrons measured by CMS and ATLAS M. Outline Data collection and B-trigger strategies ID performance with increasing pileup Lifetimes B avg Bs, Bd Masses Λ b Bc Searches for

More information

Strategies for b-tagging performance using t t events at CMS

Strategies for b-tagging performance using t t events at CMS Strategies for b-tagging performance using t t events at CMS Stefania Vitillo Supervisor: Wolfgang Lohmann Tutor: Igor Marfin Università di Pisa 6 th September 2011 Stefania Vitillo Supervisor: Wolfgang

More information

B-quark discovery. e+ e- PETRA GeV TRISTAN 61.4 GeV LEP Mz Mt > 45.8 GeV

B-quark discovery. e+ e- PETRA GeV TRISTAN 61.4 GeV LEP Mz Mt > 45.8 GeV 1970s B-quark discovery e+ e- PETRA 12-47 GeV TRISTAN 61.4 GeV LEP Mz Mt > 45.8 GeV p+p- ISR 60 GeV SppS 630 GeV Tevatron 1800 GeV 1984 UA1 Mt = 40 ± 10 1989 UA1 Mt > 60 GeV UA2 Mt > 69 GeV 1989 CDF Mt

More information

Evidence for D 0 - D 0 mixing. Marko Starič. J. Stefan Institute, Ljubljana, Slovenia. March XLII Rencontres de Moriond, La Thuile, Italy

Evidence for D 0 - D 0 mixing. Marko Starič. J. Stefan Institute, Ljubljana, Slovenia. March XLII Rencontres de Moriond, La Thuile, Italy Evidence for D - D mixing - D mixing (page 1) Introduction Mixing observed in K, Bd and B s (26), not yet in D system D mixing in the SM governed by box diagrams Effective GIM suppression mixing in D system

More information

Tutorial 8: Discovery of the Higgs boson

Tutorial 8: Discovery of the Higgs boson Tutorial 8: Discovery of the Higgs boson Dr. M Flowerdew May 6, 2014 1 Introduction From its inception in the 1960 s, the Standard Model was quickly established, but it took about 50 years for all of the

More information

Higgs Boson at the CMS experiment

Higgs Boson at the CMS experiment 16 th Lomonosov Conference on Elementary Particle Physics 22 28 August 2013, Moscow (Russia) Higgs Boson at the CMS experiment Somnath Choudhury (for the CMS collaboration) 5.1 fb -1 @ 7 TeV + 5.3 fb -1

More information

Higgs searches at L3

Higgs searches at L3 Higgs searches at L3 D. Teyssier To cite this version: D. Teyssier. Higgs searches at L3. High Energy Physics Conference - HEP-MAD 0, Sep 200, Antananariv, Madagascar. World Scientific, pp.67-72, 2002.

More information

Statistical Methods for Particle Physics Project on H ττ and multivariate methods

Statistical Methods for Particle Physics Project on H ττ and multivariate methods Statistical Methods for Particle Physics Project on H ττ and multivariate methods http://indico.ihep.ac.cn/event/5966/ istep 2016 Tsinghua University, Beijing July 10-20, 2016 Glen Cowan ( 谷林 科恩 ) Physics

More information

D mesons pp analyses: possible scenarios

D mesons pp analyses: possible scenarios D mesons pp analyses: possible scenarios Alessandro Grelli, Grazia Luparello 27/10/2015 D2H 1 Outline Introduction Expected statistical precision (13 TeV analyses) Comparison of 2010 pass4 (7 TeV) and

More information

The Higgs boson discovery. Kern-und Teilchenphysik II Prof. Nicola Serra Dr. Annapaola de Cosa Dr. Marcin Chrzaszcz

The Higgs boson discovery. Kern-und Teilchenphysik II Prof. Nicola Serra Dr. Annapaola de Cosa Dr. Marcin Chrzaszcz The Higgs boson discovery Kern-und Teilchenphysik II Prof. Nicola Serra Dr. Annapaola de Cosa Dr. Marcin Chrzaszcz Higgs production at the LHC g H VBF (Vector Boson Fusion) g gg fusion q 2 W/Z q 0 2 H

More information

Introductory Statistics Course Part II

Introductory Statistics Course Part II Introductory Statistics Course Part II https://indico.cern.ch/event/735431/ PHYSTAT ν CERN 22-25 January 2019 Glen Cowan Physics Department Royal Holloway, University of London g.cowan@rhul.ac.uk www.pp.rhul.ac.uk/~cowan

More information

Discovery significance with statistical uncertainty in the background estimate

Discovery significance with statistical uncertainty in the background estimate Glen Cowan, Eilam Gross ATLAS Statistics Forum 8 May, 2008 Discovery significance with statistical uncertainty in the background estimate Introduction In a search for a new type of event, data samples

More information

Data-driven background estimates for the Z ττ lτ h search

Data-driven background estimates for the Z ττ lτ h search Data-driven background estimates for the Z ττ lτ h search Ryan Reece University of Pennsylvania ryan.reece@cern.ch ALAS HSG4 Workshop, Oxford March, Outline. Review of some previous Z/H ττ data-driven

More information

Rare Exclusive Decays. Results from BaBar on the. DPF-2002, College of William and Mary. University of California, Jeffrey Berryhill.

Rare Exclusive Decays. Results from BaBar on the. DPF-2002, College of William and Mary. University of California, Jeffrey Berryhill. Results from BaBar on the Rare Exclusive Decays B K l + l and B K* l + l Jeffrey Berryhill University of California, Santa Barbara DPF2002, College of William and Mary May 24, 2002 B K (*) l + l in the

More information

Pursuing EWK Symmetry Breaking at CDF

Pursuing EWK Symmetry Breaking at CDF Pursuing EWK Symmetry Breaking at CDF Standard Model EWK Symmetry Breaking Status of Tevatron running Top Quark properties Top Mass measurement Standard Model Higgs Searches Summary 1 Standard Model The

More information

Search for H ± and H ±± to other states than τ had ν in ATLAS

Search for H ± and H ±± to other states than τ had ν in ATLAS Search for H ± and H to other states than τ had ν in On behalf of the collaboration Louisiana Tech University E-mail: Catrin.Bernius@cern.ch esults of searches for charged Higgs bosons based on data from

More information

Search for Quark Substructure in 7 TeV pp Collisions with the ATLAS Detector

Search for Quark Substructure in 7 TeV pp Collisions with the ATLAS Detector Search for Quark Substructure in 7 TeV pp Collisions with the ATLAS Detector Frank Berghaus SUPERVISOR: Michel Lefebvre University of Victoria June 12, 2012 Introduction ATLAS and the LHC The LHC provides

More information

Highlights of top-quark measurements in hadronic nal states at ATLAS

Highlights of top-quark measurements in hadronic nal states at ATLAS Highlights of top-quark measurements in hadronic nal states at ATLAS Serena Palazzo on behalf of the ATLAS collaboration XLVII International Symposium on Multiparticle Dynamics Tlaxcala, Mexico September

More information

ATLAS Measurements of Boosted Objects

ATLAS Measurements of Boosted Objects BOOS24 University College London, 8-22 August 24 ALAS Measurements of Boosted Objects Christoph Anders on behalf of the ALAS collaboration Physikalisches Institut Universita t Heidelberg August 9th 24

More information

Searches for CP violation in decays from BABAR and Belle

Searches for CP violation in decays from BABAR and Belle D Searches for CP violation in decays from BABAR and Belle Maurizio Martinelli on behalf of the BABAR Collaboration Università degli Studi di Bari and INFN FPCP 1 May 7 1, Torino ITALY CP violation in

More information

Search for the Standard Model Higgs in WW (lν)(lν)

Search for the Standard Model Higgs in WW (lν)(lν) Search for the Standard Model Higgs in WW (lν)(lν) v l v l Yanyan Gao (Fermilab) February 11, 13 HEP Lunch seminar at University of Chicago The SM Higgs Production and Decays at LHC "(pp! H+X) [pb] The

More information

Advanced event reweighting using multivariate analysis

Advanced event reweighting using multivariate analysis Advanced event reweighting using multivariate analysis D Martschei, M Feindt, S Honc, J Wagner-Kuhr Institut für Experimentelle Kernphysik - Karlsruhe Institute of Technology KIT, DE E-mail: martschei@ekp.uni-karlsruhe.de

More information

Beyond the Standard Model Higgs Boson Searches at DØ

Beyond the Standard Model Higgs Boson Searches at DØ Beyond the Standard Model Higgs Boson Searches at DØ Nicolas Osman On behalf of the DØ Collaboration Centre de Physique des Particules de Marseille 28th July, 2011 PANIC11 2 Outline Tevatron and DØ Neutral

More information

Georges Aad For the ATLAS and CMS Collaboration CPPM, Aix-Marseille Université, CNRS/IN2P3, Marseille, France

Georges Aad For the ATLAS and CMS Collaboration CPPM, Aix-Marseille Université, CNRS/IN2P3, Marseille, France Georges Aad For the ATLAS and CMS Collaboration CPPM, Aix-Marseille Université, CNRS/IN2P3, Marseille, France 5th Large Hadron Collider Physics Conference May 2017, Shanghai Jiao Tong University, Shanghai

More information

Relative branching ratio measurements of charmless B ± decays to three hadrons

Relative branching ratio measurements of charmless B ± decays to three hadrons LHCb-CONF-011-059 November 10, 011 Relative branching ratio measurements of charmless B ± decays to three hadrons The LHCb Collaboration 1 LHCb-CONF-011-059 10/11/011 Abstract With an integrated luminosity

More information

Observation of a New Particle with a Mass of 125 GeV

Observation of a New Particle with a Mass of 125 GeV Observation of a New Particle with a Mass of 125 GeV CMS Experiment, CERN 4 July 2012 Summary In a joint seminar today at CERN and the ICHEP 2012 conference[1] in Melbourne, researchers of the Compact

More information

The X(3872) at the Tevatron

The X(3872) at the Tevatron The X(387) at the Tevatron Ulrich Kerzel, University of Karlsruhe for the CDF and D0 collaborations BEAUTY 005 Physics at the Tevatron observe p p collisions at s =1.96 TeV 1 fb -1 luminosity delivered

More information

Belle Hot Topics. Nagoya University Koji Ikado (for the Belle Collaboration) Flavor Physics and CP Violation Conference (FPCP2006) Apr.

Belle Hot Topics. Nagoya University Koji Ikado (for the Belle Collaboration) Flavor Physics and CP Violation Conference (FPCP2006) Apr. Belle Hot Topics Nagoya University Koji Ikado (for the Belle Collaboration) Flavor Physics and CP Violation Conference (FPCP2006) Apr. 9, 2006 Outline Search for the Purely Leptonic Decay Β τν Results

More information

top quark mass measurements

top quark mass measurements top quark mass measurements Ulrich Heintz 11/8/006 DESY seminar - Ulrich Heintz 1 outline the top quark the top quark factory top quark production and decay top quark mass in the lepton+jets channel top

More information