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

934 B
Raw Permalink Blame History

A library to manipulate qubits and simulate quantum circuits Github found here.

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 in Q#.