A-A-Abdelhamid / LLP_Sleptons_RPV_SUSY

Here you can find MadGraph5 cards, diagrams, logs, plots, and code used in the project
2 stars 1 forks source link

For my own reference #21

Open A-A-Abdelhamid opened 10 months ago

A-A-Abdelhamid commented 10 months ago

ε1 = 0.2 ε2 = 0.25 ε3 = 0.3

P(at least two leptons)= {ε1 ε2 ε3} + {ε1ε2} + {ε1ε3} + {ε2*ε3}

= {0.2 0.25 0.3} + { 0.2 0.25} + {0.2 0.3} + {0.25 * 0.3} = 0.2

Using the formula manually and by code give the result as 0.155

1 - P [None passing] - [Only ONE only passing] = 1- [(1-ε1) (1-ε2) (1-ε3)] - [(ε1 (1-ε2) (1-ε3)) +(ε2 (1-ε1) (1-ε3)) +(ε3 (1-ε1) (1-ε2))] = 1- [(1-0.2)(1-0.25)(1-0.3)] - (0.2(1-0.25)(1-0.3)) - (0.25(1-0.2)(1-0.3)) - (0.3(1-0.2)(1-0.25))

= 0.155

the code gives the result as 0.15500000000000003

ε1 = 0.2 ε2 = 0.25 ε3 = 0.3 ε4 = 0.25

P(at least two leptons)= {ε1 ε2 ε3}+ {ε1 ε2 ε3ε4 } + {ε1ε2} + {ε1ε3} + {ε2ε3}