Physics for Maple 2019 - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Physics : Updates : Physics for Maple 2019

Physics

Maple provides a state-of-the-art environment for algebraic computations in Physics, with emphasis on ensuring that the computational experience is as natural as possible. The theme of the Physics project for Maple 2019 has been the consolidation of the functionality introduced in previous releases, together with significant enhancements to further strengthen the functionality mainly in three areas:

1. 

Quantum Mechanics: coherent states, tensor products of states, taylor series of expressions involving anticommutative variables and functions, and several improvements in the normalization and simplification of Commutator and AntiCommutator algebra rules.

2. 

Tensor computations in general, making Maple 2019 unmatched in the field, covering classical and quantum mechanics, and special and general relativity, using natural tensor input notation and textbook-like display of results. The functionality for tensors is tightly integrated with the full Maple computation system and extensively documented in "A Complete Guide for performing tensor computations using Physics".

3. 

Documentation: besides the new guide for tensor computations, two other new pages, linked in all the help pages of Physics commands, are

a. 

Physics Updates organizes and presents in one place all formerly scattered links to updates and presentations with examples on the use of Physics.

b. 

Mini-Course: Computer Algebra for Physicists, is a course that can be used as a tutorial, with 10 sections to be covered in 5 hands-on guided experiences of 2 hours each. The first part, 5 sections, is about Maple 101, while the remaining 5 sections is all about using the Physics package.

Overall, the enhancements throughout the entire package increase robustness, versatility and functionality, extending furthermore the range of Physics-related algebraic computations that can be done naturally in a worksheet. The presentation below illustrates both the novelties and the kind of mathematical formulations that can now be performed.

As part of its commitment to providing the best possible environment for algebraic computations in Physics, Maplesoft launched a Maple Physics: Research and Development website with Maple 18, which enabled users to download research versions, ask questions, and provide feedback. The results from this accelerated exchange with people around the world have been incorporated into the Physics package in Maple 2019.

 

Tensor product of Quantum States using Dirac's Bra-Ket Notation

Coherent States in Quantum Mechanics

The Zassenhaus formula and the algebra of the Pauli matrices

Multivariable Taylor series of expressions involving anticommutative (Grassmannian) variables

New SortProducts command

Documentation: "Physics updates", "A complete guide for performing tensor computations" and the "Mini-Course: Computer Algebra for Physicists"

Simplification of tensors, Pauli and Dirac matrices and KroneckerDelta

See Also

 

Tensor product of Quantum States using Dirac's Bra-Ket Notation

Coherent States in Quantum Mechanics

See Also

Tensor product of Quantum States using Dirac's Bra-Ket Notation

 

Tensor products of Hilbert spaces and related quantum states are relevant in a myriad of situations in quantum mechanics, and in particular regarding quantum information. Tensor products are key in the mathematical formulation of entanglement. Below is a presentation of the design and implementation introduced in Maple 2019, with input/output and examples, organized in four sections:

1. 

The basic ideas and design

2. 

Tensor product notation and the hideketlabel option

3. 

Entangled States and the Bell basis

4. 

Entangled States, Operators and Projectors

 

References

[1] Cohen-Tannoudji, C.; Diu, B.; and Laloe,F. Quantum Mechanics, Chapter 2, section F.

[2] Griffiths, Robert B. Hilbert Space Quantum Mechanics. Quantum Computation and Quantum Information Theory Course, Physics Department, Carnegie Mellon University, 2014.

The basic ideas and design implemented in Maple 2019

 

Suppose A and B are quantum operators and KetA,n,etB,m are, respectively, their eigenkets. The following works since the introduction of the Physics package in Maple

withPhysics:

Setupop=A,B

* Partial match of 'op' against keyword 'quantumoperators'

_______________________________________________________

quantumoperators=A,B

(1)

A  KetA,alpha = A . KetA,alpha

AKetA,α=αKetA,α

(2)

B  KetB,beta = B . KetB,beta

BKetB,β=βKetB,β

(3)

In previous Maple releases, all quantum operators are supposed to act on the same Hilbert space. New in Maple 2019: suppose that A and B act on different, disjointed, Hilbert spaces.

 

1) To represent that situation, a new keyword in Setup, hilbertspaces, is introduced. With it you can indicate the quantum operators that act on a Hilbert space, say as in hilbertspaces=A,B with the meaning that the operator A acts on one Hilbert space while B acts on another one.

 

