POVM three-qubit circuit for symmetric quantum statesPositive maps on pure states?Embedding classical...
What do the pedals on grand pianos do?
Why do members of Congress in committee hearings ask witnesses the same question multiple times?
Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?
Which aircraft had such a luxurious-looking navigator's station?
fontspec breaks capital greek letters in DeclareMathOperator
Why proton concentration is divided by 10⁻⁷?
Book where the good guy lives backwards through time and the bad guy lives forward
What does 'Linear regularities among words' mean?
Translation of "Engineering"
Can I become debt free or should I file for bankruptcy? How do I manage my debt and finances?
How do I construct an nxn matrix?
Why zero tolerance on nudity in space?
Difference between hypovolemic shock and heart arrest caused by hypovolemia?
Can you use a beast's innate abilities while polymorphed?
Is my plan for fixing my water heater leak bad?
Whom do I have to contact for a ticket refund in case of denied boarding (in the EU)?
Closure of presentable objects under finite limits
How to properly claim credit for peer review?
Is divide-by-zero a security vulnerability?
Make me a metasequence
Why is working on the same position for more than 15 years not a red flag?
Are small insurances worth it
Replacement ford fiesta radiator has extra hose
Should I choose Itemized or Standard deduction?
POVM three-qubit circuit for symmetric quantum states
Positive maps on pure states?Embedding classical information into norm of a quantum stateWhy does the “Phase Kickback” mechanism work in the Quantum phase estimation algorithm?SWAP gate(s) in the $R(lambda^{-1})$ step of the HHL circuit for $4times 4$ systemsInner product of quantum statesDecomposition of arbitrary 2 qubit operatorUnderstanding the Group Leaders Optimization AlgorithmThree sender quantum simultaneous decoder conjectureHow to analyze highly entangled quantum circuits?How to formulate the master equation for three systems?
$begingroup$
I have been reading this paper but don't yet understand how to implement a circuit to determine in which state the qubit is not for a cyclic POVM. More specifically, I want to implement a cyclic POVM with $m=3$;
Update: I came across having to implement this unitary matrix:
$$
M=
frac{1}{sqrt{2}}left[ {begin{array}{cc}
1 & 1 \
1 & w \
end{array} } right]
$$
Where $w$ is a third root of unity using rotations, after which I am stuck.
quantum-state quantum-information circuit-construction mathematics quantum-operation
New contributor
xbk365 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
add a comment |
$begingroup$
I have been reading this paper but don't yet understand how to implement a circuit to determine in which state the qubit is not for a cyclic POVM. More specifically, I want to implement a cyclic POVM with $m=3$;
Update: I came across having to implement this unitary matrix:
$$
M=
frac{1}{sqrt{2}}left[ {begin{array}{cc}
1 & 1 \
1 & w \
end{array} } right]
$$
Where $w$ is a third root of unity using rotations, after which I am stuck.
quantum-state quantum-information circuit-construction mathematics quantum-operation
New contributor
xbk365 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
add a comment |
$begingroup$
I have been reading this paper but don't yet understand how to implement a circuit to determine in which state the qubit is not for a cyclic POVM. More specifically, I want to implement a cyclic POVM with $m=3$;
Update: I came across having to implement this unitary matrix:
$$
M=
frac{1}{sqrt{2}}left[ {begin{array}{cc}
1 & 1 \
1 & w \
end{array} } right]
$$
Where $w$ is a third root of unity using rotations, after which I am stuck.
quantum-state quantum-information circuit-construction mathematics quantum-operation
New contributor
xbk365 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
I have been reading this paper but don't yet understand how to implement a circuit to determine in which state the qubit is not for a cyclic POVM. More specifically, I want to implement a cyclic POVM with $m=3$;
Update: I came across having to implement this unitary matrix:
$$
M=
frac{1}{sqrt{2}}left[ {begin{array}{cc}
1 & 1 \
1 & w \
end{array} } right]
$$
Where $w$ is a third root of unity using rotations, after which I am stuck.
quantum-state quantum-information circuit-construction mathematics quantum-operation
quantum-state quantum-information circuit-construction mathematics quantum-operation
New contributor
xbk365 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
xbk365 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 5 hours ago
xbk365
New contributor
xbk365 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 6 hours ago
xbk365xbk365
213
213
New contributor
xbk365 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
xbk365 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
xbk365 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
This is not the unitary that you have to implement: you need a two-qubit unitary
$$
frac{1}{sqrt{3}}left(begin{array}{cccc}
1 & 1 & 1 & 0 \
1 & omega & omega^2 & 0 \
1 & omega^2 & omega & 0 \
0 & 0 & 0 & sqrt{3}
end{array}right),
$$
where $omega=e^{2ipi/3}$, the point being that if you introduce an ancilla qubit in the state 0, apply this unitary, and then measure in the computational basis, the 3 measurement outcomes 00, 01 and 10 correspond to the 3 POVM elements.
I don't (yet) have a circuit implementation for this. You'll see the paper you cite carefully avoids talking about the Fourier transform in non-power of 2 dimensions. You certainly could use the standard constructions based on Givens rotations, but the result is going to be fairly horrible.
Here's an attempt at a circuit. I've made a few tweaks since I last ran it through a computer to check, so it's always possible that a slight error has crept in, but broadly...

