ColorFull and other tools for color space

Size: px
Start display at page:

Download "ColorFull and other tools for color space"

Transcription

1 ColorFull and other tools for color space Motivation Trace type bases ColorFull Orthogonal bases ColorMath Conclusions and outlook Manchester October 28, 203 Malin Sjödahl

2 Motivation With the LHC follows an increased demand of accurately calculated processes in QCD This is applicable to NLO calculations and resummation...but my perspective is from a parton shower point of view First SU(3) parton shower in collaboration with Simon Plätzer JHEP 07(202)042, arxiv: color structure treated using my C++ ColorFull code Malin Sjödahl 2

3 Dealing with color space We never observe individual colors we are only interested in color summed/averaged quantities For given external partons, the color space is a finite dimensional vector space equipped with a scalar product A,B = (A a,b,c,... ) B a,b,c,... Example: If a,b,c,... A = g (t g ) a b(t g ) c d = a b g c d, then A A = a,b,c,d,g,h (th ) b a(t h ) d c(t g ) a b(t g ) c d Malin Sjödahl 3

4 One way of dealing with color space is to just square the amplitudes as one encounters them Alternatively, we may use any basis (spanning set) Malin Sjödahl 4

5 The standard treatment: Trace bases Every 4g vertex can be replaced by 3g vertices: a, α b, β = + + c,γ d, δ ig 2 s(g αδ g βγ g αγ g βδ ) ig 2 s(g αβ g γδ g αδ g βγ ) ig 2 s(g αβ g γδ g αγ g βδ ) (read counter clockwise) Every 3g vertex can be replaced using: b a if abc = T R ( c ) After this every internal gluon can be removed using: = T R T R Nc Malin Sjödahl 5

6 This can be applied to any QCD amplitude, tree level or beyond In general an amplitude can be written as linear combination of different color structures, like A + B +... For example for 2 (incoming + outgoing) gluons and one qq pair = A + A 2 + A 3 (an incoming quark is the same as an outgoing anti-quark) Malin Sjödahl 6

7 The above type of color structures can be used as a spanning set, a trace basis. (Technically it s in general overcomplete, so it is rather a spanning set.) These bases have some nice properties The effect of gluon emission is easily described: = Convention: + when inserting after, minus when inserting before. So is the effect of gluon exchange: g g 2 g 3 g 4 g g 2 g 3 g 4 g g 2 g 3 g 4 g 2 g 3 g g 4 = T R ( + ) Convention: + when inserting after, - when inserting before Malin Sjödahl 7

8 ColorFull For the purpose of treating a general QCD color structure I have written a C++ color algebra code, ColorFull, based on this type or trace basis. ColorFull is used in the color shower with Simon Plätzer, JHEP 07(202)042, arxiv: ColorFull is interfaced to Herwig++ ( 2.7) via Matchbox, and is now publicly available in a pre-release version (0.90) at colorfull.hepforge.org. Malin Sjödahl 8

9 ColorFull can automatically create a trace basis for any number and kind of partons, and to arbitrary order in α s. For example we may create a basis for qq-pair, 3 gluons and 0 loops (in pure QCD): Trace basis MyBasis(,3,0); MyBasis.write out Col basis to cout(); MyBasis.write out Col basis("colorresults/mybasis"); This results in a basis with basis vectors: 0 [{,3,4,5,2}] [{,3,5,4,2}] 2 [{,4,3,5,2}] 3 [{,4,5,3,2}] 4 [{,5,3,4,2}] 5 [{,5,4,3,2}] g 3 g 4 g 5 Here [{,3,4,5,2}]=(t g3 t g4 t g5 ) q q2= q q 2 Malin Sjödahl 9

10 Having a basis one probably wants to calculate the scalar product matrix MyBasis.scalar product matrix(); The Polynomial and numerical scalar product matrices are then calculated and saved in MyBasis.P smp and MyBasis.d spm The result is Mathematica readable: { { Nc CFˆ(3), *- TR CFˆ(2), *- TR CFˆ(2), TRˆ(2) Ncˆ(-) CF, TRˆ(2) Ncˆ(-) CF,( TRˆ(2) Nc CF + TRˆ(2) Ncˆ(-) CF)}, { *- TR CFˆ(2), Nc CFˆ(3), TRˆ(2) Ncˆ(-) CF,( TRˆ(2) Nc CF + TRˆ(2) Ncˆ(-) CF), *- TR CFˆ(2), TRˆ(2) Ncˆ(-) CF}, { *- TR CFˆ(2), TRˆ(2) Ncˆ(-) CF, Nc CFˆ(3), *- TR CFˆ(2),( TRˆ(2) Nc CF + TRˆ(2) Ncˆ(-) CF), TRˆ(2) Ncˆ(-) CF}, { TRˆ(2) Ncˆ(-) CF,( TRˆ(2) Nc CF + TRˆ(2) Ncˆ(-) CF), *- TR CFˆ(2), Nc CFˆ(3), TRˆ(2) Ncˆ(-) CF, *- TR CFˆ(2)}, { TRˆ(2) Ncˆ(-) CF, *- TR CFˆ(2),( TRˆ(2) Nc CF + TRˆ(2) Ncˆ(-) CF), TRˆ(2) Ncˆ(-) CF, Nc CFˆ(3), *- TR CFˆ(2)}, {( TRˆ(2) Nc CF + TRˆ(2) Ncˆ(-) CF), TRˆ(2) Ncˆ(-) CF, TRˆ(2) Ncˆ(-) CF, *- TR CFˆ(2), *- TR CFˆ(2), Nc CFˆ(3)} } Malin Sjödahl 0

11 ColorFull can also square any color amplitudes and calculate any interference, Col amp Ca("[{,3,2}(4,5)]"); // (t g3 ) q q2tr(t g4 t g5 ) Col amp Ca2("[{,3,4,5,2}]"); // (t g3 t g4 t g5 ) q q2 Col functions Col fun; Col fun.scalar product(ca,ca); Col fun.scalar product(ca,ca2); giving the results TR Nc^2 CF^2 and TR Nc CF^2, respectively. Malin Sjödahl

12 In the context of parton showers we like to be able to describe the effect of gluon emission: Col fun.emit gluon(ca,3,77); (recall Ca=[{,3,2}(4,5)] ) resulting in: [{,3,77,2}(4,5)] + *-[{,77,3,2}(4,5)] Convention +, when inserting before, - when inserting after and gluon exchange: Col fun.exchange gluon(ca,,4); giving: TR[,4,5,3,2] + *- TR[,5,4,3,2] Malin Sjödahl 2

13 For resummation type calculations one may also like to calculate the soft anomalous dimension matrices. To do so, we need the full basis Trace basis MyBasisFull(,3); // Create an all order basis MyBasisFull.Col gamma(,4); // Effect of gluon exchange results in {{ TR Nc, 0, 0, 0, 0, 0, 0, 0, TR, TR, 0}, { 0, 0, 0, 0, 0, *- TR, 0, 0, 0, 0, 0}} {{ 0, 0, 0, 0, 0, 0, 0, 0, *- TR, 0, 0}, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, *- TR}, { 0, 0, TR Nc, 0, 0, 0, 0, 0, TR, 0, TR}, { 0, 0, 0, TR Nc, 0, 0, TR, 0, 0, TR, 0}, { 0, 0, 0, 0, 0, 0, 0, 0, 0, *- TR, 0}, { 0, 0, 0, 0, 0, 0, *- TR, 0, 0, 0, 0}, { 0, 0, 0, 0, 0, *- TR, 0, 0, 0, 0, 0}, { 0, TR, 0, 0, TR, 0, 0, TR Nc, 0, 0, 0}, { *- TR, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, { 0, 0, 0, 0, *- TR, 0, 0, 0, 0, 0, 0}, { 0, *- TR, 0, 0, 0, 0, 0, 0, 0, 0, 0}} Malin Sjödahl 3

