Classical Systems

#quantum #qbronze

Part of Womanium Quantum + AI 2024 program


States for Physical Systems

A physical device X has some finite, non-empty set of states, for example the set {0,1} or {a,b,c}.

For a set of 2 states, if we have a single device (aka, bit) then we can have four unique functions on it, these being two constant functions, the identity function and negation.

x f0 f1 f2 f3
0 0 1 0 1
1 0 1 1 0

In other words each function has to give a unique state representation for each of the possible states, here 2, since each output can be either one of the states that means it will be one of 2 for each of the 2 inputs, therefore we get 22=4.

A general way of writing this formula is functions=22n, where n is the number of devices (bits in our case).

Probability Representation

If our information of the device's state is incomplete, then we may represent it as a probability vector of all possible states. Let's say that we have a single bit that can be either in the 0 state or the 1 state with equal probability, then we can represent it as the vector v^.

v^=(0.50.5)

An alternative way, is to just state on of the probabilities, let's say the probability of being in state 0, and call that p. So the probability of being in state 0 is p, 0.5 in our example, and state 1 is 1p, also 0.5 in our example.

Info

A probability vector is valid if and only if all its elements are non-negative and their sum is equal to one.

However when measuring the device, we don't measure v^ or p, but rather a state with some probability.

Using the probability vector representation allows us to easily apply gates on the device in the form of matrices.

Example

Applying the negation gate

[0110]v^=[0110](p1p)

Multiple Devices with Incomplete Information

We can be represent a system with multiple devices as the tensor product of multiple probability vectors.

v1^v1^vn^
Example: Two devices
v1^v1^=(ab)(cd)=(acadbcbd)

In our 2-bit system, the vector elements will represent the probabilities for the states 00, 01, 10 and 11, respectively.

In a classical system, a probability vector V^ representing multiple devices must be decomposable into a tensor product of valid probability vectors, each corresponding to a single device.


Next: Quantum Bit >