The Hilbert space thus has no particular name (as in 1, 2, 3 ...) and is instead identified by the operators that act on it. There can be one or more, and operators acting on one space can act on other spaces too. The disjointedspaces keyword is a synonym for hilbertspaces and hereafter all Hilbert spaces are assumed to be disjointed.

 

NOTE: noncommutative quantum operators acting on disjointed spaces commute between themselves, so after setting - for instance - hilbertspaces=A,B, automatically, A,B become quantum operators satisfying (see comment (ii) on page 156 of ref.[1])

 

A,B=0

 

2) Product of Kets and Bras that belong to different Hilbert spaces are understood as tensor products satisfying (see footnote on page 154 of ref.[1]):

 

KetA,αKetB,β=KetB,βKetA,α 

 

BraA,αKetB,β=KetB,βBraA,α 

 

while

BraA,αKetA,αKetA,αBraA,α

 

3) All the operators of one Hilbert space act transparently over operators, Bras, and Kets of other Hilbert spaces. For example

 

AKetB,n=KetB,nA

and the same for the Dagger of this equation, that is

BraB,nDaggerA=DaggerABraB,n

 

Hence, when we write the left-hand sides of the two equations above and press enter, they are automatically rewritten (returned) as the right-hand sides.

 

4) Every other quantum operator, set as such using Setup, and not indicated as acting on any particular Hilbert space, is assumed to act on all spaces.

 

5) Notation:

 

• 

Tensor products formed with operators, or Bras and Kets belonging to different Hilbert spaces (set as such using Setup and the keyword hilbertspaces), are now displayed with the symbol ⊗ in between, as in KetA,nKetB,n instead of KetA,nKetB,n, and AB instead of AB. The product of an operator A of one space and a Ket of another space KetB,n however, is displayed  AA, without ⊗.

• 