14 Apart from this ColorFull can also Read in and use orthogonal bases Create tree level gluon bases (using charge conjugation invariance) Be used with arbitrary N c Be used with any T R = Tr(t a t a ) (no sum) Take the strict leading N c limit Take the leading N c limit, but keep C F to it s N c = 3 value (shower like) To learn more download from colorfull.hepforge.org, and see the toy program ColorPlay, or browse the doxygen documentation Malin Sjödahl 4

15 Use case: NLO electroweak Higgs + 3 jet production In collaboration with Francisco Campanario, Terrance Figy and Simon Plätzer, arxiv: , accepted for publication in PRL dσ/dz 3 [fb] 0 3 ystar normed LO NLO dσ/dp,3 [fb/gev] 0 2 Transverse momentum of the third jet 0 0 LO NLO K HJets z 3 K HJets p,3 [GeV] Here, normalized centralized rapidity distribution of third jet w.r.t. two hardest jets (left) and transverse momentum of third jet (right). Malin Sjödahl 5

16 However... This type of basis is non-orthogonal and overcomplete (for more than N c gluons plus qq-pairs)... and the number of spanning vectors grows as a factorial in N g +N qq when squaring amplitudes we run into a factorial square scaling Hard to go beyond 8 gluons plus qq-pairs Would be nice with minimal orthogonal basis Malin Sjödahl 6

17 Minimal orthogonal bases for color spaces In collaboration with Stefan Keppeler Want orthogonal minimal basis for color space Basis vectors can be enumerated using Young tableaux multiplication, for example for gg gg = (0) and constructed if projection operators are known The problem is the construction of the corresponding projection operators; the Young-tableaux operate with quark-units but the physical particles include anti-quarks and gluons Malin Sjödahl 7

18 One may think that the problem of constructing group theory based multiplet bases should have been solved a long time ago The 2g 2g case was solved in the 60 s (N c = 3) However, until recently only a few cases had been dealt with, those for which (loosely speaking) nothing more complicated than two gluon projection operators is needed About one year ago me and Stefan Keppeler presented a general recipe for constructing gluon projection operators. From these we also know how to construct orthogonal bases for any number and kind of partons, JHEP09(202)24, arxiv: Malin Sjödahl 8

19 For many partons the size of the vector space is much smaller for N c = 3 (exponential), compared to for N c (factorial) Case Vectors N c = 3 Vectors, general case 4 gluons gluons gluons gluons Number of basis vectors for N g N g gluons without imposing vectors to appear in charge conjugation invariant combinations Malin Sjödahl 9

20 Multiplet bases can potentially speed up exact calculations in color space very significantly, as squaring amplitudes is very quick... but before squaring, the amplitudes must be decomposed in the bases (master thesis of Johan Thorén) For resummation and higher order calculations one also wants to quickly compute the effect of gluon exchange (master thesis of Fritiof Persson) It seems that both these issues can be dealt with relatively quickly I m optimistic Malin Sjödahl 20

21 ColorMath Calculations are done using my Mathematica package, ColorMath, Eur. Phys. J. C 73:230 (203), arxiv: ColorMath is an easy to use Mathematica package for color summed calculations in QCD, SU(N c ) Repeated indices are implicitly summed In[2]:= Amplitude If g, g2, g t g, q, q2 Out[2]= t g q q2 f g,g2,g In[3]:= CSimplify Amplitude Conjugate Amplitude. g h Out[3]= 2 Nc Nc 2 TR 2 The package and tutorial can be downloaded from or Malin Sjödahl 2

22 Conclusions and outlook One way of dealing with color space is to use trace bases This method is pursued in my and Simon Plätzer s N c = 3 parton shower (JHEP 07(202)042, arxiv: ) This is also the type of basis ColorFull, colorfull.hepforge.org, is built on Alternatively one may want to use orthogonal bases (JHEP09(202)24, arxiv: ) This may have the potential to very significantly speed up exact calculations in the color space of SU(N c ), but some work still remains... I have also written a Mathematica package ColorMath for color summed calculations of moderate complexity (Eur. Phys. J. C 73:230 (203), arxiv:2.2099) Malin Sjödahl 22

23 Backup: Full program Malin Sjödahl 23

24 Backup: 2 gluon solutions For two gluons, there are two octet projectors, one singlet projector, and 4 new projectors, 0, 0, 27, and for general N c, 0 It turns out that the new projectors can be seen as corresponding to different symmetries w.r.t. quark and anti-quark units, for example the decuplet can be seen as corresponding to P octet(s) (singlet) Similarly the anti-decuplet corresponds to 2 2, the 27-plet corresponds to 2 2 and the 0-plet to 2 2 Malin Sjödahl 24

25 Backup: 2 gluon projectors Problem first solved for two gluons by MacFarlane, Sudbery, and Weisz 968, however only for N c = 3 General N c solution for two gluons by Butera, Cicuta and Enriotti 979 General N c solution for two gluons by Cvitanović, in group theory books, 984 and 2008, using polynomial equations General N c solution for two gluons by Dokshitzer and Marchesini 2006, using symmetries and intelligent guesswork Malin Sjödahl 25

26 Backup: Could this work in general? On the one hand side g g 2... g n (q q ) (q 2 q 2 )... (q n q n ) so there is hope... On the other hand... Why should it? In general there are many instances of a multiplet, how do we know we construct all? Malin Sjödahl 26

27 Backup: Key observation: Starting in a given multiplet, corresponding to some qq symmetries, such as 0, from 2, it turns out that for each 2 way of attaching a quark box to 2 and an anti-quark box to, 2 to there is at most one new multiplet! For example, the projector P 0,35 can be seen as coming from P P after having projected out old multiplets In fact, for large enough N c, there is precisely one new multiplet for each set of qq symmetries Malin Sjödahl 27

28 Backup: 2 gluon projectors P = N 2 c, P 8s = N c 2T R (N 2 c 4), P 8a = 2N c T R, P 0 = 2 P 0 = 2 P 27 = 2 P 0 = 2 + 2T 2 R 2T 2 R + 2T 2 R 2T 2 R 2 P8a 2 P8a N c 2 2N c P 8s N c 2N c P N c +2 2N c P 8s N c + 2N c P Malin Sjödahl 28

29 Backup: Some 3g example projectors P 8a,8a g g 2 g 3 g 4 g 5 g 6 = T 2 R P 8s,27 g g 2 g 3 g 4 g 5 g 6 = T R 4N 2 c if g g 2 i if i g 3 i 2 if g4 g 5 i 3 if i3 g 6 i 2 N c 2(N 2 c 4) d g g 2 i P 27 i g 3 i 2 g 6 d i2 g 4 g 5 P 27,8 g g 2 g 3 g 4 g 5 g 6 = 4(N c +) N 2 c(n c +3) P27 g g 2 i g 3 P 27 i g 6 g 4 g 5 P 27,64=cc g g 2 g 3 g 4 g 5 g 6 = TR 3 Tg 27,64 g 2 g 3 g 4 g 5 g 6 N2 c N c 2 8N c (N c +2) P27,27s g g 2 g 3 g 4 g 5 g 6 N 2 c 62(N c +)(N c +2) P27,8 g g 2 g 3 g 4 g 5 g 6 Malin Sjödahl 29

