6
6
/// of 2-outcome measurements to multiple qubits and other bases.
7
7
namespace Sample {
8
8
open Microsoft .Quantum .Diagnostics ;
9
+
9
10
@EntryPoint()
10
- operation Main () : (Result , Result []) {
11
+ operation Main () : (Result , Result []) {
11
12
// Prepare an entangled state.
12
13
use qs = Qubit [2 ]; // |00〉
13
14
H (qs [0 ]); // 1/sqrt(2)(|00〉 + |10〉)
@@ -20,7 +21,7 @@ namespace Sample {
20
21
// of the first two qubits. In this case, the parity measurement result
21
22
// will always be `Zero`.
22
23
// Notice how the state was not collapsed by the joint measurement.
23
- let parityResult = Measure ([PauliZ , PauliZ ], qs [... 1 ]);
24
+ let parityResult = Measure ([PauliZ , PauliZ ], qs [... 1 ]);
24
25
DumpMachine ();
25
26
26
27
// However, if we perform a measurement just on the first qubit, we can
@@ -29,12 +30,12 @@ namespace Sample {
29
30
DumpMachine ();
30
31
31
32
// Measuring the last qubit does not change the quantum state
32
- // since the state of the second qubit collapsed when the first qubit
33
+ // since the state of the second qubit collapsed when the first qubit
33
34
// was measured because they were entangled.
34
35
let secondQubitResult = M (qs [1 ]);
35
36
DumpMachine ();
36
37
37
38
ResetAll (qs );
38
39
return (parityResult , [firstQubitResult , secondQubitResult ]);
39
40
}
40
- }
41
+ }
0 commit comments