Skip to main content

Strong CP problem

Strong CP problem
Unsolved problems in physics Why is the strong nuclear interaction force CP-invariant?    

In particle physics, the strong CP problem is the puzzling question of why quantum chromodynamics (QCD) does not seem to break the CP-symmetry.

QCD does not violate the CP-symmetry as easily as the electroweak theory; unlike the electroweak theory in which the gauge fields couple to chiral currents constructed from the fermionic fields, the gluons couple to vector currents. Experiments do not indicate any CP violation in the QCD sector. For example, a generic CP violation in the strongly interacting sector would create the electric dipole moment of the neutron which would be comparable to 10−18 e·m while the experimental upper bound is roughly a trillion times smaller.

This is a problem because at the end, there are natural terms in the QCD Lagrangian that are able to break the CP-symmetry.

    {\mathcal L} = -\frac{1}{4} F_{\mu\nu}F^{\mu\nu}-\frac{n_f g^2\theta}{32\pi^2} F_{\mu\nu}\tilde F^{\mu\nu}+\bar \psi(i\gamma^\mu D_\mu - m e^{i\theta'\gamma_5})\psi

{\mathcal L} = -\frac{1}{4} F_{\mu\nu}F^{\mu\nu}-\frac{n_f g^2\theta}{32\pi^2}
F_{\mu\nu}\tilde F^{\mu\nu}+\bar \psi(i\gamma^\mu D_\mu - m
e^{i\theta'\gamma_5})\psi


For a nonzero choice of the θ angle and the chiral quark mass phase θ′ one expects the CP-symmetry to be violated. One usually assumes that the chiral quark mass phase can be converted to a contribution to the total effective \scriptstyle{\tilde\theta} angle, but it remains to be explained why this angle is extremely small instead of being of order one; the particular value of the θ angle that must be very close to zero (in this case) is an example of a fine-tuning problem in physics, and is typically solved by physics beyond the Standard Model.

There are several proposed solutions to solve the strong CP problem. The most well-known is Peccei–Quinn theory, involving new scalar particles called axions. A newer, more radical approach not requiring the axion is a theory involving two time dimensions first proposed in 1998 by Bars, Deliduman, and Andreev.[3]

The strong CP problem may also be solved within a theory of quantum gravity.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...