Nuclear Geometry and Characterization of the Quark Gluon Plasma#

https://raw.githubusercontent.com/illinois-ipaml/MachineLearningForPhysics/main/img/Project_NuclearGeometryQCD-Figure.jpg

Overview#

Collisions between two nuclei at ultra-relativistic energies are used to create the Quark-Gluon Plamsa (QGP)–a novel state of matter. In this project, you will learn a bit about what the QGP is and how to think about the geometry of collisions between two nuclei.

Data Sources#

File URLs

b=0 fm

b=6 fm

Questions#

In the previous project we discussed how the geometry of the nucleus is characterized in collisions between large nuclei. As we saw in that project, the shape of the overlap between two nuclei can be expanded in terms of eccentricities:

εn=r2cos(nϕ)2+r2sin(nϕ)2r2

(that project specifically looked at the cases were n=2 and n=3). Here we’re going to carry that a step further and ask how we can determine if the two shapes are correlated with each other.

First, we’re going to think of the shapes as determined by a vector εn=εneinΨn where the magnitude is just the εn above and the direction is given by the phase Ψn.

Question 01#

Generate and plot shapes for n=1 to 5 (one plot for each value of n). For example, for n=1 you would have f(x)=1+ε1cosϕ. Take each value of εn=0.1 for plotting purposes (you can do this with with python, demos, or any other tool…).

Read about the Quark Gluon Plasma (QGP) here. Write a short paragraph explaining the connection between the geometry, the measured Fourier coefficients and the QGP properties.

Question 02#

It’s an open question as to whether the angles various angles Ψn are correlated with each other (e.g. is Ψ2 correlated with Ψ3?).

Generate a bunch of particles (ϕ values) (say 50 particle per event and 1000 events) according to:

dNdϕ1+2v2cos(n(ϕΨ2))+2v3cos(3(ϕΨ3))

in two cases:

  • Case 1: where Ψ2=Ψ3 but Ψ2 is different in every event

  • Case 2: where Ψ2 and Ψ3 are independent of each other and different for every event

(let v2=0.2 and v3=0.1 that are the same for every event).

Write code to do a least-squares fit of the two-particle correlations for Case 1 and Case 2. Use the same principle as in the Week 11: $dNijdΔϕ1+n=12vnivnjcos(n(Δϕ))onlyinsteadofusingonlythen=2term,alsoaddthen=3$ term.

Question 03#

Do you get consistent answers for the fit parameters v2 and v3 between Case 1 and Case 2 when you fit ? Explain what you see.

Question 04#

The vn values of the particles are proportional to the corresponding εn values; for each n, vnεn. Write a Monte Carlo that generates values for v2 and v3 according to a Bivariate Gaussian distribution with five parameters v2 and σv2, v3 and σv3 and ρ, the correlation between v2 and v3.

Question 05#

Verify the Monte Carlo using the parameters:

  • v2=0.25

  • v3=0.18

  • σv2=0.05

  • σv3=0.05

  • for ρ of -1.0, 0.0, 0.5 and 1.0 and making a scatter plot of v2 vs v3.

One way to look for correlations between the flow harmonics is a technique called Symmetric Cumulants (SC). These quantities measure the correlation between the coefficients of two separate orders n and m. The SC between orders m and n can be written as $SC(n,m)=cos(mϕi+nϕjmϕknϕl)cosm(ϕiϕj)cosn(ϕiϕj)=vn2vm2vn2vm2$

Question 06#

Symmetric cumulants are time consuming to calculate from particle angles due to the four-particle correlation cos(mϕi+nϕjmϕknϕl) (in practice people use a different technique that avoids directly running through these combinations).

However, with the Monte Carlo above, it is possible to calculate the SC(3,2) using the v2 and v3 values you calculated. Do thta for each value of ρ and use a bootstrap method to get the uncertainties. Plot the value of the SC(n,m) as a function of ρ.


References#

[1] C. Loizides, J. Kamin, D. d’Enterria, “Improved Monte Carlo Glauber predictions at present and future nuclear colliders”, Phys.Rev.C 97 (2018) 5, 054910, Phys.Rev.C 99 (2019) 1, 019901 (erratum), e-Print: 1710.07098 [nucl-ex]

[2] B.Alver, G.Roland, “Collision geometry fluctuations and triangular flow in heavy-ion collisions”, Phys.Rev.C 81 (2010) 054905, Phys.Rev.C 82 (2010) 039903 (erratum), e-Print: 1003.0194 [nucl-th]


Acknowledgements#

  • Initial version: Anne Sickles

© Copyright 2023