We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exercise I.7.2
I think the relation should be $Y=SXS^\dagger$, also the decomposition of $U$ should change from $R_x(-\theta)\rightarrow R_x(\theta)$
Currently is $Y=-SXS^\dagger$
No response
The text was updated successfully, but these errors were encountered:
Hey @maplexgitx0302, looks like you're right! Here's some code just to show for the paper trail:
>>> mat = np.dot(qml.S.compute_matrix(), np.dot(qml.PauliX.compute_matrix(), np.conj(qml.S.compute_matrix()))) >>> mat tensor([[0.+0.j, 0.-1.j], [0.+1.j, 0.+0.j]], requires_grad=True) >>> mat == qml.PauliY.compute_matrix() tensor([[ True, True], [ True, True]], requires_grad=True) >>>
I'll make the fix shortly :)
Sorry, something went wrong.
No branches or pull requests
Node number
Exercise I.7.2
Expected behavior
I think the relation should be$Y=SXS^\dagger$ , also the decomposition of $U$ should change from $R_x(-\theta)\rightarrow R_x(\theta)$
Actual behavior
Currently is$Y=-SXS^\dagger$
Additional information
No response
Source code
No response
Tracebacks
No response
Check other issues
The text was updated successfully, but these errors were encountered: