The following is an extension of the Mathematica application Quantum Algebra.

The extended version of the application Quantum Algebra can be found here.


The Problem

In my research on quantum physics, I also study the book "Student Friendly Quantum Field Theory" by Robert D. Klauber. This led to the question or idea of ​​whether some of the calculations listed could not be facilitated by Mathematica.

As a Mathematica package to support the calculations, Quantum Algebra seemed to me to be suitable - at least somewhat. But some of the mathematical symbols used in the book were not supported by Quantum Algebra. Quantum algebra had to be extended. So an extended application resulted. This extension and what it does should be presented below.

Essentially these are summation, integration and derivation symbols, the operator notation already present in the basic package and the support of matrices. All are supported by appropriate rules for simplification and reshaping - just as you would do manually.


Notations

The Quantum Algebra extension uses a number of notations to improve the readability of expressions. They supplement the notations that already exist in the basic package. This also takes into account the need for documentation.

Notations of the basic package:

  • Operator Notation
  • Superdagger
  • Centerdot

Additional Notations

  • Integral
  • Total Notation
  • Partial Derivative
  • Small Circle

Overview

 

Name Sample Notation FullForm - Simplified or Complete Expression
Operator
d ^ p 1 , p 2 , p 3 r ,
Operator[d, "H", List[QASimplescript[p, 1, False], QASimplescript[p, 2, False], QASimplescript[p, 3, False]], List[r]]
SuperDagger
d ^ p 1 , p 2 , p 3 r ,
Hermitian[Operator[d, List[QASimplescript[p, 1, False], QASimplescript[p, 2, False], QASimplescript[p, 3, False]], List[r]]
CenterDot
d ^ p 1 , p 2 , p 3 1 , d ^ p 1 , p 2 , p 3 1
NonCommutativeMultiply[Operator[d,"H",List[QASimplescript[p, 1, False], QASimplescript[p, 2, False], QASimplescript[p, 3, False]], List[1]], Operator[d, List[QASimplescript[p, 1, False], QASimplescript[p, 2, False], QASimplescript[p, 3, False]], List[1]]]
QAIntegrate
P i_ := V P i 3 x
QAIntegrate[QASimplescript[p, i, False], V, 3, x]
QASum
p r = 1 2 ( sqrt [ m / ( V p 0 ) ] d ^ p 1 , p 2 , p 3 r , v r Exp [ + exp ] )
QASum[Operator[d, "H", List[QASimplescript[p, 1, False], QASimplescript[p, 2, False], QASimplescript[p, 3, False]], List[r]],p]
QAD
D x i ( Ψ // Evaluate )
QAD[\[psi] // Evaluate, QASimplescript[x, i, False]]
SmallCircle
ma1 ma2
 SmallCircle[ma1, ma2]

 


Syntax and Semantics

In the following, the notations, their associated FullForm constructs and the semantics are shown.

  1.  Operator
    1. An Operator has the following Full Form: Operator[Name, "H", { Lower Indices }, { Upper Indices }]
      The lists of upper and lower indices may also be empty, the indicator for an adjoint operator "H" may be missing.
    2. Sample notation
      See Notations, Operator, Sample notation
    3. Semantics
      Name indicates the name of the operator, "H" indicates the associated adjoint operator, the two lists contain the lower and upper indices of the notation. The addition to Quantum Algebra often makes use of the convention that the lower indices include wavenumber or momentum variables in subscript representation. The 3 - momentum would consist of the indices p1, p2, p3 and would be supplemented by p0 as energy for the 4 - momentum.
  2. Hermitian
    1. Full Form Syntax
      The Hermitian function determines the adjoint operator for an operator, operator expression or an operator matrix:
      op2 = Hermitian[op1];
    2. Sample Notation
      The super-dagger symbol on an expression can either indicate an adjoint operator or cause the generation of the adjoint of a complete expression, see e.g. Klein - Gordon - Equation a.
    3. Semantics
      An adjoint operator is a mirror operator for a dual space (see literature on quantum mechanics).
  3. NonCommutativeMultiply
    1. Full Form Syntax
      Operators in quantum mechanics are generally noncommutative. Their multiplication therefore requires an extra symbol:
      NonCommutativeMultiply[op1, op2] or op1 ** op2 or use the shortcut icon CenterDot.
    2. Sample Notations
      See e.g. Notations, CenterDot.
    3. Semantics
      The noncommutative multiplicative link.
  4. QAIntegrate
    1. Full Form Syntax
      QAIntegrate[Integrand, Area, Dim, Var(s)]
    2. Sample Notation
      See e.g. Notations, QAIntegrate.
    3. Semantics
      This is an integral over a generally multidimensional area Area. Dim is the dimension and Var is an integration variable. You can also specify more than one, with the associated notation supporting a maximum of 2. The range may either be finite - a symbol (e.g., V) is given - or infinity - here the infinity symbol is given.
  5. QASum
    1. Full Form Syntax
      The syntax is similar to integration, with no scope or dimension. In the end, it is always summed from -Infinity to + Infinity, and the dimensionality is assumed to be 3.
      QASum[Expression, Var(s)]
    2. Sample Notation
      See e.g. Notations, QASum.
    3. Semantics
      This is a summation over an expression, the 3-dimensional variable Var runs over all integer values. You can also specify 2 of them or the expression will be simplified accordingly.
  6. QAD
    1. Full Form Syntax
      QAD[Quexp, Var]
    2. Sample Notation
      See e.g. Notations, QAD
    3. Semantics
      This is a derivative of quantum expressions Quexp to variables Var.

Implementation

The rules for making calculations and simplifications can be divided into different categories:

  1. Automatic rules
    These are applied automatically after initialization and usually result in a simplification of the expression.
  2. "Replacement rules"
    There are predefined and freely definable (application specific) substitution rules. A set of such rules is generally summarized under a name. The reason that they are not automatically executed is that the benefits are typically situational. So it may be desirable that sums are summarized or even divided, because one or the other leads to a simplification.

    contracted = p c ^ p 1 , p 2 , p 3 1 + p d ^ p 1 , p 2 , p 3 2 // QAReplace ["SumContract"] p ( c ^ p 1 , p 2 , p 3 1 + d ^ p 1 , p 2 , p 3 2 ) contracted // QAReplace ["SumExpand"] p c ^ p 1 , p 2 , p 3 1 + p d ^ p 1 , p 2 , p 3 2

  3. Assumptions
    The Mathematica function Simplify can perform simplifications based on certain assumptions. To make this more manageable, sets of assumptions can be grouped under one name. They can then be referenced under this name.
    For example: exp // QASimplify["Dirac"]
    The expression exp is simplified here on the assumptions of the name "Dirac".
    Assumptions are in general application-specific.

Unit Tests

The Quantum Algebra supplement is accompanied by a series of unit tests. They are intended to ensure that changes to the code remain executable.

At the same time, it helps to track which rules lead to which simplifications.

(* Combine product of Integrations *)
Test[
    QAIntegrate[Subscript[x, 1], V, 3, x] QAIntegrate[Subscript[y, 2], V, 3, y],
    QAIntegrate[Subscript[x, 1] Subscript[y, 2], V, 3, x, y],
    TestID->"Integrate-20181213-P3R4W5"
]

(* Apply DiracDelta in Integrate about 2 integration ranges *)
Test[
    QAIntegrate[
        Subscript[x, 1] Subscript[y, 2] * 
        DiracDelta[Subscript[x, 1] - Subscript[y, 1], Subscript[x, 2] - Subscript[y, 2], Subscript[x, 3] - Subscript[y, 3]], 
        V, 3, x, y],
    QAIntegrate[Subscript[x, 1] Subscript[x, 2], V, 3, x],
    TestID->"Integrate-20181213-N8K6H2"
]

(* Integrate about Exponential resolved to DiracDelta *)
Test[
    QAIntegrate[
        Power[E, I (Subscript[k, 1] (Subscript[x, 1] - Subscript[y, 1]) + Subscript[k, 2] (Subscript[x, 2] - Subscript[y, 2]))], 
        Infinity, 2, k],
    DiracDelta[Subscript[x, 1] - Subscript[y, 1], Subscript[x, 2] - Subscript[y, 2]] 4 Pi^2,
    TestID->"Integrate-20181216-P1R1T9"
]

(* Test of Name Ordering Rule, op1 ** op2 are in reverse order *)
Test[
    (op1 = Operator[q, "H", { Subscript[k, 1], Subscript[k, 2] }, {}];
    op2 = Operator[p, "H", { Subscript[l, 1], Subscript[l, 2] }, {}];
    (op1 ** op2) /. { DefineNameOrderingRule[False, 2] }),
    op2 ** op1,
    TestID->"NameOrdering-20181226-X4S4F9"
]

(* Derivation of an Operator Product *)
Test[
    QAD[Operator[a, { Subscript[x, 1] }, {}] ** Operator[b, { Subscript[x, 1] }, { s }], Subscript[x, 1]],

    QAD[Operator[a, { Subscript[x, 1] }, {}], Subscript[x, 1]] ** Operator[b, { Subscript[x, 1] }, { s }] + 
        Operator[a, { Subscript[x, 1] }, {}] ** QAD[Operator[b, { Subscript[x, 1] }, { s }], Subscript[x, 1]],

    TestID->"Derivation-20181217-L0J8L0"
]


Sample Applications

The sample applications are given in the form of notebooks. For the time being there are the following:

  • A notebook for the Klein - Gordon - equation
  • A notebook for the Dirac - equation

In addition to local rules, they contain a series of calculations, e.g. Hamilton - operator, 3 - momentum and evaluation of charge.

Klein - Gordon - Equation

In all cases, the free fields that solve the field equations are specified.

  1. The commutator of the fields, when applying the commutation relations for the coefficients of the fields, leads to the commutation relations of the fields themselves.

    (* Define the wave function solutions *) ΦC := ( 1 / Sqrt [ 2 ( 2 Pi ) ^ 3 k 0 ] a ^ k 1 , k 2 , k 3 Exp [ - exp ] ) 3 k + ( 1 / Sqrt [ 2 ( 2 Pi ) ^ 3 k 0 ] b ^ k 1 , k 2 , k 3 Exp [ exp ] ) 3 k ; phi = ΦC // QASimplify [ ] ; phicross = ( ΦC // QASimplify [ ] ) ; (* Define the time derivative of wave function solution *) phicrossdot = ( ( ? x 0 phicross ) /. { k "->" k1 , x "->" y } ) /. { y 0 "->" x 0 } ; (* Evaluate the Commutator *) QAEvaluate1 [ phi phicrossdot - phicrossdot phi ] DiracDelta [ x 1 - y 1 , x 2 - y 2 , x 3 - y 3 ] 1 ^

  2. The Hamiltonian as an expression dependent on the fields leads to an expression in the coefficients of the fields (creation and annihilation operators).

    Φ := k ( 1 / Sqrt [ 2 V k 0 ] a ^ k 1 , k 2 , k 3 Exp [ exp ] ) + k ( 1 / Sqrt [ 2 V k 0 ] b ^ k 1 , k 2 , k 3 Exp [ exp ] ) H 1 := ( D x 0 ( Φ // Evaluate ) ) ( D x 0 ( ( Φ // QASimplify [ ] ) // Evaluate ) /. { k k 1 } ) H 2 := i = 1 3 ( ( D x i ( Φ // QASimplify [ ] // Evaluate ) ) ( D x i ( Φ // Evaluate ) /. { k k 1 } ) ) H 3 := ( μ 2 ( Φ // QASimplify [ ] ) ( Φ /. { k k 1 } ) ) // QASimplify [ ] H 1 := V H 1 3 x H 2 := V H 2 3 x H 3 := V H 3 3 x hamiltonian = QAEvaluate 2 [ H 1 + H 2 + H 3 ] 1 ^ k k 0 + k a ^ k 1 , k 2 , k 3 a ^ k 1 , k 2 , k 3 k 0 + k b ^ k 1 , k 2 , k 3 b ^ k 1 , k 2 , k 3 k 0

  3. The same applies to the expression of the 3-momentum.

    P i_ := ( D x 0 ( Φ // Evaluate ) ) ( D x i ( ( Φ // QASimplify [ ] ) // Evaluate ) //. { k k 1 } ) + ( D x 0 ( ( Φ // QASimplify [ ] ) // Evaluate ) ) ( D x i ( Φ // Evaluate ) //. { k k 1 } ) P i_ := V P i 3 x Map [ ( P #1 // QAEvaluate2 ) & , { 1 , 2 , 3 } ] { k a ^ k 1 , k 2 , k 3 a ^ k 1 , k 2 , k 3 k 1 k b ^ k 1 , k 2 , k 3 b ^ k 1 , k 2 , k 3 k 1 k a ^ k 1 , k 2 , k 3 a ^ k 1 , k 2 , k 3 k 2 k b ^ k 1 , k 2 , k 3 b ^ k 1 , k 2 , k 3 k 2 , k a ^ k 1 , k 2 , k 3 a ^ k 1 , k 2 , k 3 k 3 k b ^ k 1 , k 2 , k 3 b ^ k 1 , k 2 , k 3 k 3 }

  4. The same applies to the expression for the charge, which results from a continuity equation.

    J i_ := ( ( D x i ( Φ // Evaluate ) ) ( ( Φ // QASimplify [ ] ) //. { k k 1 } ) ( D x i ( ( Φ // QASimplify [ ] ) // Evaluate ) ) ( Φ //. { k k 1 } ) ) J i_ := V J i 3 x QAEvaluate2 [ J 0 ] k a ^ k 1 , k 2 , k 3 a ^ k 1 , k 2 , k 3 k b ^ k 1 , k 2 , k 3 b ^ k 1 , k 2 , k 3


Sample Applications - Continuation

Dirac - Equation

The free fields that solve the field equations are again specified:

Ψ := p r = 1 2 ( Sqrt [ m / ( V p 0 ) ] c ^ p 1 , p 2 , p 3 r u r Exp [ exp ] ) + p r = 1 2 ( Sqrt [ m / ( V p 0 ) ] d ^ p 1 , p 2 , p 3 r , v r Exp [ + exp ] ) Ψ_ ¯ := ( Hermitian [ Ψ ] γ 0 ) // QASimplify [ ]

  1. The Hamilton operator is defined and evaluated:

    H := ( Ψ ¯ // QASimplify[] ) i = 1 3 ( γ i ( D x i ( Ψ // Evaluate ) /. p p 1 ) ) + m ( Ψ ¯ // QASimplify[] ) ( Ψ /. p p 1 ) H := V H 3 x H // QAEvaluate2 // Timing { 154.141 , 2 1 ^ p p 0 + p c ^ p 1 , p 2 , p 3 1 , c ^ p 1 , p 2 , p 3 1 p 0 + p c ^ p 1 , p 2 , p 3 2 , c ^ p 1 , p 2 , p 3 2 p 0 + p d ^ p 1 , p 2 , p 3 1 , d ^ p 1 , p 2 , p 3 1 p 0 + p d ^ p 1 , p 2 , p 3 2 , d ^ p 1 , p 2 , p 3 2 p 0 }

  2. The 3 - momentum is defined and evaluated:

    P i_ := ( Ψ ¯ // QASimplify [ ] ) ( γ 0 ( D x i ( Ψ // Evaluate ) /. p p1 ) ) P i_ := V P i 3 x Map [ ( P i // QAEvaluate2 ) & , { 1 , 2 , 3 } ] // Timing { 116.688 , { p c ^ p 1 , p 2 , p 3 1 , c ^ p 1 , p 2 , p 3 1 p 1 p c ^ p 1 , p 2 , p 3 2 , c ^ p 1 , p 2 , p 3 2 p 1 p d ^ p 1 , p 2 , p 3 1 , d ^ p 1 , p 2 , p 3 1 p 1 p d ^ p 1 , p 2 , p 3 2 , d ^ p 1 , p 2 , p 3 2 p 1 , p c ^ p 1 , p 2 , p 3 1 , c ^ p 1 , p 2 , p 3 1 p 2 p c ^ p 1 , p 2 , p 3 2 , c ^ p 1 , p 2 , p 3 2 p 2 p d ^ p 1 , p 2 , p 3 1 , d ^ p 1 , p 2 , p 3 1 p 2 p d ^ p 1 , p 2 , p 3 2 , d ^ p 1 , p 2 , p 3 2 p 2 , p c ^ p 1 , p 2 , p 3 1 , c ^ p 1 , p 2 , p 3 1 p 3 p c ^ p 1 , p 2 , p 3 2 , c ^ p 1 , p 2 , p 3 2 p 3 p d ^ p 1 , p 2 , p 3 1 , d ^ p 1 , p 2 , p 3 1 p 3 p d ^ p 1 , p 2 , p 3 2 , d ^ p 1 , p 2 , p 3 2 p 3 } }

  3. The 4 - current is defined and the charge is evaluated (without multiplicative charge constant):

    J i : = ( Ψ QASimplify [ ] ) ( γ i ( Ψ /. p p 1 ) ) J i : = v J i 3 x QAEvaluate2 [ J 0 ] // Timing { 41.5313 , 2 1 ^ p 1 + p c ^ p 1 , p 2 , p 3 1 , c ^ p 1 , p 2 , p 3 1 + p c ^ p 1 , p 2 , p 3 2 , c ^ p 1 , p 2 , p 3 2 p d ^ p 1 , p 2 , p 3 1 , d ^ p 1 , p 2 , p 3 1 p d ^ p 1 , p 2 , p 3 2 , d ^ p 1 , p 2 , p 3 2 }

We use cookies on our website. Some of them are essential for the operation of the site, while others help us to improve this site and the user experience (tracking cookies). You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.

Ok