2018-10-30 18:48:56 +03:00
// Copyright (c) Microsoft Corporation. All rights reserved.
2018-07-12 02:35:59 +03:00
// Licensed under the MIT license.
//////////////////////////////////////////////////////////////////////
2018-10-30 18:48:56 +03:00
// This file contains testing harness for all tasks.
2018-07-12 02:35:59 +03:00
// You should not modify anything in this file.
// The tasks themselves can be found in Tasks.qs file.
//////////////////////////////////////////////////////////////////////
2018-10-30 18:48:56 +03:00
namespace Quantum.Kata.Measurements {
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
open Microsoft.Quantum.Intrinsic;
2018-07-12 02:35:59 +03:00
open Microsoft.Quantum.Canon;
2019-05-04 02:46:04 +03:00
open Microsoft.Quantum.Diagnostics;
open Microsoft.Quantum.Convert;
open Microsoft.Quantum.Math;
2019-08-23 09:43:03 +03:00
open Microsoft.Quantum.Arrays;
2019-04-26 01:57:30 +03:00
open Quantum.Kata.Utils;
2018-07-12 02:35:59 +03:00
//////////////////////////////////////////////////////////////////
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// "Framework" operation for testing single-qubit tasks for distinguishing states of one qubit
// with Bool return
2019-12-31 01:50:29 +03:00
operation DistinguishTwoStates_OneQubit (statePrep : ((Qubit, Int) => Unit), testImpl : (Qubit => Bool), stateName : String[]) : Unit {
2018-10-30 18:48:56 +03:00
let nTotal = 100;
2019-12-31 01:50:29 +03:00
let nStates = 2;
mutable misclassifications = new Int[nStates];
2018-10-30 18:48:56 +03:00
using (qs = Qubit[1]) {
for (i in 1 .. nTotal) {
// get a random bit to define whether qubit will be in a state corresponding to true return (1) or to false one (0)
// state = 0 false return
// state = 1 true return
let state = RandomIntPow2(1);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// do state prep: convert |0⟩ to outcome with false return or to outcome with true return depending on state
statePrep(qs[0], state);
2019-08-23 09:43:03 +03:00
2019-12-31 01:50:29 +03:00
// get the solution's answer and verify if NOT a match, then differentiate what kind of mismatch
2018-10-30 18:48:56 +03:00
let ans = testImpl(qs[0]);
2019-12-31 01:50:29 +03:00
if (ans != (state == 1)) {
set misclassifications w/= state <- misclassifications[state] + 1;
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// we're not checking the state of the qubit after the operation
Reset(qs[0]);
2018-07-12 02:35:59 +03:00
}
}
2019-12-31 01:50:29 +03:00
mutable totalMisclassifications = 0;
for (i in 0 .. nStates - 1) {
if (misclassifications[i] != 0) {
set totalMisclassifications += misclassifications[i];
Message($"Misclassified {stateName[i]} as {stateName[1 - i]} in {misclassifications[i]} test runs.");
}
}
// This check will tell the total number of failed classifications
Fact(totalMisclassifications == 0, $"{totalMisclassifications} test runs out of {nTotal} returned incorrect state (see output for details).");
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation StatePrep_IsQubitOne (q : Qubit, state : Int) : Unit {
2019-05-04 02:46:04 +03:00
if (state != 0) {
2018-10-30 18:48:56 +03:00
// convert |0⟩ to |1⟩
X(q);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation T101_IsQubitOne_Test () : Unit {
2019-12-31 01:50:29 +03:00
DistinguishTwoStates_OneQubit(StatePrep_IsQubitOne, IsQubitOne, ["|0⟩", "|1⟩"]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-10-17 02:41:22 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation T102_InitializeQubit_Test () : Unit {
using (qs = Qubit[1]) {
for (i in 0 .. 36) {
2019-05-04 02:46:04 +03:00
let alpha = ((2.0 * PI()) * IntAsDouble(i)) / 36.0;
2018-10-30 18:48:56 +03:00
Ry(2.0 * alpha, qs[0]);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// Test Task 1
InitializeQubit(qs[0]);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// Confirm that the state is |0⟩.
AssertAllZero(qs);
2018-10-17 02:41:22 +03:00
}
}
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation StatePrep_IsQubitPlus (q : Qubit, state : Int) : Unit {
if (state == 0) {
// convert |0⟩ to |-⟩
X(q);
H(q);
} else {
// convert |0⟩ to |+⟩
H(q);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation T103_IsQubitPlus_Test () : Unit {
2019-12-31 01:50:29 +03:00
DistinguishTwoStates_OneQubit(StatePrep_IsQubitPlus, IsQubitPlus, ["|-⟩", "|+⟩"]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
// |A⟩ = cos(alpha) * |0⟩ + sin(alpha) * |1⟩,
2018-08-06 20:56:25 +03:00
// |B⟩ = - sin(alpha) * |0⟩ + cos(alpha) * |1⟩.
2018-10-30 18:48:56 +03:00
operation StatePrep_IsQubitA (alpha : Double, q : Qubit, state : Int) : Unit {
if (state == 0) {
// convert |0⟩ to |B⟩
X(q);
Ry(2.0 * alpha, q);
} else {
// convert |0⟩ to |A⟩
Ry(2.0 * alpha, q);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation T104_IsQubitA_Test () : Unit {
// cross-test
// alpha = 0.0 or PI() => !isQubitOne
// alpha = PI() / 2.0 => isQubitOne
2019-12-31 01:50:29 +03:00
DistinguishTwoStates_OneQubit(StatePrep_IsQubitOne, IsQubitA(PI() / 2.0, _),
[$"|B⟩=(-sin(π/2)|0⟩ + cos(π/2)|1⟩)", $"|A⟩=(cos(π/2)|0⟩ + sin(π/2)|1⟩)"]);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// alpha = PI() / 4.0 => isQubitPlus
2019-12-31 01:50:29 +03:00
DistinguishTwoStates_OneQubit(StatePrep_IsQubitPlus, IsQubitA(PI() / 4.0, _),
[$"|B⟩=(-sin(π/4)|0⟩ + cos(π/4)|1⟩)", $"|A⟩=(cos(π/4)|0⟩ + sin(π/4)|1⟩)"]);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
for (i in 0 .. 10) {
2019-05-04 02:46:04 +03:00
let alpha = (PI() * IntAsDouble(i)) / 10.0;
2019-12-31 01:50:29 +03:00
DistinguishTwoStates_OneQubit(StatePrep_IsQubitA(alpha, _, _), IsQubitA(alpha, _),
[$"|B⟩=(-sin({i}π/10)|0⟩ + cos({i}π/10)|1⟩)", $"|A⟩=(cos({i}π/10)|0⟩ + sin({i}π/10)|1⟩)"]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// "Framework" operation for testing multi-qubit tasks for distinguishing states of an array of qubits
// with Int return
2019-08-23 09:43:03 +03:00
operation DistinguishStates_MultiQubit (Nqubit : Int,
Nstate : Int,
statePrep : ((Qubit[], Int) => Unit),
testImpl : (Qubit[] => Int),
2019-04-26 01:57:30 +03:00
measurementsPerRun : Int) : Unit {
2018-10-30 18:48:56 +03:00
let nTotal = 100;
mutable nOk = 0;
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
using (qs = Qubit[Nqubit]) {
for (i in 1 .. nTotal) {
// get a random integer to define the state of the qubits
let state = RandomInt(Nstate);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// do state prep: convert |0...0⟩ to outcome with return equal to state
statePrep(qs, state);
2019-08-23 09:43:03 +03:00
2019-04-26 01:57:30 +03:00
if (measurementsPerRun > 0) {
ResetOracleCallsCount();
}
2018-10-30 18:48:56 +03:00
// get the solution's answer and verify that it's a match
let ans = testImpl(qs);
if (ans == state) {
2019-05-04 02:46:04 +03:00
set nOk += 1;
2018-07-12 02:35:59 +03:00
}
2019-04-26 01:57:30 +03:00
// if we have a max number of measurements per solution run specified, check that it is not exceeded
if (measurementsPerRun > 0) {
let nm = GetOracleCallsCount(M) + GetOracleCallsCount(Measure);
2019-05-04 02:46:04 +03:00
EqualityFactB(nm <= 1, true, $"You are allowed to do at most one measurement, and you did {nm}");
2019-04-26 01:57:30 +03:00
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// we're not checking the state of the qubit after the operation
ResetAll(qs);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
EqualityFactI(nOk, nTotal, $"{nTotal - nOk} test runs out of {nTotal} returned incorrect state.");
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation StatePrep_ZeroZeroOrOneOne (qs : Qubit[], state : Int) : Unit {
if (state == 1) {
// |11⟩
X(qs[0]);
X(qs[1]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation T105_ZeroZeroOrOneOne_Test () : Unit {
2019-04-26 01:57:30 +03:00
DistinguishStates_MultiQubit(2, 2, StatePrep_ZeroZeroOrOneOne, ZeroZeroOrOneOne, 0);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation StatePrep_BasisStateMeasurement (qs : Qubit[], state : Int) : Unit {
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
if (state / 2 == 1) {
// |10⟩ or |11⟩
X(qs[0]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
if (state % 2 == 1) {
// |01⟩ or |11⟩
X(qs[1]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation T106_BasisStateMeasurement_Test () : Unit {
2019-04-26 01:57:30 +03:00
DistinguishStates_MultiQubit(2, 4, StatePrep_BasisStateMeasurement, BasisStateMeasurement, 0);
2018-10-30 18:48:56 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation StatePrep_Bitstring (qs : Qubit[], bits : Bool[]) : Unit {
for (i in 0 .. Length(qs) - 1) {
if (bits[i]) {
X(qs[i]);
2018-07-12 02:35:59 +03:00
}
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation StatePrep_TwoBitstringsMeasurement (qs : Qubit[], bits1 : Bool[], bits2 : Bool[], state : Int) : Unit {
2019-05-04 02:46:04 +03:00
let bits = state == 0 ? bits1 | bits2;
StatePrep_Bitstring(qs, bits);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2019-04-26 01:57:30 +03:00
operation CheckTwoBitstringsMeasurement (b1 : Bool[], b2 : Bool[]) : Unit {
DistinguishStates_MultiQubit(Length(b1), 2, StatePrep_TwoBitstringsMeasurement(_, b1, b2, _), TwoBitstringsMeasurement(_, b1, b2), 1);
}
2018-10-30 18:48:56 +03:00
operation T107_TwoBitstringsMeasurement_Test () : Unit {
2019-04-26 01:57:30 +03:00
CheckTwoBitstringsMeasurement([false, true], [true, false]);
CheckTwoBitstringsMeasurement([true, true, false], [false, true, true]);
CheckTwoBitstringsMeasurement([false, true, true, false], [false, true, true, true]);
CheckTwoBitstringsMeasurement([true, false, false, false], [true, false, true, true]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
// ------------------------------------------------------
operation StatePrep_FindFirstDiff (bits1 : Bool[], bits2 : Bool[]) : Int {
mutable firstDiff = -1;
for (i in 0 .. Length(bits1) - 1) {
if (bits1[i] != bits2[i] and firstDiff == -1) {
set firstDiff = i;
}
}
return firstDiff;
}
// a combination of tasks 14 and 15 from the Superposition kata
operation StatePrep_BitstringSuperposition (qs : Qubit[], bits : Bool[][]) : Unit {
let L = Length(bits);
2019-10-23 08:51:20 +03:00
Fact(L == 1 or L == 2 or L == 4, "State preparation only supports arrays of 1, 2 or 4 bit strings");
2019-08-23 09:43:03 +03:00
if (L == 1) {
for (i in 0 .. Length(qs) - 1) {
if (bits[0][i]) {
X(qs[i]);
}
}
}
if (L == 2) {
// find the index of the first bit at which the bit strings are different
let firstDiff = StatePrep_FindFirstDiff(bits[0], bits[1]);
// Hadamard corresponding qubit to create superposition
H(qs[firstDiff]);
// iterate through the bit strings again setting the final state of qubits
for (i in 0 .. Length(qs) - 1) {
if (bits[0][i] == bits[1][i]) {
// if two bits are the same, apply X or nothing
if (bits[0][i]) {
X(qs[i]);
}
} else {
// if two bits are different, set their difference using CNOT
if (i > firstDiff) {
CNOT(qs[firstDiff], qs[i]);
if (bits[0][i] != bits[0][firstDiff]) {
X(qs[i]);
}
}
}
}
}
if (L == 4) {
let N = Length(qs);
using (anc = Qubit[2]) {
// Put two ancillas into equal superposition of 2-qubit basis states
ApplyToEachA(H, anc);
// Set up the right pattern on the main qubits with control on ancillas
for (i in 0 .. 3) {
for (j in 0 .. N - 1) {
if ((bits[i])[j]) {
(ControlledOnInt(i, X))(anc, qs[j]);
}
}
}
// Uncompute the ancillas, using patterns on main qubits as control
for (i in 0 .. 3) {
if (i % 2 == 1) {
(ControlledOnBitString(bits[i], X))(qs, anc[0]);
}
if (i / 2 == 1) {
(ControlledOnBitString(bits[i], X))(qs, anc[1]);
}
}
}
}
}
operation StatePrep_SuperpositionMeasurement (qs : Qubit[], bits1 : Bool[][], bits2 : Bool[][], state : Int) : Unit {
let bits = state == 0 ? bits1 | bits2;
StatePrep_BitstringSuperposition(qs, bits);
}
operation CheckSuperpositionBitstringsOneMeasurement (nQubits : Int, ints1 : Int[], ints2 : Int[]): Unit {
let bits1 = Mapped(IntAsBoolArray(_, nQubits), ints1);
let bits2 = Mapped(IntAsBoolArray(_, nQubits), ints2);
DistinguishStates_MultiQubit(nQubits, 2, StatePrep_SuperpositionMeasurement(_, bits1, bits2, _),
SuperpositionOneMeasurement(_, bits1, bits2), 1);
}
operation T108_SuperpositionOneMeasurement_Test () : Unit {
CheckSuperpositionBitstringsOneMeasurement(2, [2], // [10]
[1]); // [01]
CheckSuperpositionBitstringsOneMeasurement(2, [2,3], // [10,11]
[1,0]); // [01,00]
CheckSuperpositionBitstringsOneMeasurement(2, [2], // [10]
[1,0]); // [01,00]
CheckSuperpositionBitstringsOneMeasurement(4, [15,7], // [1111,0111]
[0,8]); // [0000,1000]
CheckSuperpositionBitstringsOneMeasurement(4, [15,7], // [1111,0111]
[0,8,10,12]); // [0000,1000,1010,1100]
CheckSuperpositionBitstringsOneMeasurement(5, [30,14,10,6], // [11110,01110,01010,00110]
[1,17,21,25]); // [00001,10001,10101,11001]
2019-10-23 08:51:20 +03:00
CheckSuperpositionBitstringsOneMeasurement(2, [0,2], // [00,10]
[3]); // [11]
CheckSuperpositionBitstringsOneMeasurement(3, [5,7], // [101,111]
[2]); // [010]
CheckSuperpositionBitstringsOneMeasurement(4, [13,11,7,3], // [1101,1011,0111,0011]
[2,4]); // [0010,0100]
2019-08-23 09:43:03 +03:00
}
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2019-08-23 09:43:03 +03:00
operation CheckSuperpositionBitstringsMeasurement (nQubits : Int, ints1 : Int[], ints2 : Int[]): Unit {
let bits1 = Mapped(IntAsBoolArray(_, nQubits), ints1);
let bits2 = Mapped(IntAsBoolArray(_, nQubits), ints2);
DistinguishStates_MultiQubit(nQubits, 2, StatePrep_SuperpositionMeasurement(_, bits1, bits2, _),
SuperpositionMeasurement(_, bits1, bits2), 0);
}
operation T109_SuperpositionMeasurement_Test () : Unit {
CheckSuperpositionBitstringsMeasurement(2, [2], // [10]
[1]); // [01]
CheckSuperpositionBitstringsMeasurement(2, [2,1], // [10,01]
[3,0]); // [11,00]
CheckSuperpositionBitstringsMeasurement(2, [2], // [10]
[3,0]); // [11,00]
CheckSuperpositionBitstringsMeasurement(4, [15,6], // [1111,0110]
[0,14]); // [0000,1110]
CheckSuperpositionBitstringsMeasurement(4, [15,7], // [1111,0111]
[0,8,10,13]); // [0000,1000,1010,1101]
CheckSuperpositionBitstringsMeasurement(5, [30,14,10,7], // [11110,01110,01010,00111]
[1,17,21,27]); // [00001,10001,10101,11011]
2019-10-23 08:51:20 +03:00
CheckSuperpositionBitstringsMeasurement(2, [2,1], // [10,01]
[3]); // [11]
CheckSuperpositionBitstringsMeasurement(3, [7,5], // [111,101]
[2]); // [010]
CheckSuperpositionBitstringsMeasurement(4, [13,11,7,3], // [1101,1011,0111,0011]
[5,2]); // [0101,0010]
2019-08-23 09:43:03 +03:00
}
// ------------------------------------------------------
operation WState_Arbitrary_Reference (qs : Qubit[]) : Unit is Adj + Ctl {
2019-05-04 02:46:04 +03:00
let N = Length(qs);
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
if (N == 1) {
// base case of recursion: |1⟩
X(qs[0]);
} else {
// |W_N> = |0⟩|W_(N-1)> + |1⟩|0...0⟩
// do a rotation on the first qubit to split it into |0⟩ and |1⟩ with proper weights
// |0⟩ -> sqrt((N-1)/N) |0⟩ + 1/sqrt(N) |1⟩
let theta = ArcSin(1.0 / Sqrt(IntAsDouble(N)));
Ry(2.0 * theta, qs[0]);
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
// do a zero-controlled W-state generation for qubits 1..N-1
X(qs[0]);
Controlled WState_Arbitrary_Reference(qs[0 .. 0], qs[1 .. N - 1]);
X(qs[0]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation StatePrep_AllZerosOrWState (qs : Qubit[], state : Int) : Unit {
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
if (state == 1) {
// prep W state
WState_Arbitrary_Reference(qs);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
operation T110_AllZerosOrWState_Test () : Unit {
2018-10-30 18:48:56 +03:00
for (i in 2 .. 6) {
2019-04-26 01:57:30 +03:00
DistinguishStates_MultiQubit(i, 2, StatePrep_AllZerosOrWState, AllZerosOrWState, 0);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2019-08-23 09:43:03 +03:00
operation GHZ_State_Reference (qs : Qubit[]) : Unit is Adj {
2019-05-04 02:46:04 +03:00
H(qs[0]);
for (i in 1 .. Length(qs) - 1) {
CNOT(qs[0], qs[i]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation StatePrep_GHZOrWState (qs : Qubit[], state : Int) : Unit {
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
if (state == 0) {
// prep GHZ state
GHZ_State_Reference(qs);
} else {
// prep W state
WState_Arbitrary_Reference(qs);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
operation T111_GHZOrWState_Test () : Unit {
2018-10-30 18:48:56 +03:00
for (i in 2 .. 6) {
2019-04-26 01:57:30 +03:00
DistinguishStates_MultiQubit(i, 2, StatePrep_GHZOrWState, GHZOrWState, 0);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-08-06 20:56:25 +03:00
// 0 - |Φ⁺⟩ = (|00⟩ + |11⟩) / sqrt(2)
// 1 - |Φ⁻⟩ = (|00⟩ - |11⟩) / sqrt(2)
// 2 - |Ψ⁺⟩ = (|01⟩ + |10⟩) / sqrt(2)
// 3 - |Ψ⁻⟩ = (|01⟩ - |10⟩) / sqrt(2)
2018-10-30 18:48:56 +03:00
operation StatePrep_BellState (qs : Qubit[], state : Int) : Unit {
H(qs[0]);
CNOT(qs[0], qs[1]);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// now we have |00⟩ + |11⟩ - modify it based on state arg
if (state % 2 == 1) {
// negative phase
Z(qs[1]);
2018-07-12 02:35:59 +03:00
}
2018-10-30 18:48:56 +03:00
if (state / 2 == 1) {
X(qs[1]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
operation T112_BellState_Test () : Unit {
2019-04-26 01:57:30 +03:00
DistinguishStates_MultiQubit(2, 4, StatePrep_BellState, BellState, 0);
2018-10-30 18:48:56 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-08-06 20:56:25 +03:00
// 0 - (|00⟩ + |01⟩ + |10⟩ + |11⟩) / 2
// 1 - (|00⟩ - |01⟩ + |10⟩ - |11⟩) / 2
// 2 - (|00⟩ + |01⟩ - |10⟩ - |11⟩) / 2
// 3 - (|00⟩ - |01⟩ - |10⟩ + |11⟩) / 2
2018-10-30 18:48:56 +03:00
operation StatePrep_TwoQubitState (qs : Qubit[], state : Int) : Unit {
// start with state prep of basis vectors
StatePrep_BasisStateMeasurement(qs, state);
H(qs[0]);
H(qs[1]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
operation T113_TwoQubitState_Test () : Unit {
2019-04-26 01:57:30 +03:00
DistinguishStates_MultiQubit(2, 4, StatePrep_TwoQubitState, TwoQubitState, 0);
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-08-06 20:56:25 +03:00
// 0 - ( |00⟩ - |01⟩ - |10⟩ - |11⟩) / 2
// 1 - (-|00⟩ + |01⟩ - |10⟩ - |11⟩) / 2
// 2 - (-|00⟩ - |01⟩ + |10⟩ - |11⟩) / 2
// 3 - (-|00⟩ - |01⟩ - |10⟩ + |11⟩) / 2
2018-10-30 18:48:56 +03:00
operation StatePrep_TwoQubitStatePartTwo (qs : Qubit[], state : Int) : Unit {
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// start with state prep of basis vectors
StatePrep_BasisStateMeasurement(qs, state);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// now apply all gates for unitary in reference impl (in reverse + adjoint)
ApplyToEach(X, qs);
Controlled Z([qs[0]], qs[1]);
ApplyToEach(X, qs);
ApplyToEach(H, qs);
ApplyToEach(X, qs);
Controlled Z([qs[0]], qs[1]);
ApplyToEach(X, qs);
SWAP(qs[0], qs[1]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
operation T114_TwoQubitStatePartTwo_Test () : Unit {
2019-04-26 01:57:30 +03:00
DistinguishStates_MultiQubit(2, 4, StatePrep_TwoQubitStatePartTwo, TwoQubitStatePartTwo, 0);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// ------------------------------------------------------
2019-08-23 09:43:03 +03:00
operation StatePrep_ThreeQubitMeasurement (qs : Qubit[], state : Int) : Unit is Adj {
2019-05-04 02:46:04 +03:00
WState_Arbitrary_Reference(qs);
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
if (state == 0) {
// prep 1/sqrt(3) ( |100⟩ + ω |010⟩ + ω² |001⟩ )
R1(2.0 * PI() / 3.0, qs[1]);
R1(4.0 * PI() / 3.0, qs[2]);
} else {
// prep 1/sqrt(3) ( |100⟩ + ω² |010⟩ + ω |001⟩ )
R1(4.0 * PI() / 3.0, qs[1]);
R1(2.0 * PI() / 3.0, qs[2]);
2019-04-20 20:16:25 +03:00
}
}
2019-08-23 09:43:03 +03:00
operation T115_ThreeQubitMeasurement_Test () : Unit {
2019-04-26 01:57:30 +03:00
DistinguishStates_MultiQubit(3, 2, StatePrep_ThreeQubitMeasurement, ThreeQubitMeasurement, 0);
2019-04-20 20:16:25 +03:00
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
2018-07-12 02:35:59 +03:00
//////////////////////////////////////////////////////////////////
2019-04-26 01:57:30 +03:00
// Part II*. Discriminating Nonorthogonal States
//////////////////////////////////////////////////////////////////
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation StatePrep_IsQubitZeroOrPlus (q : Qubit, state : Int) : Unit {
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
if (state != 0) {
2018-10-30 18:48:56 +03:00
// convert |0⟩ to |+⟩
H(q);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// "Framework" operation for testing multi-qubit tasks for distinguishing states of an array of qubits
// with Int return. Framework tests against a threshold parameter for the fraction of runs that must succeed.
2018-10-30 18:48:56 +03:00
operation DistinguishStates_MultiQubit_Threshold (Nqubit : Int, Nstate : Int, threshold : Double, statePrep : ((Qubit, Int) => Unit), testImpl : (Qubit => Bool)) : Unit {
let nTotal = 1000;
mutable nOk = 0;
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
using (qs = Qubit[Nqubit]) {
for (i in 1 .. nTotal) {
// get a random integer to define the state of the qubits
let state = RandomInt(Nstate);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// do state prep: convert |0⟩ to outcome with return equal to state
statePrep(qs[0], state);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// get the solution's answer and verify that it's a match
let ans = testImpl(qs[0]);
if (ans == (state == 0)) {
2019-05-04 02:46:04 +03:00
set nOk += 1;
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// we're not checking the state of the qubit after the operation
ResetAll(qs);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
if (IntAsDouble(nOk) < threshold * IntAsDouble(nTotal)) {
2018-10-30 18:48:56 +03:00
fail $"{nTotal - nOk} test runs out of {nTotal} returned incorrect state which does not meet the required threshold of at least {threshold * 100.0}%.";
}
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2019-04-26 01:57:30 +03:00
operation T201_IsQubitZeroOrPlus_Test () : Unit {
DistinguishStates_MultiQubit_Threshold(1, 2, 0.8, StatePrep_IsQubitZeroOrPlus, IsQubitPlusOrZero);
}
2019-08-23 09:43:03 +03:00
2019-04-26 01:57:30 +03:00
// ------------------------------------------------------
2018-07-12 02:35:59 +03:00
// "Framework" operation for testing multi-qubit tasks for distinguishing states of an array of qubits
// with Int return. Framework tests against a threshold parameter for the fraction of runs that must succeed.
// Framework tests in the USD scenario, i.e., it is allowed to respond "inconclusive" (with some probability)
2018-10-30 18:48:56 +03:00
// up to given threshold, but it is never allowed to err if an actual conclusive response is given.
operation USD_DistinguishStates_MultiQubit_Threshold (Nqubit : Int, Nstate : Int, thresholdInconcl : Double, thresholdConcl : Double, statePrep : ((Qubit, Int) => Unit), testImpl : (Qubit => Int)) : Unit {
let nTotal = 10000;
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// counts total inconclusive answers
mutable nInconc = 0;
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// counts total conclusive |0⟩ state identifications
mutable nConclOne = 0;
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// counts total conclusive |+> state identifications
mutable nConclPlus = 0;
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
using (qs = Qubit[Nqubit]) {
for (i in 1 .. nTotal) {
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// get a random integer to define the state of the qubits
let state = RandomInt(Nstate);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// do state prep: convert |0⟩ to outcome with return equal to state
statePrep(qs[0], state);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// get the solution's answer and verify that it's a match
let ans = testImpl(qs[0]);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// check that the answer is actually in allowed range
2019-04-16 05:02:38 +03:00
if (ans < -1 or ans > 1) {
2018-10-30 18:48:56 +03:00
fail $"state {state} led to invalid response {ans}.";
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// keep track of the number of inconclusive answers given
if (ans == -1) {
2019-05-04 02:46:04 +03:00
set nInconc += 1;
2018-10-30 18:48:56 +03:00
}
2019-08-23 09:43:03 +03:00
2019-04-16 05:02:38 +03:00
if (ans == 0 and state == 0) {
2019-05-04 02:46:04 +03:00
set nConclOne += 1;
2018-10-30 18:48:56 +03:00
}
2019-08-23 09:43:03 +03:00
2019-04-16 05:02:38 +03:00
if (ans == 1 and state == 1) {
2019-05-04 02:46:04 +03:00
set nConclPlus += 1;
2018-10-30 18:48:56 +03:00
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// check if upon conclusive result the answer is actually correct
2019-04-16 05:02:38 +03:00
if (ans == 0 and state == 1 or ans == 1 and state == 0) {
2018-10-30 18:48:56 +03:00
fail $"state {state} led to incorrect conclusive response {ans}.";
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// we're not checking the state of the qubit after the operation
ResetAll(qs);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
if (IntAsDouble(nInconc) > thresholdInconcl * IntAsDouble(nTotal)) {
2018-10-30 18:48:56 +03:00
fail $"{nInconc} test runs out of {nTotal} returned inconclusive which does not meet the required threshold of at most {thresholdInconcl * 100.0}%.";
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
if (IntAsDouble(nConclOne) < thresholdConcl * IntAsDouble(nTotal)) {
2018-10-30 18:48:56 +03:00
fail $"Only {nConclOne} test runs out of {nTotal} returned conclusive |0⟩ which does not meet the required threshold of at least {thresholdConcl * 100.0}%.";
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
if (IntAsDouble(nConclPlus) < thresholdConcl * IntAsDouble(nTotal)) {
2018-10-30 18:48:56 +03:00
fail $"Only {nConclPlus} test runs out of {nTotal} returned conclusive |+> which does not meet the required threshold of at least {thresholdConcl * 100.0}%.";
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation T202_IsQubitZeroOrPlusSimpleUSD_Test () : Unit {
USD_DistinguishStates_MultiQubit_Threshold(1, 2, 0.8, 0.1, StatePrep_IsQubitZeroOrPlus, IsQubitPlusZeroOrInconclusiveSimpleUSD);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// ------------------------------------------------------
operation StatePrep_IsQubitNotInABC (q : Qubit, state : Int) : Unit {
let alpha = (2.0 * PI()) / 3.0;
H(q);
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
if (state == 0) {
// convert |0⟩ to 1/sqrt(2) (|0⟩ + |1⟩)
}
elif (state == 1) {
// convert |0⟩ to 1/sqrt(2) (|0⟩ + ω |1⟩), where ω = exp(2iπ/3)
R1(alpha, q);
}
else {
// convert |0⟩ to 1/sqrt(2) (|0⟩ + ω² |1⟩), where ω = exp(2iπ/3)
R1(2.0 * alpha, q);
}
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// "Framework" operation for testing multi-qubit tasks for distinguishing states of an array of qubits
// with Int return. Framework tests instances of the Peres/Wootters game. In this game, one of three
// "trine" states is presented and the algorithm must answer with a label that does not correspond
// to one of the label of the input state.
operation ABC_DistinguishStates_MultiQubit_Threshold (Nqubit : Int, Nstate : Int, statePrep : ((Qubit, Int) => Unit), testImpl : (Qubit => Int)) : Unit {
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
let nTotal = 1000;
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
using (qs = Qubit[Nqubit]) {
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
for (i in 1 .. nTotal) {
// get a random integer to define the state of the qubits
let state = RandomInt(Nstate);
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// do state prep: convert |0⟩ to outcome with return equal to state
statePrep(qs[0], state);
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// get the solution's answer and verify that it's a match
let ans = testImpl(qs[0]);
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// check that the value of ans is 0, 1 or 2
if (ans < 0 or ans > 2) {
fail "You can not return any value other than 0, 1 or 2.";
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// check if upon conclusive result the answer is actually correct
if (ans == state) {
fail $"State {state} led to incorrect conclusive response {ans}.";
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// we're not checking the state of the qubit after the operation
ResetAll(qs);
}
}
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
operation T203_IsQubitNotInABC_Test () : Unit {
ABC_DistinguishStates_MultiQubit_Threshold(1, 3, StatePrep_IsQubitNotInABC, IsQubitNotInABC);
}
2018-10-30 18:48:56 +03:00
}