Changes between Version 7 and Version 8 of Density


Ignore:
Timestamp:
Oct 24, 2025, 12:00:01 PM (5 days ago)
Author:
Durupt
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Density

    v7 v8  
    2424The user is then asked to edit the different cards needed for the run. The information for the density matrices computation is given in the reweight_card. Examples for different benchmark processes are given in https://arxiv.org/abs/2510.17730. At the end of the run, the density matrix for each event is written in the Les Houches Event (LHE) file.
    2525
    26 ==How to read the density matrices in the LHE file
     26== How to read the density matrices in the LHE file
    2727The LHE file can be read with the parser lhe_parser.py available in MadGraph. An example of code that would parse the density matrix value for each event is:
    2828
    29 {{{
     29{{{#!python
    3030import sys
    3131sys.path.append('PATH TO MADGRAPH')
     
    4242With this code, for each event of the file, you read the value `density` which contains the independent coefficients of the density matrix. The utility function `square_matrix` allows to write it in the usual matrix form needed for further analysis.
    4343
     44== Implementation of the quantum information obseravbles
     45Now that we have the density matrices for each event, we can compute any quantum information observable that we want. The library `Density_functions.py` contains a non-exaustive list of them that will be listed here and that can be called (example of the concurrence here) via.
     46{{{#!python
     47dens.Get_Concurrence(density)
     48}}}
     49We will now give a list of the different quantum information observables currently available in the library.
     50For more physical and more detailed descriptions of the observables, read https://arxiv.org/abs/2510.17730.
     51
     52=== Purity
     53
     54=== Concurrence
     55
     56=== Bell test
     57
     58=== D coefficients
     59
     60=== Entanglement of formation
     61
     62=== Magic
     63
     64=== Negativity
     65
     66=== Mana
     67
     68=== Peres-Horodecki criterion
     69
     70=== Trace distance
     71
     72=== Fidelity distance
     73