30 Backup: Three gluon multiplets SU(3) dim Multiplet c0c0 cc cc2 c2c cc c2c2 ((45) 8s 6) 2 ((45) 8s 6) 8s or a ((45) 8s 6) 0 ((45) 8s 6) 0 ((45) 8s 6) 27 ((45) 8s 6) 0 ((45) 8a 6) 2 ((45) 8a 6) 8s or a ((45) 8a 6) 0 ((45) 8a 6) 0 ((45) 8a 6) 27 ((45) 8a 6) 0 ((45) 0 6) 8 ((45) 0 6) 0 ((45) 0 6) 0 ((45) 0 6) 27 ((45) 0 6) 0 ((45) 0 6) 8 ((45) 0 6) 0 ((45) 0 6) 0 ((45) 0 6) 27 ((45) 0 6) 0 ((45) 27 6) 8 ((45) 27 6) 0 ((45) 27 6) 0 ((45) 27 6) 27 ((45) 0 6) 0 ((45) 0 6) 8 ((45) 0 6) 0 ((45) 0 6) 0 ((45) 27 6) 27 ((45) 0 6) 0 SU(3) dim Multiplet cc cc2 c2c c2c2 ((45) 27 6) 64 ((45) 0 6) 35 ((45) 0 6) 35 ((45) 0 6) c2c2 ((45) 27 6) 35 ((45) 27 6) 35 ((45) 0 6) c2c2 ((45) 27 6) c2c2 ((45) 0 6) c2c2 SU(3) dim Multiplet cc3 c3c c2c3 c3c2 c3c3 ((45) 0 6) cc3 ((45) 0 6) c3c ((45) 0 6) c2c3 ((45) 0 6) c3c2 ((45) 0 6) c3c3 ((45) 0 6) c2c3 ((45) 0 6) c3c2 Multiplets for g 4 g 5 g 6 Malin Sjödahl 30

31 Backup: Construction of 3 gluon projectors We start out by enumerating all projectors in (8 8 2 ) 8 3 Starting in a singlet, the result is trivial = 8 23 If we start in an octet 8 2, is known from before: Nc- Nc- Nc Nc- Nc- Nc-2 Nc- Nc- 2 Nc- Nc- Nc-2 2 = Malin Sjödahl 3

32 The 3g multiplets from (anti-) decuplets Malin Sjödahl 32

33 The 3g multiplets from 27- and 0-plets Malin Sjödahl 33

34 Backup: Projector construction Construct projectors corresponding to old multiplets Construct the tensors which will give rise to new projectors T 0,35 P P From these, project out old multiplets new projectors P 0,35 T 0,35 P m T 0,35 m 0 8 Malin Sjödahl 34

35 Backup: Projecting out old multiplets This would give us a way of constructing all projectors corresponding to new multiplets, if we knew how to project out all old multiplets. In g g 2 g 3, there are many 27-plets. How do we separate the various instance of the same multiplet? By the construction history! P M 2 P M P M ng P M P M We make sure that the n g ν first gluons are in a given multiplet! Then the various instances are orthogonal as, at some point in the construction history, there was a different projector! (More complicated for multiple occurrences...) Malin Sjödahl 35

36 It turns out that the proof of this is really interesting: We find that the irreducible representations in g n g for varying N c stand in a one to one, or one to zero correspondence to each other! (For each SU(3) multiplet there is an SU(5) version, but not vice versa.) Every multiplet in g n g can be labeled in an N c -independent way using the lengths of the columns. For example Nc- Nc- Nc Nc- Nc- Nc-2 Nc- Nc- 2 Nc- Nc- Nc-2 2 = I have not seen this column notation elsewhere... have you? Malin Sjödahl 36

37 Backup: Number of projection operators and basis vectors In general, for many partons the size of the vector space is much smaller for N c = 3, compared to for N c Case Projectors N c = 3 Projectors N c = Vectors N c = 3 Vectors N c = 2g 2g g 3g g 4g g 5g Number of projection operators and basis vectors for N g N g gluons without imposing projection operators and vectors to appear in charge conjugation invariant combinations Malin Sjödahl 37

38 The size of the vector spaces asymptotically grows as an exponential in the number of gluons/qq-pairs for finite N c For general N c the basis size grows as a factorial N vec [n q,n g ] = N vec [n q,n g ](N g +n q )+N vec [n q,n g 2](N g ) where N vec [n q,0] = n q! N vec [n q,] = n q n q! Malin Sjödahl 38

39 Backup: First occurrence n f SU(3) = Young diagrams Examples of SU(3) Young diagrams sorted according to their first occurrence n f. Malin Sjödahl 39

40 Backup: The importance of Hermitian projectors P 6,8 Y = 4 3, P 6,8 = 4 3 P 3,8 Y = 4 3, P 3,8 = 4 3 The standard Young projection operators P 6,8 Y and P3,8 Y compared to their Hermitian versions P 6,8 and P 3,8. Clearly P 6,8 P 3,8 = P 6,8 P 3,8 = 0. However, as can be seen from the symmetries, P 6,8 Y P 3,8 Y 0. Malin Sjödahl 40

41 Backup: Gluon exchange A gluon exchange in this basis directly i.e. without using scalar products gives back a linear combination of (at most 4) basis tensors = 2 2 Fierz = + canceling N c suppressed terms Fierz = _ 2 _ 2 + canceling N c suppressed terms = N_ c 2 0 N c -enhancement possible only for near by partons only color neighbors radiate in the N c limit Malin Sjödahl 4

42 Backup: Number of emissions First, simply consider the number of emissions for a LEP-like setting event fraction 0. number of emissions full shower strict large-n c 0.0 x/full DipoleShower + ColorFull n emissions... this is not an observable, but it is a genuine uncertainty on the number of emissions in the perturbative part of a parton shower Malin Sjödahl 42

43 Backup: Thrust For standard observables small effects, here thrust T = max n N dn/dτ Thrust, τ = T full shower strict large-n c i p i n i p i x/full DipoleShower + ColorFull NOTE: Larger effects expected at LHC τ Malin Sjödahl 43

44 Backup: Angular distribution Cosine of angle between third and fourth jet N dn/dcos α Angle between softest jets full shower strict large-n c x/full DipoleShower + ColorFull NOTE: Larger effects expected at LHC cos α 34 Malin Sjödahl 44

45 Backup: Some tailored observables For tailored observables we find larger differences average transverse momentum w.r.t. n 3 average rapidity w.r.t. n 3 GeV N dn/d p full shower strict large-n c N dn/d y 0. full shower strict large-n c 0.00 x/full DipoleShower + ColorFull x/full DipoleShower + ColorFull 0 p /GeV Average transverse momentum and rapidity of softer particles with respect to the thrust axis defined by the three hardest partons NOTE: Larger effects expected at LHC y Malin Sjödahl 45

