Homepage Solution manuals Kevin P. Murphy Machine Learning: a Probabilistic Perspective Exercise 2.7 - Pairwise independence does not imply mutual independence

Exercise 2.7 - Pairwise independence does not imply mutual independence

Answers

Consider three boolean variables ξ 1 , ξ 2 , ξ 3 , ξ 1 and ξ 2 take values in 0 or 1 with equal possibility independently and x 3 = XOR ( x 1 , x 2 ) . It is easy to prove that x 3 is independent with x 1 or x 2 , but given both x 1 and x 2 , the value of x 3 is determined and thereby the mutual independence fails. For a detailed examination, denote the space of experiment outcomes by

Ω = { 00 , 01 , 10 , 11 } ,

with the first component denote the value of ξ 1 , the second is for ξ 2 . Then ξ 1 generates the σ -algebra:

F 1 = { , Ω , { 00 , 01 } , { 10 , 11 } } .

ξ 2 generates:

F 2 = { , Ω , { 00 , 10 } , { 01 , 11 } } .

ξ 3 generates:

F 3 = { , Ω , { 00 , 11 } , { 01 , 10 } } .

One can easily check that each pair out of the triplet F 1 , F 2 and F 3 is a pair of independent σ -algebra, hence meets the pairwise independence.

However, each pair out of the triplet F 1 , F 2 and F 3 can span the entire 2 Ω . Then we would have counter examples, e.g., consider

A = { 00 , 01 } F 1 ,

B = { 11 } σ ( ξ 2 , ξ 3 ) .

Then

Pr ( A B ) = 0 Pr ( A ) Pr ( B ) = 1 8 .

Hence the mutual independence does not hold.

This example comes from cryptography. The only theoretical secure (defined by Shannon) encryption system is the one-pad cipher book. With the message denoted by m in binary code, the encryption is done by XOR m with a binary key k drawn from a cipher book. The result is ciphertext c . From a statistical point of view, c is equally likely to be the ciphertext of any message, hence the adversary cannot break the security (since the ciphertext can be equally understood as any message, so no specific message prevails). But the encryption is a deterministic process (by using a strictly one-pad cipher book, this cipher is resistant to chosen-plaintext attack as well), so the mutual independence fails.

User profile picture
2021-03-24 13:42
Comments