I am using sympy (in sagemath). I would like to do a substitution, with Braket-notation (for quantum mechanical problem). Below there is a minimalistic code, in order to reproduce the problem.
from sympy.physics.quantum import Bra, Ket
from sympy import *
theta=symbols('theta',commutative=True)
pi, mu= symbols("pi mu",commutative=False)
W=2*pi*mu
print(W.subs(pi*mu,theta))
V=Bra(pi)*Ket(mu)
print(V.subs(Bra(pi)*Ket(mu),theta))
U=2*Bra(pi)*Ket(mu)
print(U.subs(Bra(pi)*Ket(mu),theta))
The output is:
2*theta
theta
2*<pi|*|mu>
If there is no leading scalar multiplier, the substitution works finely. I am stuck with a more complicated expression.
In these occasions
srepr
can shed some light:Note that the first output is a multiplication, object of type
Mul
, whereas the second output is an object of typeInnerProduct
. With the commandU.subs(Bra(pi)*Ket(mu),theta)
you are asking to search for an object of typeInnerProduct
intoU
, but there is none, hence no substitution has been done.In this case, you have to do:
Edit: or as @Oscar Benjamin pointed out, you do:
Now you can see an
InnerProduct
as an argument ofMul
. FInally: