QuantumKatas/BasicGates
XField 9f4f919781
Update QDK to version 0.11.2003.3107 (#315)
2020-04-01 12:28:40 -07:00
..
.vscode First four katas 2018-07-11 16:35:59 -07:00
BasicGates.csproj Update QDK to version 0.11.2003.3107 (#315) 2020-04-01 12:28:40 -07:00
BasicGates.ipynb Update QDK to version 0.11.2003.3107 (#315) 2020-04-01 12:28:40 -07:00
BasicGates.sln First four katas 2018-07-11 16:35:59 -07:00
README.md Another batch of fixes for QDK 0.6 (#112) 2019-05-09 13:08:45 -07:00
ReferenceImplementation.qs [BasicGates] Improve error messaging (#300) 2020-03-19 00:02:34 -07:00
Tasks.qs [BasicGates] Improve error messaging (#300) 2020-03-19 00:02:34 -07:00
TestSuiteRunner.cs First four katas 2018-07-11 16:35:59 -07:00
Tests.qs [BasicGates] Improve error messaging (#300) 2020-03-19 00:02:34 -07:00

README.md

Welcome!

The basic gates kata covers the basic operations (a.k.a. "gates") used in quantum computing, as well as the concept of controlled and adjoint versions of gates.

You can run the BasicGates kata as a Jupyter Notebook!

Theory

  • A list of most common gates can be found in this Wikipedia article.
  • Quirk is a convenient tool for visualizing the effect of gates on qubit states.

Q# materials

  • Basic gates provided in Q# belong to the Microsoft.Quantum.Intrinsic namespace and are listed here.
  • Using controlled and adjoint versions of gates is covered in the Q# documentation on operation types.
  • Defining controlled and adjoint versions of gates is covered in the Q# documentation on operation definitions.