Here, I'm using $Z^r$ to denote
$$
left(begin{array}{cc} 1 & 0 \ 0 & e^{ipi r} end{array}right),
$$
and
$$
V=frac{1}{sqrt{3}}left(begin{array}{cc}
1 & sqrt{2} \ -sqrt{2} & 1
end{array}right).
$$
$endgroup$
$begingroup$
Hmm, I was actually talking about F2, not the whole unitary. Or, I am missing something?
$endgroup$
– chubakueno
5 hours ago
$begingroup$
@chubakueno You said you wanted $m=3$, which means you need $F_3$, which is a $3times 3$ matrix which we must embed into a $4times 4$ matrix if we're using qubits.
$endgroup$
– DaftWullie
4 hours ago
$begingroup$
I understand now. So, is there an example of IQFT for non power of twos there? I would be surprised to find there isn't, but what do I know.
$endgroup$
– chubakueno
4 hours ago
$begingroup$
@chubakueno I didn't immediately find one. I've now constructed one for the $m=3$ case, but don't have time right now to write it into a circuit.
$endgroup$
– DaftWullie
4 hours ago
1
$begingroup$
@xbk365 once i’m done with the evening’s childcare responsibilities...
$endgroup$
– DaftWullie
2 hours ago
|
show 1 more comment
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "694"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
xbk365 is a new contributor. Be nice, and check out our Code of Conduct.
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%2fquantumcomputing.stackexchange.com%2fquestions%2f5620%2fpovm-three-qubit-circuit-for-symmetric-quantum-states%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
$begingroup$
This is not the unitary that you have to implement: you need a two-qubit unitary
$$
frac{1}{sqrt{3}}left(begin{array}{cccc}
1 & 1 & 1 & 0 \
1 & omega & omega^2 & 0 \
1 & omega^2 & omega & 0 \
0 & 0 & 0 & sqrt{3}
end{array}right),
$$
where $omega=e^{2ipi/3}$, the point being that if you introduce an ancilla qubit in the state 0, apply this unitary, and then measure in the computational basis, the 3 measurement outcomes 00, 01 and 10 correspond to the 3 POVM elements.
I don't (yet) have a circuit implementation for this. You'll see the paper you cite carefully avoids talking about the Fourier transform in non-power of 2 dimensions. You certainly could use the standard constructions based on Givens rotations, but the result is going to be fairly horrible.
Here's an attempt at a circuit. I've made a few tweaks since I last ran it through a computer to check, so it's always possible that a slight error has crept in, but broadly...

Here, I'm using $Z^r$ to denote
$$
left(begin{array}{cc} 1 & 0 \ 0 & e^{ipi r} end{array}right),
$$
and
$$
V=frac{1}{sqrt{3}}left(begin{array}{cc}
1 & sqrt{2} \ -sqrt{2} & 1
end{array}right).
$$
$endgroup$
$begingroup$
Hmm, I was actually talking about F2, not the whole unitary. Or, I am missing something?
$endgroup$
– chubakueno
5 hours ago
$begingroup$
@chubakueno You said you wanted $m=3$, which means you need $F_3$, which is a $3times 3$ matrix which we must embed into a $4times 4$ matrix if we're using qubits.
$endgroup$
– DaftWullie
4 hours ago
$begingroup$
I understand now. So, is there an example of IQFT for non power of twos there? I would be surprised to find there isn't, but what do I know.
$endgroup$
– chubakueno
4 hours ago
$begingroup$
@chubakueno I didn't immediately find one. I've now constructed one for the $m=3$ case, but don't have time right now to write it into a circuit.
$endgroup$
– DaftWullie
4 hours ago
1
$begingroup$
@xbk365 once i’m done with the evening’s childcare responsibilities...
$endgroup$
– DaftWullie
2 hours ago
|
show 1 more comment
$begingroup$
This is not the unitary that you have to implement: you need a two-qubit unitary
$$
frac{1}{sqrt{3}}left(begin{array}{cccc}
1 & 1 & 1 & 0 \
1 & omega & omega^2 & 0 \
1 & omega^2 & omega & 0 \
0 & 0 & 0 & sqrt{3}
end{array}right),
$$
where $omega=e^{2ipi/3}$, the point being that if you introduce an ancilla qubit in the state 0, apply this unitary, and then measure in the computational basis, the 3 measurement outcomes 00, 01 and 10 correspond to the 3 POVM elements.
I don't (yet) have a circuit implementation for this. You'll see the paper you cite carefully avoids talking about the Fourier transform in non-power of 2 dimensions. You certainly could use the standard constructions based on Givens rotations, but the result is going to be fairly horrible.
Here's an attempt at a circuit. I've made a few tweaks since I last ran it through a computer to check, so it's always possible that a slight error has crept in, but broadly...

Here, I'm using $Z^r$ to denote
$$
left(begin{array}{cc} 1 & 0 \ 0 & e^{ipi r} end{array}right),
$$
and
$$
V=frac{1}{sqrt{3}}left(begin{array}{cc}
1 & sqrt{2} \ -sqrt{2} & 1
end{array}right).
$$
$endgroup$
$begingroup$
Hmm, I was actually talking about F2, not the whole unitary. Or, I am missing something?
$endgroup$
– chubakueno
5 hours ago
$begingroup$
@chubakueno You said you wanted $m=3$, which means you need $F_3$, which is a $3times 3$ matrix which we must embed into a $4times 4$ matrix if we're using qubits.
$endgroup$
– DaftWullie
4 hours ago
$begingroup$
I understand now. So, is there an example of IQFT for non power of twos there? I would be surprised to find there isn't, but what do I know.
$endgroup$
– chubakueno
4 hours ago
$begingroup$
@chubakueno I didn't immediately find one. I've now constructed one for the $m=3$ case, but don't have time right now to write it into a circuit.
$endgroup$
– DaftWullie
4 hours ago
1
$begingroup$
@xbk365 once i’m done with the evening’s childcare responsibilities...
$endgroup$
– DaftWullie
2 hours ago
|
show 1 more comment
$begingroup$
This is not the unitary that you have to implement: you need a two-qubit unitary
$$
frac{1}{sqrt{3}}left(begin{array}{cccc}
1 & 1 & 1 & 0 \
1 & omega & omega^2 & 0 \
1 & omega^2 & omega & 0 \
0 & 0 & 0 & sqrt{3}
end{array}right),
$$
where $omega=e^{2ipi/3}$, the point being that if you introduce an ancilla qubit in the state 0, apply this unitary, and then measure in the computational basis, the 3 measurement outcomes 00, 01 and 10 correspond to the 3 POVM elements.
I don't (yet) have a circuit implementation for this. You'll see the paper you cite carefully avoids talking about the Fourier transform in non-power of 2 dimensions. You certainly could use the standard constructions based on Givens rotations, but the result is going to be fairly horrible.
Here's an attempt at a circuit. I've made a few tweaks since I last ran it through a computer to check, so it's always possible that a slight error has crept in, but broadly...

Here, I'm using $Z^r$ to denote
$$
left(begin{array}{cc} 1 & 0 \ 0 & e^{ipi r} end{array}right),
$$
and
$$
V=frac{1}{sqrt{3}}left(begin{array}{cc}
1 & sqrt{2} \ -sqrt{2} & 1
end{array}right).
$$
$endgroup$
This is not the unitary that you have to implement: you need a two-qubit unitary
$$
frac{1}{sqrt{3}}left(begin{array}{cccc}
1 & 1 & 1 & 0 \
1 & omega & omega^2 & 0 \
1 & omega^2 & omega & 0 \
0 & 0 & 0 & sqrt{3}
end{array}right),
$$
where $omega=e^{2ipi/3}$, the point being that if you introduce an ancilla qubit in the state 0, apply this unitary, and then measure in the computational basis, the 3 measurement outcomes 00, 01 and 10 correspond to the 3 POVM elements.
I don't (yet) have a circuit implementation for this. You'll see the paper you cite carefully avoids talking about the Fourier transform in non-power of 2 dimensions. You certainly could use the standard constructions based on Givens rotations, but the result is going to be fairly horrible.
Here's an attempt at a circuit. I've made a few tweaks since I last ran it through a computer to check, so it's always possible that a slight error has crept in, but broadly...

