Sympy: substitute to symbolic bosonic commutation its numerical value
I would like to simplify expressions involving boson commutators using sympy.
The problem is that, using secondquant in sympy, the numerical values of the bosonic commutator [b_0,b^dagger_0]=1 and [b_0,b^dagger_1]=0 is never substituted to the symbolic expression.
In other words, I would like SymPy to know about the commutator identity.
The following code
from sympy import simplify
from sympy.physics.secondquant import Bd, B
from sympy.physics.quantum import *
comm1=simplify(Commutator(B(0),Bd(0)).doit())
print(comm1)
comm2=simplify(Commutator(B(0),Bd(1)).doit())
print(comm2)
gives
comm1= AnnihilateBoson(0)*CreateBoson(0) - CreateBoson(0)*AnnihilateBoson(0)
comm2= AnnihilateBoson(0)*CreateBoson(1) - CreateBoson(1)*AnnihilateBoson(0)
instead of the expected values:
comm1= 1
comm2= 0
I have tried the code mentioned here How to use sympy.physics.quantum Commutator?
comm2=(Commutator(B(0),Bd(0))._eval_expand_commutator()).doit()
print('comm2=',comm2)
but this gives the same expression as before
comm2= AnnihilateBoson(0)*CreateBoson(0) - CreateBoson(0)*AnnihilateBoson(0)
Moreover I have found this related unanswered question:
Does sympy give me wrong results for the second quantization commutators?
I had a look around line 1682 here:
https://github.com/sympy/sympy/blob/master/sympy/physics/secondquant.py
and according to this the commutator should correctly give a Kronecker delta. However, I still get the symbolic expression reported above.
python physics sympy mathematical-expressions commutativity
add a comment |
I would like to simplify expressions involving boson commutators using sympy.
The problem is that, using secondquant in sympy, the numerical values of the bosonic commutator [b_0,b^dagger_0]=1 and [b_0,b^dagger_1]=0 is never substituted to the symbolic expression.
In other words, I would like SymPy to know about the commutator identity.
The following code
from sympy import simplify
from sympy.physics.secondquant import Bd, B
from sympy.physics.quantum import *
comm1=simplify(Commutator(B(0),Bd(0)).doit())
print(comm1)
comm2=simplify(Commutator(B(0),Bd(1)).doit())
print(comm2)
gives
comm1= AnnihilateBoson(0)*CreateBoson(0) - CreateBoson(0)*AnnihilateBoson(0)
comm2= AnnihilateBoson(0)*CreateBoson(1) - CreateBoson(1)*AnnihilateBoson(0)
instead of the expected values:
comm1= 1
comm2= 0
I have tried the code mentioned here How to use sympy.physics.quantum Commutator?
comm2=(Commutator(B(0),Bd(0))._eval_expand_commutator()).doit()
print('comm2=',comm2)
but this gives the same expression as before
comm2= AnnihilateBoson(0)*CreateBoson(0) - CreateBoson(0)*AnnihilateBoson(0)
Moreover I have found this related unanswered question:
Does sympy give me wrong results for the second quantization commutators?
I had a look around line 1682 here:
https://github.com/sympy/sympy/blob/master/sympy/physics/secondquant.py
and according to this the commutator should correctly give a Kronecker delta. However, I still get the symbolic expression reported above.
python physics sympy mathematical-expressions commutativity
add a comment |
I would like to simplify expressions involving boson commutators using sympy.
The problem is that, using secondquant in sympy, the numerical values of the bosonic commutator [b_0,b^dagger_0]=1 and [b_0,b^dagger_1]=0 is never substituted to the symbolic expression.
In other words, I would like SymPy to know about the commutator identity.
The following code
from sympy import simplify
from sympy.physics.secondquant import Bd, B
from sympy.physics.quantum import *
comm1=simplify(Commutator(B(0),Bd(0)).doit())
print(comm1)
comm2=simplify(Commutator(B(0),Bd(1)).doit())
print(comm2)
gives
comm1= AnnihilateBoson(0)*CreateBoson(0) - CreateBoson(0)*AnnihilateBoson(0)
comm2= AnnihilateBoson(0)*CreateBoson(1) - CreateBoson(1)*AnnihilateBoson(0)
instead of the expected values:
comm1= 1
comm2= 0
I have tried the code mentioned here How to use sympy.physics.quantum Commutator?
comm2=(Commutator(B(0),Bd(0))._eval_expand_commutator()).doit()
print('comm2=',comm2)
but this gives the same expression as before
comm2= AnnihilateBoson(0)*CreateBoson(0) - CreateBoson(0)*AnnihilateBoson(0)
Moreover I have found this related unanswered question:
Does sympy give me wrong results for the second quantization commutators?
I had a look around line 1682 here:
https://github.com/sympy/sympy/blob/master/sympy/physics/secondquant.py
and according to this the commutator should correctly give a Kronecker delta. However, I still get the symbolic expression reported above.
python physics sympy mathematical-expressions commutativity
I would like to simplify expressions involving boson commutators using sympy.
The problem is that, using secondquant in sympy, the numerical values of the bosonic commutator [b_0,b^dagger_0]=1 and [b_0,b^dagger_1]=0 is never substituted to the symbolic expression.
In other words, I would like SymPy to know about the commutator identity.
The following code
from sympy import simplify
from sympy.physics.secondquant import Bd, B
from sympy.physics.quantum import *
comm1=simplify(Commutator(B(0),Bd(0)).doit())
print(comm1)
comm2=simplify(Commutator(B(0),Bd(1)).doit())
print(comm2)
gives
comm1= AnnihilateBoson(0)*CreateBoson(0) - CreateBoson(0)*AnnihilateBoson(0)
comm2= AnnihilateBoson(0)*CreateBoson(1) - CreateBoson(1)*AnnihilateBoson(0)
instead of the expected values:
comm1= 1
comm2= 0
I have tried the code mentioned here How to use sympy.physics.quantum Commutator?
comm2=(Commutator(B(0),Bd(0))._eval_expand_commutator()).doit()
print('comm2=',comm2)
but this gives the same expression as before
comm2= AnnihilateBoson(0)*CreateBoson(0) - CreateBoson(0)*AnnihilateBoson(0)
Moreover I have found this related unanswered question:
Does sympy give me wrong results for the second quantization commutators?
I had a look around line 1682 here:
https://github.com/sympy/sympy/blob/master/sympy/physics/secondquant.py
and according to this the commutator should correctly give a Kronecker delta. However, I still get the symbolic expression reported above.
python physics sympy mathematical-expressions commutativity
python physics sympy mathematical-expressions commutativity
edited Nov 12 '18 at 20:43
asked Nov 12 '18 at 19:57
Caos
16910
16910
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The problem is caused by
from sympy.physics.quantum import *
This code gives the expected behaviour
from sympy.physics.secondquant import *
from sympy import symbols
a, b = symbols('a,b')
c = Commutator(B(a),Bd(a))
print(c.doit())
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53269231%2fsympy-substitute-to-symbolic-bosonic-commutation-its-numerical-value%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The problem is caused by
from sympy.physics.quantum import *
This code gives the expected behaviour
from sympy.physics.secondquant import *
from sympy import symbols
a, b = symbols('a,b')
c = Commutator(B(a),Bd(a))
print(c.doit())
add a comment |
The problem is caused by
from sympy.physics.quantum import *
This code gives the expected behaviour
from sympy.physics.secondquant import *
from sympy import symbols
a, b = symbols('a,b')
c = Commutator(B(a),Bd(a))
print(c.doit())
add a comment |
The problem is caused by
from sympy.physics.quantum import *
This code gives the expected behaviour
from sympy.physics.secondquant import *
from sympy import symbols
a, b = symbols('a,b')
c = Commutator(B(a),Bd(a))
print(c.doit())
The problem is caused by
from sympy.physics.quantum import *
This code gives the expected behaviour
from sympy.physics.secondquant import *
from sympy import symbols
a, b = symbols('a,b')
c = Commutator(B(a),Bd(a))
print(c.doit())
answered Nov 12 '18 at 21:18
Caos
16910
16910
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53269231%2fsympy-substitute-to-symbolic-bosonic-commutation-its-numerical-value%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown