The full scripts presented in this post are available at these links: MATLAB, Python
In the previous post, we saw that for any state , measuring the observable
can only result in one of the eigenvalues
of the Hermitian operator
associated with
. We concluded by asking what could be the probability of measuring one eigenvalue
rather than another one
.
An eigenvalue of
is associated with an eigenvector
. Now, remember that, by the first postulate, if the system is initially prepared in an arbitrary state
, the probability of finding it in state
is given by
. Postulates 1 to 3 taken together point towards the idea that the probability
of measuring the eigenvalue
for the system prepared in state
is equal to the probability
of finding the system in the eigenstate
associated with
. In other words, the more likely we are to find the system in a state
, the more likely we are to measure the eigenvalue
associated with
. That’s precisely what the fourth postulate states.
Postulate IV: For a system in state
, the probability of measuring the eigenvalue
of operator
is given by
(1)
where
is the degeneracy of
and the states
are the
eigenstates associated with
. If
is non-degenerate, that is, if
, we have
(2)
where
is the single eigenstate associated with
.
Note that we restrict the formulation of the postulates to quantum systems with a discrete spectrum and so we use a discrete summation in the formulation of the fourth postulate. This is always appropriate for describing spin states. On the contrary, it is not appropriate to describe harmonic oscillators, where the potential is a function of the special coordinates, like the orbitals of an electron in an atom. Still, even in this case, we can often treat the spin states of the electron independently of its spatial properties, and the above formulation remains appropriate.
If a single spin is in state , then Eq. 2 predicts that we have probabilities
and
to measure angular momenta
and
, respectively (expressed setting
). Conversely, if a single spin is in state
, then Eq. 2 predicts that we have probabilities
and
to measure angular momenta
and
, respectively. If the system is in a superposition of states, for example
(3)
or
(4)
then Eq. 2 predicts that there is an equal probability to measure both eigenvalues
(5)
An important consequence of the fourth postulate is that, if we repeat the same measurement of the observable on many identical quantum systems (or many times on a system prepared in the same state), then the expectation value of the measurement is
(6)
From the first to the second line, we the fact this identity of complex numbers: . From the second to the third line, we apply the complex transpose. From the third to the fourth line, we take out of the sum the element that do not depend on
. Finally, we recognize that the sum in the fourth line is the expression for the operator
that we gave in the previous post.
Note that the development we show here is only valid for non-degenerate operators. However, it can be shown that the relation of Eq. 6 holds for any Hermitian operator .
In NMR experiments, the recorded signal is the collective effect of many identical spin systems. Therefore, the measurement always results in an expectation value and does not give access to the state of an individual spin system. This is a key aspects of NMR experiments and we will come back to that in future posts.
For a spin in state , the expectation value of the quantity
is
, or using the notation of Eq. 6,
(7)
Similarly, the angular momentum along the -axis of the spin in the superposition state of Eq. 3 has an expectation value
because both states are equally probable. Using the notation of Eq. 6
(8)
As mentioned in the previous post, the states and
that we defined correspond to the state having its angular momentum oriented along the
and
axes, respectively. This can be verified by computing the expectation value of
for operator
and
for operator
(9)
(10)
For a single spin in an arbitrary state , with
, the expectation value in the three directions are
(11)
The expectations values of angular momentum operators can be computed in a computer program in the following way.
% Definition of the angular momentum operators
Ix = [0 +1;+1 0]/2;
Iy = [0 -1;+1 0]*1i/2;
Iz = [+1 0; 0 -1]/2;
% Definition of states
alpha = [1; 0]; % Pure state
x = [1; 1]/sqrt(2); % Superposition
y = [1; 1]/sqrt(2); % Superposition
psi = rand(2,1)+1i*rand(2,1); % Arbitrary
psi = psi/norm(psi);
% Expectations values of the alpha state all Cartesian coordinates
Ix_alpha = alpha'*Ix*alpha;
Iy_alpha = alpha'*Iy*alpha;
Iz_alpha = alpha'*Iz*alpha;
% Expectations values of the x state all Cartesian coordinates
Ix_x = x'*Ix*x;
Iy_x = x'*Iy*x;
Iz_x = x'*Iz*x;
% Expectations values of the y state all Cartesian coordinates
Ix_y = y'*Ix*y;
Iy_y = y'*Iy*y;
Iz_y = y'*Iz*y;
% Expectations values of the psi state all Cartesian coordinates
Ix_psi = psi'*Ix*psi;
Iy_psi = psi'*Iy*psi;
Iz_psi = psi'*Iz*psi;
# Definition of kets
alpha = np.array([1, 0])
x = np.array([1, 1])/np.sqrt(2)
y = np.array([1, 1j])/np.sqrt(2)
psi = np.random.rand(2)+1j*np.random.rand(2)
psi = psi/np.linalg.norm(psi)
# Definition of the angular momentum operators
Ix = np.array([[0, +1/2],[ +1/2, 0]])
Iy = np.array([[0, -1j/2],[+1j/2, 0]])
Iz = np.array([[+1/2, 0],[0, -1/2]])
# Function for computing expectation of an operator op and and a ket
def ExpVal(op,ket):
return np.dot(np.conjugate(ket),np.dot(op,ket));
# Expectations values of the alpha state all Cartesian coordinates
Ix_alpha = ExpVal(Ix, alpha)
Iy_alpha = ExpVal(Iy, alpha)
Iz_alpha = ExpVal(Iz, alpha)
# Expectations values of the x state all Cartesian coordinates
Ix_x = ExpVal(Ix, x)
Iy_x = ExpVal(Iy, x)
Iz_x = ExpVal(Iz, x)
# Expectations values of the y state all Cartesian coordinates
Ix_y = ExpVal(Ix, y)
Iz_y = ExpVal(Iy, y)
Iy_y = ExpVal(Iz, y)
# Expectations values of the psi state all Cartesian coordinates
Ix_psi = ExpVal(Ix, psi)
Iy_psi = ExpVal(Iy, psi)
Iz_psi = ExpVal(Iz, psi)
none
The states and
defined above and the state
correspond to the spin having its angular momentum along all three Cartesian coordinates. That’s the basis of the so-called Bloch sphere, a visual representation of the spin state as a point on a sphere, as shown in the images below, where the spin is represented by a colored arrow. Any state of a single spin 1/2 can be represented as a point on the Bloch sphere (up to the global phase, but we’ll come back to that in the post on the sixth postulate).
It is post, we talked about the probability of obtaining a certain eigenvalue of n operator
when measuring
on a quantum mechanical system
. In the next post, we will talk about the consequences of measuring this eigenvalue, the so-called collapse of the wave function.