Here, I'm using $Z^r$ to denote
$$
left(begin{array}{cc} 1 & 0 \ 0 & e^{ipi r} end{array}right),
$$
and
$$
V=frac{1}{sqrt{3}}left(begin{array}{cc}
1 & sqrt{2} \ -sqrt{2} & 1
end{array}right).
$$
edited 1 hour ago
answered 5 hours ago
DaftWullieDaftWullie
14.5k1541
14.5k1541
$begingroup$
Hmm, I was actually talking about F2, not the whole unitary. Or, I am missing something?
$endgroup$
– chubakueno
5 hours ago
$begingroup$
@chubakueno You said you wanted $m=3$, which means you need $F_3$, which is a $3times 3$ matrix which we must embed into a $4times 4$ matrix if we're using qubits.
$endgroup$
– DaftWullie
4 hours ago
$begingroup$
I understand now. So, is there an example of IQFT for non power of twos there? I would be surprised to find there isn't, but what do I know.
$endgroup$
– chubakueno
4 hours ago
$begingroup$
@chubakueno I didn't immediately find one. I've now constructed one for the $m=3$ case, but don't have time right now to write it into a circuit.
$endgroup$
– DaftWullie
4 hours ago
1
$begingroup$
@xbk365 once i’m done with the evening’s childcare responsibilities...
$endgroup$
– DaftWullie
2 hours ago
|
show 1 more comment
$begingroup$
Hmm, I was actually talking about F2, not the whole unitary. Or, I am missing something?
$endgroup$
– chubakueno
5 hours ago
$begingroup$
@chubakueno You said you wanted $m=3$, which means you need $F_3$, which is a $3times 3$ matrix which we must embed into a $4times 4$ matrix if we're using qubits.
$endgroup$
– DaftWullie
4 hours ago
$begingroup$
I understand now. So, is there an example of IQFT for non power of twos there? I would be surprised to find there isn't, but what do I know.
$endgroup$
– chubakueno
4 hours ago
$begingroup$
@chubakueno I didn't immediately find one. I've now constructed one for the $m=3$ case, but don't have time right now to write it into a circuit.
$endgroup$
– DaftWullie
4 hours ago
1
$begingroup$
@xbk365 once i’m done with the evening’s childcare responsibilities...
$endgroup$
– DaftWullie
2 hours ago
$begingroup$
Hmm, I was actually talking about F2, not the whole unitary. Or, I am missing something?
$endgroup$
– chubakueno
5 hours ago
$begingroup$
Hmm, I was actually talking about F2, not the whole unitary. Or, I am missing something?
$endgroup$
– chubakueno
5 hours ago
$begingroup$
@chubakueno You said you wanted $m=3$, which means you need $F_3$, which is a $3times 3$ matrix which we must embed into a $4times 4$ matrix if we're using qubits.
$endgroup$
– DaftWullie
4 hours ago
$begingroup$
@chubakueno You said you wanted $m=3$, which means you need $F_3$, which is a $3times 3$ matrix which we must embed into a $4times 4$ matrix if we're using qubits.
$endgroup$
– DaftWullie
4 hours ago
$begingroup$
I understand now. So, is there an example of IQFT for non power of twos there? I would be surprised to find there isn't, but what do I know.
$endgroup$
– chubakueno
4 hours ago
$begingroup$
I understand now. So, is there an example of IQFT for non power of twos there? I would be surprised to find there isn't, but what do I know.
$endgroup$
– chubakueno
4 hours ago
$begingroup$
@chubakueno I didn't immediately find one. I've now constructed one for the $m=3$ case, but don't have time right now to write it into a circuit.
$endgroup$
– DaftWullie
4 hours ago
$begingroup$
@chubakueno I didn't immediately find one. I've now constructed one for the $m=3$ case, but don't have time right now to write it into a circuit.
$endgroup$
– DaftWullie
4 hours ago
1
1
$begingroup$
@xbk365 once i’m done with the evening’s childcare responsibilities...
$endgroup$
– DaftWullie
2 hours ago
$begingroup$
@xbk365 once i’m done with the evening’s childcare responsibilities...
$endgroup$
– DaftWullie
2 hours ago
|
show 1 more comment
xbk365 is a new contributor. Be nice, and check out our Code of Conduct.
xbk365 is a new contributor. Be nice, and check out our Code of Conduct.
xbk365 is a new contributor. Be nice, and check out our Code of Conduct.
xbk365 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Quantum Computing Stack Exchange!
- 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.
Use MathJax to format equations. MathJax reference.
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%2fquantumcomputing.stackexchange.com%2fquestions%2f5620%2fpovm-three-qubit-circuit-for-symmetric-quantum-states%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