A new Setup option hideketlabel , makes all the labels in Kets and Bras to be hidden when displaying Kets, Bras, and Bracket, so when you set it entering Setuphideketlabel=true,
    

 Ket(A,m,n,l  

is displayed as

 KetA,m,n,l

 

  

This is the notation frequently used when working with angular momentum or in quantum information, where tensor products of Hilbert spaces are used.

Design details

 

The commutativity of the eigenkets of A and B is consistent with A,B=0, see footnote on page 154 of ref. [1].

 

Taking advantage of this commutativity of Bras and Kets belonging to disjointed spaces, during the computer algebra session (on the worksheet) the ordering of their products in the output happens automatically and systematically, it is always the same, and according to the following rules: suppose there are two Hilbert subspaces, then:

 

1. 

Within a product, contiguous Kets are grouped per Hilbert subspace

2. 

The Hilbert subspaces are ordered by sorting, alphabetically, the operators that act on that subspace.

 

Example: if one Hilbert subspace has operators A,E acting on it and the other has operators B,C then a product of contiguous eigenkets of these operators is sorted as

 

KetAKetEKetBKetC

 

Where the first pair of Kets belong to the first Hilbert subspace and the other pair to the second subspace, and where the first subspace is the one whose operands are alphabetically sorted first than the operands of the second subspace (in this example A is sorted before B) and within a subspace, the Kets are also sorted alphabetically (so A before E, then in the second subspace B before C).

 

Regarding the notation for the Dagger of a tensor product of states, say Dagger`*`KetA,α,KetB,β the standard convention for tensor products is to preserve the order, as in Dagger`*`KetA,α,KetB,β=BraA,αBraB,β representing an exception to the “reverse the order” rule of the Dagger operation. This is conventional, in that Kets and Bras belonging to disjointed spaces actually commute. This convention, however is notationally important for two reasons

 

  

1. Frequently, tensor product of states are written not as a product of Kets but as a single ket with many quantum numbers (multidimensional Hilbert space), for example as KetC,α,β, and DaggerKetC,α,βas BraC,α,β, that is, preserving the order of the quantum numbers, the first index refers to the first Hilbert subspace and the second index to the other one, in both the Ket and the Bra (its Dagger). So, when these multi-index Kets can be expressed as tensor products, the ordering of the Hilbert subspaces is preserved.

  

2. This preservation of the ordering of the Hilbert subspaces in a tensor product of Kets is also relevant in connection with the new Setup keyword hideketlabel, which requires the ordering of subspaces to be preserved in order to have non-ambiguous notation when the quantum numbers of Kets belonging to identical subspaces (e.g. qubits) are the same.

 

Example: we know that

Ket(A,0KetB,1KetB,0KetA,1

 

In the left-hand and right-hand sides of the expression above, the ordering of the Hilbert subspaces is not the same. If we now omit the labels A and B, we would have

 

Ket0Ket1et0Ket1

which would be misleading. Likewise,

KetA,0KetB,1=KetB,1KetA,0

and removing the labels we would get the misleading

Ket0Ket1=Ket0Ket1

 

From all this we see that, in order to make sense of the notation without labels, it is necessary to preserve the ordering of the Hilbert subspaces present in a tensor product, and also when taking the Dagger of a Ket. Accordingly, within tensor products, for instance in these examples, the system will always write Kets of the subspace A before Kets of the subspace B.

 

Tensor product notation and the hideketlabel option

 

According to the design section, set now two disjointed Hilbert spaces with operators A,C acting on one of them and B,C on the other one (you can think of  C=AB)

 

Setuphilbertspaces=A,C,B,C

disjointedspaces=A,C,B,C

(4)

 

Consider a tensor product of Kets, each of which belongs to one of these different spaces, note the new notation using

KetA,1 KetB,0

KetA,1KetB,0

(5)
• 

As explained in the Details of the design section, the ordering of the Hilbert spaces in tensor products is now preserved: Bras (Kets) of the first space always appear before Bras (Kets) of the second space. For example, construct a projector into the state (5)

  Dagger

KetA,1KetB,0BraA,1BraB,0

(6)

You see that in the product of Bras, and also in the product of Kets, A comes first, then B.


Remark: some textbooks prefer a dyadic style for sorting the operands in products of Bras and Kets that belong to different spaces, for example, (KetA,1BraA,1)(KetB,0BraB,0) instead of the projector sorting style of (6). Both reorderings of Kets and Bras are mathematically equal.

 

• 

Because that ordering is preserved, one can now hide the label of Bras and Kets without ambiguity, as it is usual in textbooks (e.g. in Quantum Information). For that purpose use the new keyword option hideketlabel

Setuphide=true

* Partial match of 'hide' against keyword 'hideketlabel'

_______________________________________________________

hideketlabel=true

(7)

The display for (6) is now

KetA,1KetB,0BraA,1BraB,0

(8)

Important: this new option only hides the label while displaying the Bra or Ket. The label, however, is still there, both in the input and in the output. One can "see" what is behind this new display using show, that works the same way as it does in the context of CompactDisplay. The actual contents being displayed in (8) is thus (6)

show

KetA,1KetB,0BraA,1BraB,0

(9)

Operators of each of these spaces act on their eigenkets as usual. Here we distribute over both sides of an equation, using `*` on the left-hand side, to see the product uncomputed, and `.` on the right-hand side to see it computed:

`*` = `.`A, KetA,1;

AKetA,1=KetA,1

(10)

`*` = `.`A,  KetA,0;

AKetA,0=0

(11)
• 

The tensor product of operators belonging to different Hilbert spaces is also displayed using

A B

AB

(12)
• 

 As mentioned in the preceding design section, using the commutativity between operators, Bras and Kets that belong to different Hilbert spaces, within a product, operators are placed contiguous to the Kets and Bras belonging to the space where the operator acts. For example, consider the delayed product represented using the start `*` operator

'  ' 

ABKetA,1KetB,0BraA,1BraB,0

(13)

Release the product

%

AKetA,1BKetB,0BraA,1BraB,0

(14)

The same operation but now using the dot product `.` operator. Start by delaying the operation

' . ' 

AB·KetA,1KetB,0BraA,1BraB,0

(15)

Recalling that this product is mathematically the same as (14), and that

B·KetB,0

0

(16)

by releasing the delayed product (15) we have

0

(17)

Reset hideketlabel

Setuphideketlabel = false

hideketlabel=false

(18)

Implementation details

 

• 

When defining a disjointed Hilbert space that contains operators belonging to one of the previously defined disjointed spaces, if the previously defined space is a subset of the one being defined, the former definition is removed and only the latter is kept.

• 

There are three new routines related to operators acting on disjointed spaces

Library:-BelongToDifferentDisjointedSpacesA,B

true

(19)
  

and, in connection with the possibility of indicating that two operators act on the same disjointed space, there is a new routine to tell when the operators belong to (act on) the same space

Library:-BelongToTheSameDisjointedSpaceA,B

false

(20)

Library:-BelongToTheSameDisjointedSpaceA,C

true

(21)
  

Finally, there is a routine to tell whether a sequence of objects belong (all of them) to (the same or different) disjointed spaces, i.e. were set as such using Setup and the hilbertpaces keyword

Library:-BelongToDisjointedSpacesA,B,C

true

(22)

Setupop = E

* Partial match of 'op' against keyword 'quantumoperators'

_______________________________________________________

quantumoperators=A,B,C,E

(23)

Library:-BelongToDisjointedSpacesE

false

(24)

Library:-BelongToDisjointedSpacesA,B,E

false

(25)

These three Physics:-Library routines, are the ones used internally by the Physics package to make decisions.

• 

Coordinates of a coordinate system defined using the Coordinates, or equivalently the Setup, command, when they are also set to as quantum operators, are automatically assumed to act on disjointed spaces. For example,

Setupdimension = 3, signature = `+`, coordinates=cartesian, quantumoperators=X,quiet

coordinatesystems=X,dimension=3,quantumoperators=A,B,C,E,x,y,z,signature=+ + +

(26)

Library:-BelongToDifferentDisjointedSpacesx,y

true

(27)
  

Remove the coordinates from the quantum operators set

Setupclear, op = X

* Partial match of 'op' against keyword 'quantumoperators'

_______________________________________________________

quantumoperators=A,B,C,E

(28)
• 

The following swapped products on the left-hand and right-hand sides (with their evaluation delayed due to enclosing the equation between ' ' ) are automatically reordered in one and the same way when we remove the delay, as explained in the details of the design section.

 

Example

 

Setuphide = false

* Partial match of 'hide' against keyword 'hideketlabel'

_______________________________________________________

hideketlabel=false

(29)

' KetA,n KetB,m = KetB,m KetA,n '

KetA,nKetB,m=KetB,mKetA,n

(30)

Remove now the evaluation delay and the ordering on the right-hand side is automatically rearranged as in the left-hand side.

%

KetA,nKetB,m=KetA,nKetB,m

(31)

The same using the dot operator `.`

' KetA,n. KetB,m = KetB,m. KetA,n '

KetA,n·KetB,m=KetB,m·KetA,n

(32)

KetA,nKetB,m=KetA,nKetB,m

(33)

NOTE: the dot product operator, `.`, is used to perform contractions or attachments in the space of quantum states. Therefore, in the case of tensor products, it returns using the star product operator `*`, in that there is no meaning for the contraction of tensors of different (disjointed) Hilbert spaces.

 

Regarding the product of a Bra and a Ket belonging to disjointed spaces, we also have, automatically,

' BraA, n KetB,n =  KetB,n BraA, n '

BraA,nKetB,n=KetB,nBraA,n

(34)

%

KetB,nBraA,n=KetB,nBraA,n

(35)

So the left-hand side is rewritten as the right-hand side, and BraA,nKetB,nis not a "scalar product", but an operator in the tensor product of spaces, since A and B belong to different disjointed spaces.

 

Enclose again the input with ' ' to delay its evaluation

' A  KetB, n = KetB, n  A '

AKetB,n=KetB,nA

(36)

Release the evaluation

%

KetB,nA=KetB,nA

(37)

In the output above we see that A·KetB,n is not interpreted as contraction between an operator and Ket, but as the product of A=A𝕀B acting on KetB,n where 𝕀B is the identity (projector) onto the B space. That is, an operator of one disjointed space acts transparently over a Bra or a Ket of a different disjointed space. The same happens with DaggerA just that, while A moves to the right, jumping over a Bra or Ket (see (37)), DaggerA moves to the left:

' DaggerA  BraB, n = BraB, n  DaggerA '

`*`DaggerA,BraB,n=`*`BraB,n,DaggerA

(38)

%

`*`DaggerA,BraB,n=`*`DaggerA,BraB,n

(39)

NOTE: Although determining "who is the Dagger of who" is arbitrary, this implementation follows what we do with paper and pencil: operators act to their right while those having an explicit Dagger act to their left.

 

Finally, the notation used for tensor products of operators is the same one used for tensor products of Bras and Kets:

A  B

AB

(40)

As explained in the Details of the design section, the ordering of the Hilbert spaces in tensor products is now preserved, so taking the Dagger does not swap the operands in this product:

Dagger

`*`DaggerA,DaggerB

(41)

Entangled States and the Bell basis

 

With the introduction of disjointed Hilbert spaces in Maple 2019 it is possible to represent entangled quantum states in a simple way, basically as done with paper and pencil.

 

Recalling the Hilbert spaces set at this point are,

Setuphilbert 

* Partial match of 'hilbert' against keyword 'hilbertspaces'

_______________________________________________________

disjointedspaces=A,C,B,C

(42)

where C acts on the tensor product of the spaces where A and B act. An eigenstate of C can then always be written as

KetC,m,n = SumSumMj,p KetA,j KetB,p,j, p

KetC,m,n=pjMj,pKetA,jKetB,p

(43)

where Mj,p is a matrix of complex coefficients. Bra states of C are formed as usual taking the Dagger

Dagger

BraC,m,n=pjMj,p&conjugate0;BraA,jBraB,p

(44)

 

• 

By definition, all states KetC,α,β that can be written exactly as KetA,αKetB,β, that is, the product of an arbitrary state of the subspace A and another of the subspace B, are product states, and all the other ones are entangled states. Entanglement is a property that is independent of the basis KetA,jKetB,pused in (43).

The physical interpretation is the standard one: when the state of a system constituted by two subsystems A and B is represented by a product state, the properties of the subsystem A are well defined and all given by KetA,α,while those for the subsystem B by . When the system is in an entangled state one typically cannot assign definite properties to the individual subsystems A or B, each subsystem has no independent reality.

To determine whether a state KetC,α,β is entangled it then suffices to check the rank R of the matrix Mj,p (see LinearAlgebra:-Rank): when R=1 the state is a product state, otherwise it is an entangled state. When the state being analyzed belongs to the tensor product of two subspaces, R=1 is equivalent to having the determinant of Mj,p equal to 0. The condition R=1, however, is more general, and suffices to determine whether a state is a product state also on a Hilbert space that is the tensor product of three or more subspaces: ℋ=ℋ123... n, in which case the matrix M will have more rows and columns and a determinant equal to 0 would only warrant the possibility of factorizing one Ket.

 

Example: the Bell basis for a system of two qubits

 

Consider a 2-dimensional space of states acted upon by the operator A, and let B act upon another, disjointed, Hilbert space that is a replica of the Hilbert space on which A acts. Set the dimensions of A, B and C respectively equal to 2, 2 and 2x2 (see Setup)

Setupquantumbasisdimension = A = 2, B = 2, C1 = 2, C2 = 2

quantumbasisdimension=A=2,B=2,C1=2,C2=2

(45)

The system C with the two subsystems A and B represents a two qubits system. The standard basis for C can be constructed in a natural way from the basis of Kets of A and B, KetA,0,KetA,1,KetB,0,KetB,1, by taking their tensor products:

seqseqKetA,jKetB,k,k=0..1,j=0..1

KetA,0KetB,0,KetA,0KetB,1,KetA,1KetB,0,KetA,1KetB,1

(46)

Set a more mathematical display for the imaginary unit

interfaceimaginaryunit = i:

 

The four entangled Bell states also form a basis of C and are given by

Setupop = ℬ

* Partial match of 'op' against keyword 'quantumoperators'

_______________________________________________________

quantumoperators=,A,B,C,E

(47)

Ketℬ,0 = 1'sqrt'2KetA,0 KetB,0 + KetA,1 KetB,1

Ket,0=KetA,0KetB,0+KetA,1KetB,12

(48)

Ketℬ,1 = 1'sqrt'2KetA,0 KetB,1 + KetA,1 KetB,0

Ket,1=KetA,0KetB,1+KetA,1KetB,02

(49)

Ketℬ,2 = i'sqrt'2KetA,0 KetB,1  KetA,1 KetB,0

Ket,2=KetA,0KetB,1KetA,1KetB,02

(50)

Ketℬ,3 = 1'sqrt'2KetA,0 KetB,0  KetA,1 KetB,1

Ket,3=KetA,0KetB,0KetA,1KetB,12

(51)

There is no standard convention for the four linear combinations of the right-hand sides above defining the Bell states. The convention used here relates to the definition of these states using the Pauli matrices as shown further below. Regardless of the convention used, the Bell basis is orthonormal. That can be verified by taking dot products, for example:

Dagger . 

1=1

(52)

In steps, perform the same operation but using the star (`*`) operator, so that the contraction is represented but not performed

Dagger  

Bra,0Ket,0=BraA,0BraB,0+BraA,1BraB,1KetA,0KetB,0+KetA,1KetB,12

(53)

Evaluate now the result at `*` = `.`, that is transforming the star product into a dot product

eval, `*` = `.`

1=1

(54)

Dagger  

Bra,0Ket,1=BraA,0BraB,0+BraA,1BraB,1KetA,0KetB,1+KetA,1KetB,02

(55)

eval, `*` = `.`

0=0

(56)

The Bell basis and its relation with the Pauli matrices

 

The Bell basis can be constructed departing from Ket,0 using the Pauli matrices σj. For that purpose, using a Vector representation for KetA,j,

KetB,0 = Vector1,0, KetB,1 = Vector0,1

KetB,0=10,KetB,1=01

(57)

Multiplying KetB,0by each of the σj Pauli matrices and performing the matrix operations we have

seqPsigmaj  1,  j=1..3

`*`Psigma1,KetB,0=`*`Psigma1,10,`*`Psigma2,KetB,0=`*`Psigma2,10,`*`Psigma3,KetB,0=`*`Psigma3,10

(58)

Library:-PerformMatrixOperations,only=righthandsides

`*`Psigma1,KetB,0=01,`*`Psigma2,KetB,0=0I,`*`Psigma3,KetB,0=10

(59)

In this result we see that σ1 and σ2 flip the state, transforming KetB,0 into KetB,1, σ2 also multiplies by the imaginary unit , while σ3 leaves the state KetB,0unchanged.

We can express all that by removing from (59) the Vector representations shown in (57). For that purpose, create a list of substitution equations

maprhs = lhs,, i ~ 

10=KetB,0,01=KetB,1,I0=KetB,0,0I=KetB,1

(60)

The action of σj in KetB,0is then given by

Library:-SubstituteMatrix,

σ1KetB,0=KetB,1,σ2KetB,0=KetB,1,σ3KetB,0=KetB,0

(61)

For , performing the same steps, the action of the Pauli matrices on it is

seqPsigmaj  2, j=1..3

`*`Psigma1,KetB,1=`*`Psigma1,01,`*`Psigma2,KetB,1=`*`Psigma2,01,`*`Psigma3,KetB,1=`*`Psigma3,01

(62)

Library:-PerformMatrixOperations,only=righthandsides

`*`Psigma1,KetB,1=10,`*`Psigma2,KetB,1=I0,`*`Psigma3,KetB,1=01

(63)

Library:-SubstituteMatrix,

σ1KetB,1=KetB,0,σ2KetB,1=−ⅈKetB,0,σ3KetB,1=KetB,1

(64)

To obtain the other three Bell states using the results (61) and (64), indicate to the system that the Pauli matrices operate in the subspace where B operates

Setuphilbert = B,C,Psigma

* Partial match of 'hilbert' against keyword 'hilbertspaces'

_______________________________________________________

disjointedspaces=A,C,B,C,σ

(65)

 

Multiplying Ket,0 given in (48) by each of the three σj we get the other three Bell states

Ket,0=2KetA,0KetB,0+KetA,1KetB,12

(66)

Psigma1  

σ1Ket,0=2σ1KetA,0KetB,0+KetA,1KetB,12

(67)

Substitute in this result the first equations of (61) and (64)

1, 1

σ1KetB,0=KetB,1,σ1KetB,1=KetB,0

(68)

maprhs=lhs,

KetB,1=σ1KetB,0,KetB,0=σ1KetB,1

(69)

subs,

σ1Ket,0=2σ1KetA,0σ1KetB,1+KetA,1σ1KetB,02

(70)

factorSimplify

σ1Ket,0=2KetA,0KetB,1+KetA,1KetB,02

(71)

This is Ket,1 defined in (49)

Ket,1=2KetA,0KetB,1+KetA,1KetB,02

(72)

σ1Ket,0Ket,1=0

(73)

Multiplying now by σ2 and substituting KetB,j using the 2nd equations of (61) and (64) we get Ket,1

Psigma2  

σ2Ket,0=2σ2KetA,0KetB,0+KetA,1KetB,12

(74)

2, 2

σ2KetB,0=KetB,1,σ2KetB,1=−ⅈKetB,0

(75)

zipisolate,,KetB,1,KetB,0

KetB,1=−ⅈσ2KetB,0,KetB,0=σ2KetB,1

(76)

factorSimplifysubs,

σ2Ket,0=22KetA,0KetB,1KetA,1KetB,0

(77)

The above is Ket,2 defined in (50)

Ket,2=22KetA,0KetB,1KetA,1KetB,0

(78)

Expand

σ2Ket,0Ket,2=0

(79)

Finally, multiplying Ket,2 by σ3

Psigma3  

σ3Ket,0=2σ3KetA,0KetB,0+KetA,1KetB,12

(80)

Substituting

3, 3

σ3KetB,0=KetB,0,σ3KetB,1=KetB,1

(81)

rhs=lhs 1, rhs = lhs2

KetB,0=σ3KetB,0,KetB,1=σ3KetB,1

(82)

We get

factorSimplifysubs,

σ3Ket,0=2KetA,0KetB,0KetA,1KetB,12

(83)

which is Ket,3

Ket,3=2KetA,0KetB,0KetA,1KetB,12

(84)

Expand

σ3Ket,0Ket,3=0

(85)

Reset the symbol representing imaginary unit to use i as an index in the next section

interfaceimaginaryunit = I:

Entangled States, Operators and Projectors

 

Consider a fourth operator, H, that is Hermitian and acts on the same space of C, has the same dimension, and , are its mean values in an entangled and product states respectively.

Setupadditionally, hermitian = H, basisdimension = H1 = 2, H2=2, hilbertspaces = A,C,H,B,C,H,realobjects = ℋ,ℍ

* Partial match of 'hermitian' against keyword 'hermitianoperators'

* Partial match of 'basisdimension' against keyword 'quantumbasisdimension'

_______________________________________________________

disjointedspaces=A,C,H,B,C,H,B,C,σ,hermitianoperators=H,quantumbasisdimension=A=2,B=2,C1=2,C2=2,H1=2,H2=2,realobjects=,,x,y,z

(86)

To operate in a practical way with these operators, Bras and Kets, bracket rules reflecting their relationship are necessary. From the definition of C as acting on the tensor product of spaces where A and B act (see (43)) and taking into account the dimensions specified for A, B and C we have

KetC,a, b = SumSumMa,j,b,p KetA,j KetB,p,j=0..1, p=0..1

KetC,a,b=p=01j=01Ma,j,b,pKetA,jKetB,p

(87)

BraA,k·

BracketBraA,k,KetC,a,b=p=01Ma,k,b,pKetB,p

(88)

BraB,k·

BracketBraB,k,KetC,a,b=j=01Ma,j,b,kKetA,j

(89)

BraA,k·BraB,l· 

BraA,kBracketBraB,l,KetC,a,b=Ma,k,b,l

(90)

The bracket rules for A, B and C are the first two of these; Set these rules, so that the system can take them into account

Setup, 

bracketrules=%Bracket%BraA,k,%KetC,a,b=SumMa,k,b,pKetB,p,p=0..1,%Bracket%BraB,k,%KetC,a,b=SumMa,j,b,kKetA,j,j=0..1

(91)

If we now recompute (90), the left-hand side is also computed

BraA,k·BraB,l· 

Ma,k,b,l=Ma,k,b,l

(92)

Suppose now that you want to compute with the Hermitian operator H, that operates on the same space as C, both using C and the operators A and B, as in

 

BracketBraC,I,j,H,KetC,k,l=ℋi,j,k,l

 

BraA,IBraB,jHKetA,kKetB,l=ℍ,j,k,l

 

where i,j,k,l = ℍ,j,k,l when KetC,a,b is a product (not entangled) state.

 

To compute taking into account BracketBraC,I,j,H,KetC,k,l=ℋ,j,k,l it suffices to set a bracket rule

Setup%BracketBraC,a,b,H,KetC,c,d = ℋa,b,c,d, real=ℋ

* Partial match of 'real' against keyword 'realobjects'

_______________________________________________________

bracketrules=%Bracket%BraA,k,%KetC,a,b=SumMa,k,b,pKetB,p,p=0..1,%Bracket%BraB,k,%KetC,a,b=SumMa,j,b,kKetA,j,j=0..1,%Bracket%BraC,a,b,H,%KetC,c,d=a,b,c,d,realobjects=,,x,y,z

(93)

After that,

BraC,j,k·H·KetC,m,n

j,k,m,n

(94)

Regarding BraA,IBraB,jHKetA,kKetB,l=ℍ,j,k,l, since H belongs to the tensor product of spaces A and B, it can be an entangled operator, one that you cannot represent just as a product of one operator acting on A times another one acting on B. A computational representation for the operator BraB,jHKetA,k (that is not just itself or as abstract) is not possible in the general case. For that you can use a different feature: define the action of the operator H on Kets of A and B.

 

Basically, we want:

 

H·KetA,k Hk

Hk·KetB,lHk,l ...Hi,j,k·KetA,l i,j,k,l

A program sketch for that would be:


if H is applied to a Ket of A or B and it still has not 4 indices then

    if H itself is indexed then
        return H with its indices followed by the index of the Ket
    else

        return H indexed by the index of the Ket;
otherwise
    return the dot product operation uncomputed, unevaluated

 

 

In the Maple language (see sec. 1.4) that program-sketch becomes

 

H  K   if procnameNotindexed or nopsprocname < 4 and KKet and op1&comma; K&apos;identicalA&comma;B&apos; then     if procname&apos;indexed&apos; then        if nopsprocname &equals; 3 then          opprocname&comma; op2&comma; K    &num; no more indices to be accumulated, scalar result       else          Hopprocname&comma; op2&comma; K    &num; accumulate indices, operator result       fi    else         Hop2&comma; K    fi else     &apos;procname &period; K&apos; fi&colon;

 

Let's see it in action. Start by erasing the Physics performance remember tables, which remember results computed before the definition of H

 

Library:-Forget

H·KetA&comma;k

Hk

(95)

Recalling that H is Hermitian,

BraB&comma;j·H

Hj

(96)

BraB&comma;j·H·KetA&comma;k

Hj,k

(97)

BraB&comma;j·H·KetA&comma;k·KetB&comma;l

Hj,k,l

(98)

BraA&comma;i·BraB&comma;j·H·KetA&comma;k·KetB&comma;l

i,j,k,l

(99)

Note that the definition of H as a procedure does not interfere with the setting of a bracket rule for it with KetC&comma;a&comma;b, that is still working

BraC&comma;i&comma;j·H·KetC&comma;k&comma;l

i,j,k,l

(100)

where H = H when KetC&comma;k&comma;l is a product state. The definition of H takes precedence, so if in that definition you indicate what to do with a C Ket, that will be taken into account before the bracket rule.

 

• 

You can set the projectors for all these operators / spaces. For example,

&Iopf;__A   ProjectorKetA&comma;i&semi;&Iopf;__B   ProjectorKetB&comma;i&semi;&Iopf;__C   ProjectorKetC&comma;a&comma;b

&Iopf;__Ai=01KetA&comma;iBraA&comma;i

&Iopf;__Bi=01KetB&comma;iBraB&comma;i

&Iopf;__Cb=01a=01KetC&comma;a&comma;bBraC&comma;a&comma;b

(101)

Since the algebra rules for computing with eigenkets of A, B and C were already set in (91), from the projectors above you can construct any subspace projector, for example

BraA&comma;m &period; &Iopf;__C

b=01a=01p=01Ma,m,b,pKetB&comma;pBraC&comma;a&comma;b

(102)

&Iopf;__C  &period; KetA&comma; m

b=01a=01p=01Ma,m,b,p&conjugate0;KetC&comma;a&comma;bBraB&comma;p

(103)

The conjugate of Ma,m,b,p is due to the contraction or attachment from the right of (102), that is with

Dagger

BraC&comma;a&comma;b=p=01j=01Ma,j,b,p&conjugate0;BraA&comma;jBraB&comma;p

(104)

 

The coefficients Ma,m,b,p satisfy constraints due to the normalization of Kets of A and B. One can derive these constraints by inserting the unit operator &Iopf;__C in the identity

BraA&comma;m·BraB&comma;n·&Iopf;__C·KetA&comma;r·KetB&comma;s=BraA&comma;m·BraB&comma;n·KetA&comma;r·KetB&comma;s

b=01a=01Ma,r,b,s&conjugate0;Ma,m,b,n=δm,rδn,s

(105)

Transform this result into a function P  to explore the identity further

P  unapplysubsSum&equals;sum&comma;&comma;m&comma;n&comma;r&comma;s

Pm&comma;n&comma;r&comma;sb=01a=01Ma,r,b,s&conjugate0;Ma,m,b,n=δm,rδn,s

(106)

The first and third indices refer to the quantum numbers of A, the second and fourth to B, so the right-hand sides in the following are respectively 1 and 0

P1&comma;0&comma;1&comma;0

M0,1,0,0&conjugate0;M0,1,0,0+M1,1,0,0&conjugate0;M1,1,0,0+M0,1,1,0&conjugate0;M0,1,1