Exercise 1.7 (The moment problem)

Suppose that Z is a random variable taking values in the set 0,1,,K, with probabilities p0,p1,,pK, respectively. We are given the values of the first two moments E[Z] = k=0Kkpk and E [Z2] = k=0Kk2pk of Z and we would like to obtain upper and lower bounds on the value of the fourth moment E [Z4] = k=0Kk4pk of Z. Show how linear programming can be used to approach this problem.

Answers

The variables of our linear optimization problem are the probabilities p0,p1,,pK. Probability axioms require pi to be non-negative and to sum up to unity. Additionally, our knowledge about the first and the second moments results in two additional restrictions. We thus obtain two linear programs: one to minimize k=0Kk4pk (the lower bound), and one to maximize it (the upper bound).

minimize k=0Kk4pk subject to k=0Kkpk = E[Z] k=0Kk2pk = E[Z2] pk 0,k = 0,,K k=0Kpk = 1
(1)

This can be translated into a standard form problem as follows:

minimize k=0Kk4pk subject to [ 0 1 K 0212K2 1 1 1 ] [ p0 p1 p K ] = [ E[Z] E[Z2] 1 ], [ p0 p1 p K ] 0
(2)

The problem of maximizing the fourth moment is analogous.

User profile picture
2022-02-09 20:38
Comments