The first detection of high-energy neutrinos of cosmic origin in 2013 by the IceCube Neutrino Observatory opened a new window to the non-thermal processes in our universe. The first strong evidence for a cosmic neutrino component came from a search using data from May 2010 to April 2012 [35], where two shower-like events from interactions within the detector with energies above 1 PeV were discovered. A follow-up search for events starting in the detector with more than 30 TeV deposited energy that utilized the same dataset identified 25 additional high-energy events. The spectrum and zenith angle distribution of the events was incompatible with the hypothesis of an atmospheric origin at > \(4\sigma\). IceCube has since collected independent evidence for an astrophysical neutrino signal by analyzing different event signatures.
Starting Events
Neutrino interactions are identified in IceCube by searching for an interaction vertex within the instrumented volume. This search is sensitive to both shower-like and track-like events. Since the main background for this search is comprised of muons from CR air showers, the rejection strategy is to identify Cherenkov photons from a track entering the detector. For that, the outer parts of the instrumented volume are assigned to a “veto” region. An event is rejected if a certain number of Cherekov photons are found in this veto region at earlier times than the photons produced at the interaction vertex. The energy threshold for this analysis is about \(E_\nu \sim 30\) TeV.
Through-going muons
Muons produced in CC neutrino interactions far outside the detector can still reach the instrumented volume to produce track-like events. Even at 1 TeV a muon can penetrate several kilometers of ice before it stops and decays. This allows observation of high-energy neutrino interactions from a much larger volume than the instrumented one, thereby substantially increasing the effective area of the detector.
The spectral fit
The results of a combined analysis fits the neutrino flux to a power-law between 27 TeV and 2 PeV consistent with an unbroken power law with a best-fit spectral index given by:
However using only the high energy through-going muons (abouve 200 TeV) yields a preferred spectral index of \(-2.13\pm 0.13\)
The Search for Point Sources
In the case where the cosmic neutrino flux is dominated by bright individual sources, they should be detectable as a local excess of events on the sky with respect to the atmospheric neutrino and diffuse cosmic neutrino background. The sensitivity of a search for such features depends crucially on the precision by which the direction of the neutrinos can be reconstructed from the data, i.e. on the detector angular resolution. No indication for a neutrino point source has been found in the IceCube data so far. The null result of a point-source of neutrinos, can be transformed into an flux upper limit at a given confidence level. This upper limits represents the neutrino flux that we can be certain to exclude, since IceCube did not see a point source.
Source: IceCube
The Olbers’ Paradox
Altough the most famous formulation of the problem comes from Henrich Olbers (1826), probably it was Kepler in 1610 the first to note that the most obvious observation, the night sky is dark, has very important consequences.
The idea is quite simple, suppose there is a source population with typical luminosity \(L\) in ergs/s and a number density of \(n\), then the total power emitted per unit area will be:
\[ F = \int L n \frac{dV}{4\pi^2} = \frac{1}{4\pi}\int L n \mathrm{ d}\Omega \mathrm{ d}r\]
Integrating over all distances we can obtain the energy per steradian per second, and assuming the luminosity is independent of distance as well as number density we have that:
\[\frac{\mathrm{ d} F}{\mathrm{ d}\Omega} = \frac{1}{4\pi} L n \int_0^{\infty} \mathrm{ d}r \rightarrow \infty\]
The sky should be bright! The solution of this puzzle is the fact the Universe is dynamic and time dependent! In other words, if the Universe is expanding the radiation from increasingly distant sources is increasingly less. Also stars seems to have had a cosmological evolution, for example, there are more quasars per unit volume at \(z \sim 2\) than now.
Although the Olbers’ paradox is no more a paradox, it represents the problem that arises with neutrino astronomy. Since the extragalactic space is completely transparent for neutrinos, the flux of neutrinos that might arrive at Earth will have a significant contribution from very distant and faint sources. Let’s assume now a source population with typical neutrino luminosity \(L\nu(E)\) and with a number density population given by:
\[n(z) = n_0 (1+z)^m\]
where \(n_0\) is the local density of the source population, (ie the population close to our epoch \(z = 0\)). The parameter \(m\) describes the source cosmological evolution (ie, when sources to appear in the history of the Universe, and how they evolved). Typical values are \(m= 3\) for star–formation–like evolution and \(m=0\) for no evolution.
Since the Universe expands and sources move with the Huble flow we are going to use the comoving line of sight distance, defined as (see Lecture 2):
The expresion above needs an extra correction. We assumed that energy emitted by the source will be the same at the arrival, however energy will be red-shifted according to \(E_\nu (1 + z)\) so the formula it’s technically:
where the unit-less parameter \(\xi\) is the integral that contains information on the expansion and cosmological evolution of the sources and the spectral index of the sources defined as:
Where it will depend on the cosmic evolution of the sources. Typical star forming rate evolution (SFR) has an evolution of \(m = 3.4\) in our local universe $z<1 $ and \(m=-0.3\) for $ 1< z< 4$ and \(m=-3.5\) elsewhere.
Tutorial I: Calculate the value of \(\xi\)
We are going to calculate the value of the parameter \(\xi\) for different cosmological evolution of the sources. The SFR evolution is given by the following broken power law formula:
import numpy as npimport matplotlib.pylab as pltplt.rcParams['font.family'] ="STIXGeneral"plt.rcParams.update({'axes.labelsize': 20})plt.rcParams.update({'legend.fontsize': 20})plt.rcParams.update({'figure.figsize': [8, 6]})plt.rcParams['xtick.labelsize'] =18plt.rcParams['ytick.labelsize'] =18plt.rcParams['xtick.major.width'] =1.5plt.rcParams['xtick.minor.width'] =1plt.rcParams['xtick.major.pad'] =8plt.rcParams['xtick.direction'] ='in'plt.rcParams['ytick.major.size'] =10plt.rcParams['ytick.minor.size'] =5plt.rcParams['ytick.major.width'] =1.5plt.rcParams['ytick.minor.width'] =1plt.rcParams['ytick.major.pad'] =8plt.rcParams['ytick.direction'] ='in'plt.rcParams['legend.frameon'] =Falseplt.rcParams['lines.linewidth'] =1.5plt.rcParams['axes.linewidth'] =1.5def rho(z):if z <1.:return (1.+ z)**3.4elif z >=1.and z <=4.:return (1+1.)**3.4* ((1.+z)/(1.+1.))**-0.3else:return (1.+1.)**3.4*((1.+4.)/(1.+1.))**-0.3*((1.+z)/(1.+4.))**-3.5ax = plt.subplot(111)z = np.linspace(0, 7, 1000)vrho = np.vectorize(rho)ax.plot(z, vrho(z))ax.set_xlabel("z")ax.set_ylabel("$n_{SFR}(z)/n_0$")ax.grid()from astropy.cosmology import Planck13 as cosmofrom scipy import integratedef xi(z):return cosmo.H0.value/cosmo.H(z).value * rho(z) * (1+ z)**(-2)integral = integrate.quad(lambda z: xi(z), 0., np.inf)[0]print(r"$\xi$ = %.2f for an evolution of SFR"%(integral))integral = integrate.quad(lambda z: cosmo.H0.value/cosmo.H(z).value * (1+ z)**(-2), 0., 2)[0]print(r"$\xi$ = %.2f for no cosmological evolution up to redshift z < 2"%(integral))
$\xi$ = 2.39 for an evolution of SFR
$\xi$ = 0.48 for no cosmological evolution up to redshift z < 2
Therefore the parameter \(\xi\) varies between \(0.5\sim 3\). We can equate this total neutrino flux per steroradian to the flux observed by IceCube (assuming an spectral index of 2):
Constrains can also be obtained from the point-source limits. The argument is as follows, if the source population that is responsible of the diffuse astrophysical flux observed in IceCube, is rate (has a low density) then the closest of these sources should have provided a signal in the point-source analysis. Let’s assume that \(d\) is the distance to the nearest source for a source population with local density \(n_0\) so:
\[n_0 \frac{4}{3} \pi d^3 = 1\]
since there is 1 source in an sphere of radius \(d\). We can estimate the closest distance to a source of this population as:
\[ d = \left(\frac{1}{\frac{4}{3}\pi n_0}\right)^{1/3} \propto n_0^{-1/3}\]
and thus the estimated neutrino flux for this single point-source is: