What is the implication of a determinant being equal to zero?
Compute the inverse of
Compute the Taylor expansion of .
This is not too important for the class, but it could be useful and it is an interesting technique. By substituting in the expression for the Taylor series, compute the matrix exponential and .
When are stochastic matrices invertible? What properties have the stochastic matrices that represent reversible processes?
Consider two bits for which we know with complete certainty that they are in state 00
. What is the state vector representing them (in the sense of a vector that represents a classical probability distribution over possible states)?
Consider the same two bits as above. Transform the following two programs (given as pseudo code) into stochastic matrices acting on state vectors.
function f(bit1, bit2)
if bit1 == bit2
return (bit2, bit1)
else
return (bit1, bit2)
end
end
function g(bit1, bit2)
if bit1 == 0
if 0.5 ≤ rand()
return (0,0)
else
return (1,1)
end
else
return (1,0)
end
end
Write down the pseudo code corresponding to the following stochastic matrix:
i.e. a block-diagonal matrix where each block on the diagonal is the permutation matrix and everything else is zero.
Which of these matrices could represent a classical probabilistic process (and among them, which represent a classical process without any randomness)? Which matrices could represent a quantum process? Why and what do they mean?
Which of these quantum states correspond to distinguishable quantum probability distributions (i.e., you can perform observations that let you distinguish one state from the other)?
States of the form
States of the form
States of the form
States of the form
States of the form
We represent the following quantum states in a basis , , where and are two possible observable states. I.e. the first component of the vector is the amplitude for , etc.
What is the probability to observe or for each of them?
The "Z basis" or the "computational basis" is the basis of states and . What are the possible outcomes and the probability of observing each outcome for a measurement in the Z basis on the following quantum states:
For the same given quantum states as above, what are the possible results and the probabilities for observing these results if we are measuring in the basis of states and .
Consider a 3-level system (i.e. we need 3 vectors to define a complete basis). The most natural and simple basis is of course , , . We will call that basis BE. Instead of the BE basis, we will perform the measurements in the basis BU: , , and .
What can be? (Remember that measurable states need to be perfectly distinguishable, i.e. orthogonal).
How do we implement the measurement in BU if our device can natively perform only BE measurements? I.e. what gate do we need to add in front of the BE measurement in order for the gate + BE measurement to act as a BU measurement? Give that gate as a unitary matrix.
You are given the state . You perform a sequence of 3 measurements: Z followed by a Z, followed by a third Z. What are the possible 3-bit results you get (you get one bit from each measurement) and what is the probability with which you can obtain each? Answer the same question if the sequence of measurements is XXX and then also if it is XZZ.