Suvarna Garge (Editor)

Multiparty communication complexity

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In the two–party communication game, introduced by Yao (1979), two players, P1 and P2 attempt to compute a Boolean function

Contents

f ( x 1 , x 2 ) : { 0 , 1 } n { 0 , 1 } ,   x 1 , x 2 { 0 , 1 } n ,   2 n = n

Player P1 knows the value of x2, P2 knows the value of x1, but Pi does not know the value of xi, for i = 1, 2.

In other words, the players know the other's variables, but not their own. The minimum number of bits that must be communicated by the players to compute f is the communication complexity of f, denoted by κ(f).

The multiparty communication game, defined in 1983, is a powerful generalization of the 2–party case: Here the players know all the others' input, except their own. Because of this property, sometimes this model is called "numbers on the forehead" model, since if the players were seated around a round table, each wearing their own input on the forehead, then every player would see all the others' input, except their own.

The formal definition is as follows: k players: P1,P2,...,Pk intend to compute a Boolean function

f ( x 1 , x 2 , , x n ) : { 0 , 1 } n { 0 , 1 }

On set S = {x1,x2,...,xn} of variables there is a fixed partition A of k classes A1,A2,...,Ak, and player P1 knows every variable, except those in Ai, for i = 1,2,...,k. The players have unlimited computational power, and they communicate with the help of a blackboard, viewed by all players.

The aim is to compute f(x1,x2,...,xn), such that at the end of the computation, every player knows this value. The cost of the computation is the number of bits written onto the blackboard for the given input x = (x1,x2,...,xn) and partition A = (A1,A2,...,Ak). The cost of a multiparty protocol is the maximum number of bits communicated for any x from the set {0,1}n and the given partition A. The k-party communication complexity, C(k)A(f), of a function f, with respect to partition A, is the minimum of costs of those k-party protocols which compute f. The k-party symmetric communication complexity of f is defined as

C ( k ) ( f ) = max A C A ( k ) ( f )

where the maximum is taken over all k-partitions of set x = (x1,x2,...,xn).

Upper and lower bounds

For a general upper bound both for two and more players, let us suppose that A1 is one of the smallest classes of the partition A1,A2,...,Ak. Then P1 can compute any Boolean function of S with |A1| + 1 bits of communication: P2 writes down the |A1| bits of A1 on the blackboard, P1 reads it, and computes and announces the value f(x). So, we can write:

C ( k ) ( f ) n k + 1.

The Generalized Inner Product function (GIP) is defined as follows: Let y1,y2,...,yk be n-bit vectors, and let Y be the n times k matrix, with k columns as the y1,y2,...,yk vectors. Then GIP(y1,y2,...,yk) is the number of the all-1 rows of matrix Y, taken modulo 2. In other words, if the vectors y1,y2,...,yk correspond to the characteristic vectors of k subsets of an n element base-set, then GIP corresponds to the parity of the intersection of these k subsets.

It was shown that

C ( k ) ( G I P ) c n 4 k ,

with a constant c > 0.

An upper bound on the multiparty communication complexity of GIP shows that

C ( k ) ( G I P ) c n 2 k ,

with a constant c > 0.

For a general Boolean function f, one can bound the multiparty communication complexity of f by using its L1 norm as follows:

C ( k ) ( f ) = O ( k 2 log ( n L 1 ( f ) ) n L 1 2 ( f ) 2 k )

Multiparty communication complexity and pseudorandom generators

A construction of a pseudorandom number generator was based on the BNS lower bound for the GIP function.

References

Multiparty communication complexity Wikipedia