Notepad/enter/Machine Tips (Quantum)/Resources/Code & Circuit Operations/Languages/Q Sharp/Quantum.NET C sharp.md

13 lines
934 B
Markdown
Raw Permalink Normal View History

2023-07-05 18:29:11 +00:00
A library to manipulate qubits and simulate quantum circuits
Github found [here](https://github.com/phbaudin/quantum-computing).
```
QuantumRegister EPRPair = QuantumRegister.EPRPair; // (|00> + |11>) / √2 (EinsteinPodolskyRosen pair)
QuantumRegister WState = QuantumRegister.WState; // (|001> + |010> + |100>) / √3 (W state)
QuantumRegister WState4 = QuantumRegister.WStateOfLength(4); // (|0001> + |0010> + |0100> + |1000>) / 2 (generalized W state for 4 qubits)
QuantumRegister GHZState = QuantumRegister.GHZState; // (|000> + |111>) / √2 (simplest GreenbergerHorneZeilinger state)
QuantumRegister GHZState4 = QuantumRegister.GHZStateOfLength(4); // (|0000> + |1111>) / √2 (GHZ state for 4 qubits)
```
It seems to be an early precursor to Q#.
This is an excellent article on [how to translate a Gaussian Wave Function](https://guenp.medium.com/preparing-a-gaussian-wave-function-in-q-695c3941f6dc) in Q#.