46 Backup: /N c -suppressed terms That non-leading color terms are suppressed by /N 2 c, is guaranteed only for same order α s diagrams with only gluons ( t Hooft 973) 2 = = T R = T R = T R C F = T R C F N c = T R T R N 2 c N c N c N 2 c = = = T R T R Nc = T R T R Nc C F N c = 0 T R T R N 2 c N c N c Malin Sjödahl 46

47 Backup: /N c -suppressed terms For a parton shower there may also be terms which only are suppressed by one power of N c = = = T R T R Nc Is 0 without emission, with N 2 c did not enter in any form, genuine shower contribution Is N c without emission, with N 2 c included in shower, contribution from hard process The leading N c contribution scales as N 2 c before emission and N 3 c after Malin Sjödahl 47

Tools for calculations in color space

Tools for calculations in color space Tools for calculations in color space Dealing with exact color summed calculations Theoretical tools: - Trace bases - Orthogonal multiplet bases Computational tools: - ColorFull C++ - ColorMath Mathematica

More information

Excursions in color space

Excursions in color space Excursions in color space Dealing with exact color summed calculations Theoretical tools: - Trace bases - Orthogonal multiplet bases Computational tools: - ColorFull C++ - ColorMath Mathematica Conclusions

More information

Tools for calculations in color space

Tools for calculations in color space Tools for calculations in color space Dealing with exact color summed calculations Theoretical tools: - trace bases - orthogonal multiplet bases Computational tools: -ColorFull C++ -ColorMath Mathematica

More information

The three colors of nature

The three colors of nature The three colors of nature This talk will be about the strong force and the three colors of nature Motivation: QCD is the strongest force If there would be infinitely many colors calculations would be

More information

Towards N c = 3 parton showers

Towards N c = 3 parton showers Towards N c = 3 parton showers Brief parton shower overview Why N c suppressed terms may be important Some N c = 3 shower challenges First results from an SU(3), rather than SU( ) parton shower, in collaboration

More information

A color matrix element corrected parton shower and multiplet color bases

A color matrix element corrected parton shower and multiplet color bases A color matrix element corrected parton shower and multiplet color bases First results from an SU(3), rather than SU( ) parton shower In collaboration with Simon Plätzer (DESY), arxiv:20.0260 ColorFull

More information

Theoretical Particle Physics in Lund

Theoretical Particle Physics in Lund Theoretical Particle Physics in Lund QCD phenomenology Event generators: Gösta Gustafson, Torbjörn Sjöstrand, Leif Lönnblad, Malin Sjödahl, Stefan Prestel, Jesper Roy Christiansen, Christian Bierlich Diffraction,

More information

12 March 2014 Liverpool High Energy Theory Group

12 March 2014 Liverpool High Energy Theory Group ELECTROWEA HIGGS BOSON PRODUCTION IN ASSOCIATION WITH THREE JETS (A..A. VBF + JET) AT QCD IN COLLABORATION WITH S. PLATZER, F. CAMPANERIO, AND M. SJODAHL! PRL, 2802, (203), ARXIV:3.5455! Dr. Terrance Figy

More information

ColorMath - A package for color summed calculations in SU(N c )

ColorMath - A package for color summed calculations in SU(N c ) ColorMath - A package for color summed calculations in SU(N c ) LU TP 12-40 Malin Sjödahl Dept. of Astronomy and Theoretical Physics, Lund University Sölvegatan 14A, 223 62 Lund, Sweden Abstract A Mathematica

More information

Superleading logarithms in QCD

Superleading logarithms in QCD Superleading logarithms in QCD Soft gluons in QCD: an introduction. Gaps between jets I: the old way (

More information

arxiv: v1 [math-ph] 23 Jul 2017

arxiv: v1 [math-ph] 23 Jul 2017 a b arxiv:1707.07280v1 [math-ph] 2 Jul 2017 c d Birdtracks for SU(N) 1 Stefan Keppeler Fachbereich Mathematik, Universität Tübingen Auf der Morgenstelle 10, 72076 Tübingen, Germany stefan.keppeler@uni-tuebingen.de

More information

arxiv: v2 [math-ph] 13 Apr 2018

arxiv: v2 [math-ph] 13 Apr 2018 a b arxiv:170707280v2 [math-ph] 1 Apr 2018 c d Birdtracks for SU(N) 1 Stefan Keppeler Fachbereich Mathematik, Universität Tübingen Auf der Morgenstelle 10, 72076 Tübingen, Germany stefankeppeler@uni-tuebingende

More information

Automated Computation of Born Matrix Elements in QCD

Automated Computation of Born Matrix Elements in QCD Automated Computation of Born Matrix Elements in QCD Christopher Schwan and Daniel Götz November 4, 2011 Outline Motivation Color(-Flow) Decomposition Berends-Giele-Type Recursion Relations (Daniel Götz)

More information

The Strong Interaction and LHC phenomenology

The Strong Interaction and LHC phenomenology The Strong Interaction and LHC phenomenology Juan Rojo STFC Rutherford Fellow University of Oxford Theoretical Physics Graduate School course Lecture 2: The QCD Lagrangian, Symmetries and Feynman Rules

More information

Parton shower evolution with subleading color

Parton shower evolution with subleading color Published for SISSA by Springer Received: February 22, 2012 Revised: April 27, 2012 Accepted: May 15, 2012 Published: June 7, 2012 Parton shower evolution with subleading color Zoltán Nagy a and Davison

More information

Breakdown of QCD coherence? arxiv:hep-ph/ v1 16 Dec 2006

Breakdown of QCD coherence? arxiv:hep-ph/ v1 16 Dec 2006 Breakdown of QCD coherence? arxiv:hep-ph/61v1 16 Dec 6 University of Manchester, U.K. E-mail: kyrieleis@hep.man.ac.uk J.R. Forshaw University of Manchester, U.K. E-mail: forshaw@mail.cern.ch M.H. Seymour

More information

Soft gluon resummation

Soft gluon resummation Soft gluon resummation Simone Marzani University of Manchester Institute on Parton Shower and Resummation DESY Hamburg, Germany May 2009 In collaboration with Jeff Forshaw and James Keates arxiv:0905.1350

More information

Jets at the LHC. New Possibilities. Jeppe R. Andersen in collaboration with Jennifer M. Smillie. Blois workshop, Dec

Jets at the LHC. New Possibilities. Jeppe R. Andersen in collaboration with Jennifer M. Smillie. Blois workshop, Dec Jets at the LHC New Possibilities Jeppe R. Andersen in collaboration with Jennifer M. Smillie Blois workshop, Dec 17 2011 Jeppe R. Andersen (CP 3 -Origins) Jets at the LHC Blois Workshop, Dec. 17 2011

More information

Understanding Parton Showers

Understanding Parton Showers Understanding Parton Showers Zoltán Nagy DESY in collaboration with Dave Soper Introduction Pile-up events 7 vertices 2009 single vertex reconstructed! 2011 2010 4 vertices 25 vertices 2012 Introduction

More information

Theoretical Predictions For Top Quark Pair Production At NLO QCD

Theoretical Predictions For Top Quark Pair Production At NLO QCD Theoretical Predictions For Top Quark Pair Production At NLO QCD Malgorzata Worek Wuppertal Uni. HP2: High Precision for Hard Processes, 4-7 September 2012, MPI, Munich 1 Motivations Successful running

More information

Tests of QCD Using Jets at CMS. Salim CERCI Adiyaman University On behalf of the CMS Collaboration IPM /10/2017

Tests of QCD Using Jets at CMS. Salim CERCI Adiyaman University On behalf of the CMS Collaboration IPM /10/2017 Tests of QCD Using Jets at CMS Salim CERCI Adiyaman University On behalf of the CMS Collaboration IPM-2017 24/10/2017 2/25 Outline Introduction QCD at LHC QCD measurements on the LHC data Jets The strong

More information

Vector-Boson-Fusion: Parton-shower and Anomalous-coupling Effects

Vector-Boson-Fusion: Parton-shower and Anomalous-coupling Effects Vector-Boson-Fusion: Parton-shower and Anomalous-coupling Effects Michael Rauch 25 Jul 2016 INSTITUTE FOR THEORETICAL PHYSICS KIT University of the State of Baden-uerttemberg and National Research Center

More information

Recent QCD results from ATLAS

Recent QCD results from ATLAS Recent QCD results from ATLAS PASCOS 2013 Vojtech Pleskot Charles University in Prague 21.11.2013 Introduction / Outline Soft QCD: Underlying event in jet events @7TeV (2010 data) Hard double parton interactions

More information

Measurement of photon production cross sections also in association with jets with the ATLAS detector

Measurement of photon production cross sections also in association with jets with the ATLAS detector Nuclear and Particle Physics Proceedings 00 (07) 6 Nuclear and Particle Physics Proceedings Measurement of photon production cross sections also in association with jets with the detector Sebastien Prince

More information

Introduction to Perturbative QCD

Introduction to Perturbative QCD Introduction to Perturbative QCD Lecture Jianwei Qiu Iowa State University/Argonne National Laboratory PHENIX Spinfest at RIKEN 007 June 11 - July 7, 007 RIKEN Wako Campus, Wako, Japan June 5, 007 1 Infrared

More information

Kern- und Teilchenphysik II Lecture 1: QCD

Kern- und Teilchenphysik II Lecture 1: QCD Kern- und Teilchenphysik II Lecture 1: QCD (adapted from the Handout of Prof. Mark Thomson) Prof. Nico Serra Dr. Marcin Chrzaszcz Dr. Annapaola De Cosa (guest lecturer) www.physik.uzh.ch/de/lehre/phy213/fs2017.html

More information

Multi-jet production and jet correlations at CMS

Multi-jet production and jet correlations at CMS Multi-jet production and jet correlations at Gábor I. Veres on behalf of the Collaboration CERN E-mail: gabor.veres@cern.ch Hadronic jet production at the LHC is an excellent testing ground for QCD. Essential

More information

Bound-State Effects on Kinematical Distributions of Top-Quarks at Hadron Colliders

Bound-State Effects on Kinematical Distributions of Top-Quarks at Hadron Colliders 1 Bound-State Effects on Kinematical Distributions of Top-Quarks at Hadron Colliders Hiroshi YOKOYA (CERN-Japan Fellow) based on arxiv:1007.0075 in collaboration with Y. Sumino (Tohoku univ.) 2 Outline

More information

Measurements of the production of a vector boson in association with jets in the ATLAS and CMS detectors

Measurements of the production of a vector boson in association with jets in the ATLAS and CMS detectors Measurements of the production of a vector boson in association with s in the ALAS and CMS detectors Vieri Candelise University of rieste and INFN rieste, Via Valerio 2, 3428, rieste, Italy Abstract. he

More information

You may not start to read the questions printed on the subsequent pages until instructed to do so by the Invigilator.

You may not start to read the questions printed on the subsequent pages until instructed to do so by the Invigilator. MATHEMATICAL TRIPOS Part III Monday 7 June, 004 1.30 to 4.30 PAPER 48 THE STANDARD MODEL Attempt THREE questions. There are four questions in total. The questions carry equal weight. You may not start

More information

Non-perturbative effects in transverse momentum distribution of electroweak bosons

Non-perturbative effects in transverse momentum distribution of electroweak bosons Non-perturbative effects in transverse momentum distribution of electroweak bosons Andrzej Siódmok a,e in collaboration with M. H. Seymour b,c & S. Gieseke b,d a Jagiellonian University, b CERN, c University

More information

arxiv: v1 [hep-ph] 29 Nov 2018

arxiv: v1 [hep-ph] 29 Nov 2018 November 30, 208 arxiv:8.223v [hep-ph] 29 Nov 208 Dimension six effective operators in t-channel single top production and decay at NLO in QCD Marc de Beurs Nikhef, Science Park 05, Amsterdam, The Netherlands

More information

Physique des Particules Avancées 2

Physique des Particules Avancées 2 Physique des Particules Avancées Interactions Fortes et Interactions Faibles Leçon 6 Les collisions p p (http://dpnc.unige.ch/~bravar/ppa/l6) enseignant Alessandro Bravar Alessandro.Bravar@unige.ch tél.:

More information

Higgs Pair Production: NLO Matching Uncertainties

Higgs Pair Production: NLO Matching Uncertainties Higgs Pair Production: NLO Matching Uncertainties Silvan Kuttimalai in collaboration with Stephen Jones November 7th, 2017 Higgs Couplings Workshop, Heidelberg Introduction Motivation: the Higgs Potential

More information

Properties of Proton-proton Collision and. Comparing Event Generators by Multi-jet Events

Properties of Proton-proton Collision and. Comparing Event Generators by Multi-jet Events Properties of Proton-proton Collision and Comparing Event Generators by Multi-jet Events Author: W. H. TANG 1 (Department of Physics, The Chinese University of Hong Kong) Supervisors: Z. L. MARSHALL 2,

More information

Transverse Energy-Energy Correlation on Hadron Collider. Deutsches Elektronen-Synchrotron

Transverse Energy-Energy Correlation on Hadron Collider. Deutsches Elektronen-Synchrotron Transverse Energy-Energy Correlation on Hadron Collider Wei Wang ( 王伟 ) Deutsches Elektronen-Synchrotron Work with Ahmed Ali, Fernando Barreiro, Javier Llorente arxiv: 1205.1689, Phys.Rev. D86, 114017(2012)

More information

Recent developments. Monte-Carlo Event Generators

Recent developments. Monte-Carlo Event Generators Recent developments in Monte-Carlo Event Generators Marek Schönherr Universität Zürich ISMD 205 Wildbad Kreuth Marek Schönherr /28 Contents Parton shower developments Higher precision in parton showers

More information

Coulomb gluons and colour evolution

Coulomb gluons and colour evolution Coulomb gluons and colour evolution René Ángeles-Martínez in collaboration with Jeff Forshaw Mike Seymour JHEP 1512 (2015) 091 & arxiv:1602.00623 (accepted for publication) 1 DPyC, BUAP 2016 In this talk:

More information

Coulomb gluons and colour evolution

Coulomb gluons and colour evolution Coulomb gluons and colour evolution René Ángeles-Martínez in collaboration with Jeff Forshaw Mike Seymour JHEP 1512 (2015) 091 & arxiv:1602.00623 (accepted for publication) DPyC, BUAP 2016 In this talk:

More information

Top production measurements using the ATLAS detector at the LHC

Top production measurements using the ATLAS detector at the LHC Top production measurements using the ATLAS detector at the LHC INFN, Sezione di Bologna and University of Bologna E-mail: romano@bo.infn.it This paper is an overview of recent results on top-quark production

More information

An introduction to medium induced gluon radiation. Edmond Iancu IPhT Saclay & CNRS

An introduction to medium induced gluon radiation. Edmond Iancu IPhT Saclay & CNRS Edmond Iancu IPhT Saclay & CNRS a review of some relatively old stuff (BDMPS Z, 995) & original work with J. Casalderrey Solana (arxiv:6.3864) June 24th, 2 Motivation 2 Antenna pattern 3 BDMPS Z 4 Interference

More information

July 8, 2015, Pittsburgh. Jets. Zoltan Nagy DESY

July 8, 2015, Pittsburgh. Jets. Zoltan Nagy DESY July 8, 2015, Pittsburgh Jets Zoltan Nagy DESY What are Jets? A di-jet ATLAS event A multi-jet (6-jet) event What are Jets? What are Jets? The pt is concentrated in a few narrow sprays of particles These

More information

Constraints on Higgs-boson width using H*(125) VV events

Constraints on Higgs-boson width using H*(125) VV events Constraints on Higgs-boson width using H*(125) VV events Roberto Covarelli ( University / INFN of Torino ) on behalf of the CMS and ATLAS collaborations 25th International Workshop on Weak Interactions

More information

AN INTRODUCTION TO QCD

AN INTRODUCTION TO QCD AN INTRODUCTION TO QCD Frank Petriello Northwestern U. & ANL TASI 2013: The Higgs Boson and Beyond June 3-7, 2013 1 Outline We ll begin with motivation for the continued study of QCD, especially in the

More information

Particle Physics. Lecture 11: Mesons and Baryons

Particle Physics. Lecture 11: Mesons and Baryons Particle Physics Lecture 11: Mesons and Baryons Measuring Jets Fragmentation Mesons and Baryons Isospin and hypercharge SU(3) flavour symmetry Heavy Quark states 1 From Tuesday: Summary In QCD, the coupling

More information

QCD and Rescattering in Nuclear Targets Lecture 2

QCD and Rescattering in Nuclear Targets Lecture 2 QCD and Rescattering in Nuclear Targets Lecture Jianwei Qiu Iowa State University The 1 st Annual Hampton University Graduate Studies Program (HUGS 006) June 5-3, 006 Jefferson Lab, Newport News, Virginia

More information

Fiducial cross sections for Higgs boson production in association with a jet at next-to-next-to-leading order in QCD. Abstract

Fiducial cross sections for Higgs boson production in association with a jet at next-to-next-to-leading order in QCD. Abstract CERN-PH-TH-2015-192 TTP15-030 Fiducial cross sections for Higgs boson production in association with a jet at next-to-next-to-leading order in QCD Fabrizio Caola, 1, Kirill Melnikov, 2, and Markus Schulze

More information

Atlas results on diffraction

Atlas results on diffraction Atlas results on diffraction Alessia Bruni INFN Bologna, Italy for the ATLAS collaboration Rencontres du Viet Nam 14th Workshop on Elastic and Diffractive Scattering Qui Nhon, 16/12/2011 EDS 2011 Alessia

More information

from Klaus Rabbertz, KIT Proton Structure (PDF) Proton Structure (PDF) Klaus Rabbertz Status of αs Determinations Mainz, Germany,

from Klaus Rabbertz, KIT Proton Structure (PDF) Proton Structure (PDF) Klaus Rabbertz Status of αs Determinations Mainz, Germany, High precision fundamental constants at the TeV scale from Proton Structure (PDF) Proton Structure (PDF), KIT 1 Outline 2012: No LHC results yet Motivation PDG2012 Jet energy scale αs from jet cross sections

More information

Measurement of the jet production properties at the LHC with the ATLAS Detector

Measurement of the jet production properties at the LHC with the ATLAS Detector Measurement of the jet production properties at the LHC with the ALAS Detector Stanislav okar Comenius University, Bratislava On behalf of the ALAS collaboration Different features of the jet production

More information

GROUP THEORY PRIMER. New terms: tensor, rank k tensor, Young tableau, Young diagram, hook, hook length, factors over hooks rule

GROUP THEORY PRIMER. New terms: tensor, rank k tensor, Young tableau, Young diagram, hook, hook length, factors over hooks rule GROUP THEORY PRIMER New terms: tensor, rank k tensor, Young tableau, Young diagram, hook, hook length, factors over hooks rule 1. Tensor methods for su(n) To study some aspects of representations of a

More information

Results on QCD jet production at the LHC (incl. Heavy flavours)

Results on QCD jet production at the LHC (incl. Heavy flavours) Results on QCD jet production at the LHC (incl. Heavy flavours) R. Seuster (TRIUMF) On behalf of the ATLAS and CMS collaborations Recontres du Vietnam August 11th 17th, 2013 Windows on the Universe Outline

More information

Bound-state effects in ttbar production at the LHC

Bound-state effects in ttbar production at the LHC 1 Bound-state effects in ttbar production at the LHC Hiroshi YOKOYA (National Taiwan University) based on works in collaboration with K.Hagiwara(KEK) and Y.Sumino(Tohoku U) GGI workshop, Firenze, 2011.09.28

More information

Higgs + Multi-jets in Gluon Fusion

Higgs + Multi-jets in Gluon Fusion Higgs + Multi-jets in Gluon Fusion Nicolas Greiner DESY In collaboration with S.Hoeche, G.Luisoni, M.Schoenherr, J.Winter, V. Yundin arxiv:1506.01016 Higher order corrections in Higgs physics > Higher

More information

Miguel Villaplana Università degli Studi e INFN Milano. on behalf of the ATLAS Collaboration. September 11, 2017

Miguel Villaplana Università degli Studi e INFN Milano. on behalf of the ATLAS Collaboration. September 11, 2017 Measurement of photon (also +jets) production cross sections, jets production cross sections and extraction of the strong coupling constant ISMD2017 Tlaxcala City, Mexico Miguel Villaplana Università degli

More information

Kern- und Teilchenphysik I Lecture 13:Quarks and QCD

Kern- und Teilchenphysik I Lecture 13:Quarks and QCD Kern- und Teilchenphysik I Lecture 13:Quarks and QCD (adapted from the Handout of Prof. Mark Thomson) Prof. Nico Serra Dr. Patrick Owen, Dr. Silva Coutinho http://www.physik.uzh.ch/de/lehre/phy211/hs2016.html

More information

A complete NLO calculation of the J/ψ production at Tevatron and LHC In collaboration with Wang Kai and Chao Kuang-Ta

A complete NLO calculation of the J/ψ production at Tevatron and LHC In collaboration with Wang Kai and Chao Kuang-Ta A complete NLO calculation of the J/ψ production at Tevatron and LHC Ma Yan-Qing ( 马滟青 ) Department of physics, Peking University yqma.cn@gmail.com In collaboration with Wang Kai and Chao Kuang-Ta p.1

More information

arxiv: v1 [hep-ph] 3 Jul 2010

arxiv: v1 [hep-ph] 3 Jul 2010 arxiv:1007.0498v1 [hep-ph 3 Jul 2010 Single-top production with the POWHEG method IPPP, Durham University E-mail: emanuele.re@durham.ac.uk We describe briefly the POWHEG method and present results for

More information

The Higgs pt distribution

The Higgs pt distribution The Higgs pt distribution Chris Wever (TUM) In collaboration with: F. Caola, K. Kudashkin, J. Lindert, K. Melnikov, P. Monni, L. Tancredi GGI: Amplitudes in the LHC era, Florence 16 Oktober, 2018 Outline

More information

Power corrections to jet distributions at hadron colliders

Power corrections to jet distributions at hadron colliders Power corrections to jet distributions at hadron colliders Lorenzo Magnea Università di Torino INFN, Sezione di Torino Work in collaboration with: M. Cacciari, M. Dasgupta, G. Salam. DIS 7 Munich 8//7

More information

Study of Higgs Boson Decaying to Four Muons at s =14 TeV

Study of Higgs Boson Decaying to Four Muons at s =14 TeV Study of Higgs Boson Decaying to Four Muons at s =14 TeV R.M. Aly 1, A.A. Abdelalim 1,2, M.N.El-Bakrey 1 and A. Mahrous 1 1 Department of physics, Faculty of science, Helwan University, Cairo, Egypt. 2

More information

EW theoretical uncertainties on the W mass measurement

EW theoretical uncertainties on the W mass measurement EW theoretical uncertainties on the W mass measurement Luca Barze 1, Carlo Carloni Calame 2, Homero Martinez 3, Guido Montagna 2, Oreste Nicrosini 3, Fulvio Piccinini 3, Alessandro Vicini 4 1 CERN 2 Universita

More information

Lecture 10. September 28, 2017

Lecture 10. September 28, 2017 Lecture 10 September 28, 2017 The Standard Model s QCD theory Comments on QED calculations Ø The general approach using Feynman diagrams Ø Example of a LO calculation Ø Higher order calculations and running

More information

Department of Physics and Astronomy 1082 Malott,1251 Wescoe Hall Dr. Lawrence, KS

Department of Physics and Astronomy 1082 Malott,1251 Wescoe Hall Dr. Lawrence, KS Anomalous quartic γγγγ coupling studies using proton tagging at the LHC Department of Physics and Astronomy 8 Malott,5 Wescoe Hall Dr. Lawrence, KS 66045-758 E-mail: christophe.royon@ku.edu We describe

More information

CP violation in top physics*

CP violation in top physics* CP violation in top physics* CP violation from new physics in top-quark pair production and decay with T-odd correlations one of my first papers with John didn t get all the details right... T-odd observables

More information

Beyond Feynman Diagrams Lecture 2. Lance Dixon Academic Training Lectures CERN April 24-26, 2013

Beyond Feynman Diagrams Lecture 2. Lance Dixon Academic Training Lectures CERN April 24-26, 2013 Beyond Feynman Diagrams Lecture 2 Lance Dixon Academic Training Lectures CERN April 24-26, 2013 Modern methods for trees 1. Color organization (briefly) 2. Spinor variables 3. Simple examples 4. Factorization

More information

W/Z + jets and W/Z + heavy flavor production at the LHC

W/Z + jets and W/Z + heavy flavor production at the LHC W/Z + jets and W/Z + heavy flavor production at the LHC A. Paramonov (ANL) on behalf of the ATLAS and CMS collaborations Moriond QCD 2012 Motivation for studies of jets produced with a W or Z boson Standard

More information

Top quark mass at ATLAS and CMS

Top quark mass at ATLAS and CMS Top quark mass at ATLAS and CMS (Introduction) Direct measurements Template/Ideogram based Indirect measurements Unfolded shapes/cross sections Conclusions & Outlook Andreas Jung for the ATLAS & CMS collaboration

More information

Recent developments in the POWHEG BOX

Recent developments in the POWHEG BOX Recent developments in the POWHEG BOX Emanuele Re IPPP, Durham University Standard Model @ LHC Durham, 12 April 2011 in collaboration with S. Alioli, K. Hamilton, P. Nason and C. Oleari Outline Quick description

More information

Multiple Parton Interactions Physics

Multiple Parton Interactions Physics Some entertaining aspects of Multiple Parton Interactions Physics Yuri Dokshitzer LPTHE, Jussieu, Paris & PNPI, St Petersburg GGI 13.09 2011 Multi-Parton Interactions work in collaboration with B.Blok,

More information

João Pires Universita di Milano-Bicocca and Universita di Genova, INFN sezione di Genova. HP September 2014 Florence, Italy

João Pires Universita di Milano-Bicocca and Universita di Genova, INFN sezione di Genova. HP September 2014 Florence, Italy Jets in pp at NNLO João Pires Universita di Milano-Bicocca and Universita di Genova, INFN sezione di Genova HP.5-5 September 014 Florence, Italy based on: Second order QCD corrections to gluonic jet production

More information

Higgs Production at LHC

Higgs Production at LHC Higgs Production at LHC Vittorio Del Duca INFN Torino Havana 3 April 2006 1 In proton collisions at 14 TeV, and for the Higgs is produced mostly via M H > 100 GeV gluon fusion gg H largest rate for all

More information

Measurement of t-channel single top quark production in pp collisions

Measurement of t-channel single top quark production in pp collisions Measurement of t-channel single top quark production in pp collisions (on behalf of the CMS collaboration) INFN-Napoli & Università della Basilicata E-mail: Francesco.Fabozzi@cern.ch Measurements of t-channel

More information

LHCP QCD at the Tevatron. Rick Field University of Florida (for the CDF & D0 Collaborations) Outline of Talk. with help from Christina Mesropian

LHCP QCD at the Tevatron. Rick Field University of Florida (for the CDF & D0 Collaborations) Outline of Talk. with help from Christina Mesropian with help from Christina Mesropian QCD at the Tevatron Rick Field University of Florida (for the CDF & D0 Collaborations) Outline of Talk D0 Photon + Jet Measurements. CDF W/Z + Upsilon Search. CDF Measurements

More information

Single inclusive jet production at very forward rapidity in proton-proton collisions with s = 7 and 13 TeV

Single inclusive jet production at very forward rapidity in proton-proton collisions with s = 7 and 13 TeV production at very forward rapidity in proton-proton collisions with s = 7 and ev Instytut izyki Jadrowej, Radzikowskiego, - Krakow, Poland E-mail: krzysztof.kutak@ifj.edu.pl Hans Van Haevermaet Particle

More information

Factorization and Fully Unintegrated Factorization

Factorization and Fully Unintegrated Factorization Factorization and Fully Unintegrated Factorization Ted C. Rogers Vrije Universiteit Amsterdam trogers@few.vu.nl Factorization and unintegrated PDFs: open problems Fully unintegrated factorization INT 09

More information

2. HEAVY QUARK PRODUCTION

2. HEAVY QUARK PRODUCTION 2. HEAVY QUARK PRODUCTION In this chapter a brief overview of the theoretical and experimental knowledge of heavy quark production is given. In particular the production of open beauty and J/ψ in hadronic

More information

Event shapes in hadronic collisions

Event shapes in hadronic collisions Event shapes in hadronic collisions Andrea Banfi ETH Zürich SM@LHC - Durham - April Event shapes at hadron colliders Event shapes are combinations of hadron momenta in a number related to the geometry

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

Precision Jet Physics At the LHC

Precision Jet Physics At the LHC Precision Jet Physics At the LHC Matthew Schwartz Harvard University JETS AT THE LHC An (almost) universal feature of SUSY is and Source: Atlas TDR SIGNAL VS. BACKGROUND Source: Atlas TDR Can we trust

More information

J. C. Vasquez CCTVal & USM

J. C. Vasquez CCTVal & USM Maorana Higgses at Colliders arxiv:1612.06840 J. C. Vasquez CCTVal & USM ( Work in collaboration with F. esti and M. emevsek) University of Massachusetts, October 2017 Outline The minimal LR model Decay

More information

QCD Phenomenology at High Energy

QCD Phenomenology at High Energy QCD Phenomenology at High Energy CERN Academic Training Lectures 18-21 February 2008 Lecture 5: Matching Fixed Order Matrix Elements with Parton Showers ME-PS Matching Two rather different objectives:

More information

PoS(LHC07)034. Dijet correlations in pp collisions at RHIC

PoS(LHC07)034. Dijet correlations in pp collisions at RHIC Institute of Nuclear Physics, PL-31-342 Cracow, Poland and University of Rzeszów, PL-35-959 Rzeszów, Poland E-mail: Antoni.Szczurek@ifj.edu.pl Anna Rybarska Institute of Nuclear Physics, PL-31-342 Cracow,

More information

WW scattering at the LHC Part 2 simulations

WW scattering at the LHC Part 2 simulations WW scattering at the LHC Part 2 simulations Jan Kalinowski, Stefan Pokorski, Janusz Rosiek (IFT UW) Krzysztof Doroba (IFD UW), Michał Szleper (IPJ), Sławek Tkaczyk (Fermilab) Cracow Warsaw LHC Workshop

More information

What are the Low-Q and Large-x Boundaries of Collinear QCD Factorization Theorems?

What are the Low-Q and Large-x Boundaries of Collinear QCD Factorization Theorems? What are the Low-Q and Large-x Boundaries of Collinear QCD Factorization Theorems? Presented by Eric Moffat Paper written in collaboration with Wally Melnitchouk, Ted Rogers, and Nobuo Sato arxiv:1702.03955

More information

Event Generator Physics 2

Event Generator Physics 2 Event Generator Physics University of Cambridge 1st MCnet School, IPPP Durham 18 th 20 th April 2007 Structure of LHC Events 1. Hard process 2. Parton shower 3. Hadronization 4. Underlying event Lecture

More information

NLM introduction and wishlist

NLM introduction and wishlist 1. NLM introduction and wishlist he LHC will be a very complex environment with most of the interesting physics signals, and their backgrounds, consisting of multi-parton (and lepton/photon) final states.

More information

Higgs boson signal and background in MCFM

Higgs boson signal and background in MCFM Higgs boson signal and background in MCFM Zurich, January 11, 2012 Keith Ellis, Fermilab John Campbell, RKE and Ciaran Williams arxiv:1105.0020, 1107.5569 [hep-ph] MCFM MCFM is a unified approach to NLO

More information

m H tanβ 30 LHC(40fb -1 ): LEP2: e + e Zh m A (GeV)

m H tanβ 30 LHC(40fb -1 ): LEP2: e + e Zh m A (GeV) Charged Higgs Bosons Production in Bottom-Gluon Fusion Tilman Plehn, Madison MSSM Higgs Bosons at the LHC Why Bottom Parton Description? QCD Corrections -QCD Corrections MSSM Higgs Bosons at the LHC MSSM

More information

Automation of NLO computations using the FKS subtraction method

Automation of NLO computations using the FKS subtraction method Automation of NLO computations using the FKS subtraction method Institute for Theoretical Physics, Universität Zürich E-mail: frederix@physik.uzh.ch In this talk the FKS subtraction method for next-to-leading

More information

Introduction to the physics of hard probes in hadron collisions: lecture II. Michelangelo Mangano TH Division, CERN

Introduction to the physics of hard probes in hadron collisions: lecture II. Michelangelo Mangano TH Division, CERN Introduction to the physics of hard probes in hadron collisions: lecture II Michelangelo Mangano TH Division, CERN michelangelo.mangano@cern.ch Jet production gg gg 2 3 2 4 3 2 1 4 1 3 1 4 gg qq _ qg qg

More information

The Heavy Quark Search at the LHC

The Heavy Quark Search at the LHC The Heavy Quark Search at the LHC The Heavy Quark Search at the LHC Backgrounds: estimating and suppressing tt, multijets,... jet mass technique NLO effects matrix elements for extra jets initial state

More information

Renormalization of three-quark operators for baryon distribution amplitudes

Renormalization of three-quark operators for baryon distribution amplitudes Renormalization of three-quark operators for baryon distribution amplitudes Institut für Theoretische Physik July 25, 2016 Renormalization of three-quark operators for baryon distribution amplitudes 1

More information

Azimuthal Correlations for Inclusive 2-jet, 3-jet and 4-jet events in pp collisions at s = 13 TeV with CMS

Azimuthal Correlations for Inclusive 2-jet, 3-jet and 4-jet events in pp collisions at s = 13 TeV with CMS Azimuthal Correlations for Inclusive 2-jet, 3-jet and 4-jet events in pp collisions at s = 13 TeV with CMS Paris Gianneios University of Ioannina 29 th March 2018, HEP Athens Outline 1 2 3 4 5 CMS Detector

More information

Forward physics with proton tagging at the LHC

Forward physics with proton tagging at the LHC Forward physics with proton tagging at the LHC Christophe Royon University of Kansas, Lawrence, USA LHC Forward Physics Workshop, March 0-3, Madrid, Spain QCD: structure of pomeron, jet gap jet Photon

More information

Study of Inclusive Jets Production in ep Interactions at HERA

Study of Inclusive Jets Production in ep Interactions at HERA HEP 003 Europhysics Conference in Aachen, Germany Study of Inclusive Jets Production in ep Interactions at HERA Mónica Luisa Vázquez Acosta Universidad Autónoma de Madrid On behalf of the ZEUS & H1 Collaborations

More information

Measurement of multijets and the internal structure of jets at ATLAS

Measurement of multijets and the internal structure of jets at ATLAS Measurement of multijets and the internal structure of jets at ALAS Bilge M. Demirköz, on behalf of the ALAS Collaboration Institut de Fisica d Altes Energies, Barcelona, SPAIN also at Middle East echnical

More information

Experiences on QCD Monte Carlo simulations: a user point of view on the inclusive jet cross-section simulations

Experiences on QCD Monte Carlo simulations: a user point of view on the inclusive jet cross-section simulations Journal of Physics: Conference Series Experiences on QCD Monte Carlo simulations: a user point of view on the inclusive jet cross-section simulations Related content - Measurement of multi-jet cross-sections

More information

Uncertainties in NLO+PS matched calculations of inclusive jet and dijet production

Uncertainties in NLO+PS matched calculations of inclusive jet and dijet production Uncertainties in NLO+PS matched calculations of inclusive jet and dijet production Institute for Particle Physics Phenomenology 26/09/202 arxiv:.220, arxiv:208.285 Uncertainties in NLO+PS matched calculations

More information

QCD at the LHC Joey Huston Michigan State University

QCD at the LHC Joey Huston Michigan State University QCD at the LHC Joey Huston Michigan State University Some references CHS over 1500 downloads so far arxiv:07122447 Dec 14, 2007 goal is to provide a reasonably global picture of LHC calculations (with

More information