Tag: diversity
August 12th, 2012
Suppose you have 3 sensors: A, B, C. Each has a set of readings that goes into a column of a matrix, b:

A matrix A is constructed such that bA, bB, bC represent compressed measurements in some domain. A is Gaussian, since this is a universal sensing matrix for compressive sensing (CS), due to its poor correlation to anything other than itself. [1]

The solution for each xi (i ∈ A,B,C) represents the data recovered from these compressive measurements and can be found with min ||xi||1, or some other sparsity-promoting technique.
I am interested in the condition when all sensors (A,B,C) agree. Consensus, agreement among multiple sensors, is important for many applications. One example is safing functions. Safing is checking for agreement among, sometimes redundant, sensors before engaging a drastic action, for example, deploying the airbags in the event of an automobile crash. When all sensors agree (or agree enough), then the dangerous function of deploying an airbag towards the driver and passengers can be performed.
In this example, I am interested in the case when each sensor finds some nonzero sparse solution.
Previously, I developed the notion of the diverse solution to a set of linear equations that require a positive integer solution. The most diverse solution is the one that has values of roughly similar value. In another post, I showed that the diverse solution can be used to
mitigate risk.
For the safing function we want to mitigate the risk that our sensor data is in error, indicating that we should erroneously employ our drastic action. We use multiple redundant sensor to mitigate this risk. The agreement among sensors is maximized when diversity is maximized across all sensors. Even though we are seeking a sparse solution for each individual sensor (for example, min ||xi||1), we seek to diversify the number of sensors that have witnessed a significant event, that is, have found a nonzero sparse solution. So the algorithm is a sparsity-based linear program wrapped inside a diversity-based linear program. When all sensors agree, a peak-to-sum ration (PSR) is minimized, if the sensitivity and units of each sensor are normalized. Since we are nesting two linear programs together, it is important that the innermost program, recovering the compressively-sensed (CS) data, seeks a sparse solution, since this can be computationally efficient.
The l1-norm minimization routine is used as an example of a CS recovery routine and exists inside the maximum diversity routine.

Where x(:,i) indicates the ith column of x. The objective function value of the l1-norm minimization of each column of x is stored in a vector, u. This is the innermost routine. The outermost routine seeks to maximize the diversity of u by minimizing its peak-to-sum ratio.
Let’s look at some example solutions. We’ll just look at types of solutions that we can reach with this algorithm, independent of the b and A that actually generated them.

In the first example, above, all sensors seem to be in agreement that something happened (of magnitude 10). This is indicated by the low PSR, which has a lower bound of 1/N (= 1/3, in this case). There must be a little bit of noise in the readings, since the agreement isn’t perfect, but this could be considered close enough to declare consensus. Notice, also, that the sensors don’t get exactly the same reading; the readings are basically shifted by one index. If the columns of x represent samples in time, then each sensor is phase-shifted with respect to the others. In this algorithm, we don’t have to explicitly time-align the data — which can be a computationally-intensive step. We just accept the data as is, even with small difference between sensors.

In the second example, above, 2 of the 3 sensors seem to agree. One sensor appears to be broken, however, this has not completely destroyed our PSR. We could still limp along with 2 functional sensors for a little while, until we are in a position to address the potentially defective sensor. The algorithm has mitigated the risk of one sensor dying by using a diversity-promoting strategy.

In the third example, above, something is clearly busted. One sensor has detected a significant event, but the majority have not. A simple majority voting scheme would not be suspicious of this data set, but our nested diversity/sparsity linear program is. Notice that the PSR is getting closer to its upper bound, which is 1. At this level of PSR, our algorithm diagnoses our system of sensors as broken and can take action accordingly, instead of making a bad decision.
The strategy of reaching a consensus among sensors by using both sparsity- and diversity-promoting techniques have made this system more robust. However, the way the actual computation is performed hasn’t been made clear yet. Sparsity-based recovery techniques have been well covered and recently, I posted about how to solve a diversity-based integer program. Next I’ll look at how to nest these linear programs.
References
[1] Baraniuk, Richard. “Compressive Sensing,” IEEE Signal Processing Magazine. July 2007.
Tags: agree, consensus, decision, diversity, integer program, safing, sensors, sparsity, strategy
Posted in Uncategorized | Comments Off
July 29th, 2012
In an earlier post, we saw the benefits of finding the solution to a set of equations with the most diversity, which was found by minimizing the peak-to-sum ratio (PSR). This post discusses ways to formulate the linear program to arrive at that solution.
Consider the following system of equations.

The A and b matrices for this system of equations are

We focus on finding an initial solution for the linear program using two methods.
Method 1: Elimination and Back-substitution
The first method for solving for the minimum PSR solution starts with Gaussian elimination and Jordanian back-substitution to find the initial solution. From there, the linear program iterates to find a feasible solution with the minimum PSR, that is also an integer solution, greater than 0. With elimination and back-substitution, [A b] turns into:

This means that 
is a solution to the system of equations, if non-integer solutions are allowed. However, in this problem, they are not. The first method takes this solution and then finds the nearest integer vector — not necessarily a solution — and then proceeds to the minimum PSR solution in the feasible set, considering only integer vectors.
For an underdetermined system of equations, using elimination and substitution will not yield a solution, at all. Instead it will describe the system of equations in terms of certain variables for which values need to be chosen, called “free variables.” From the choice of free variables, the others are determined and the linear program can iteratively make better and better choices of free variables. One common initial choice for the the free variables is to set them all to 0. This, unfortunately, will yield the most sparse solution, which we saw earlier is the opposite of the most diverse solution. Starting with the sparsest possible solution means the linear program will have to work for as long as possible to get to the most diverse solution.
Method 2: The Intersection of a Boundary Condition and the Minimum PSR Line
Let’s modify the system of equations slightly to look at them from a different angle. We’ll turn the “greater-than” to “less-than” and add in another constraint. This looks more like the investing example from earlier.

Note also that PSR is bounded for nonnegative integers.

The second method for finding the initial solution for the maximum diversity integer program exploits this fact: the PSR of an N-element, nonnegative, integer vector can never be below 1/N. So if one of our equations has the form:

The minimum PSR integer program can reduce to:

So you can use a sparsity-promoting integer program to find the minimum PSR, maximum diversity solution once you subtract off the evenly distributed vector. Note that this vector does not need to be in the feasible solution space – it can be used as an initial value. Now the minimum PSR integer program can take advantage of the computational efficiency of and the extensive analysis devoted to sparsity-promoting integer programs. We are looking for a vector that is not very different from the evenly distributed vector, just like with sparsity-promoting programs we look for a vector that is not very much different from 0.
Making Sure All the Units are the Same is a Big Deal
If N >> S, then subtracting off the evenly distributed vector doesn’t do much and we’re pretty much back to trying to solve a system of equations by minimizing the first norm. This only works if x is sparse, otherwise, its a terrible approximation to the solution of Ax<=b. However, N >> S is telling us that there isn’t much to distribute, compared to the number of bins we are distributing to. So we may not get a good, diverse answer anyway.
Another way of looking at the constraint

is that it relates all of the elements of x to one another. This equation requires that all of the units of x are the same, for the equation to make any sense. Referring back to the investing example again, the A that gives the system of equations for this example, overall, is actually pretty sparse. Without the two row vectors of A that are not mostly made up of zeroes, 1T and pT, the possible values of x could take on wildly different values, if the values of b varied wildly. For instance, x2 could be on the order of 1000 and x3 could be on the order of 1,000,000. This would make it very difficult for an integer program that minimizes the first norm, as given in method 2, to arrive at a good answer.
So the choice of starting with a dense row of A and finding its most diverse solution as an initial vector is not arbitrary. For well-formed problems that seek a most diverse solution, it can actually be a great starting point. If your system of equations for a problem does not have such a vector then you may not really need the most diverse solution or maybe you have not fully captured the problem. Usually, a system of equations has most, if not all dense rows. Then it becomes a question of finding the best one for finding an initial solution to the maximum diversity integer program, which I’m sure is a whole investigation unto itself.
Tags: back-substitution, diversity, elimination, gaussian, integer program, jordan
Posted in Uncategorized | Comments Off
July 7th, 2012
Minimize risk by maximizing diversity. Whether you’re a trader deciding which stocks to invest in, an investor deciding which companies to invest in, or a manager trying to decide which projects to support, you can minimize your risk by investing in a portfolio of products. This approach fits very nicely with the notion of diversity developed earlier.
Suppose you have 5 companies seeking investment. An investor can purchase up to 30% of a company. Each company must project its value at the end of the investment period and the investor has this information, along with the price per share for each company. Different companies have different prices per share and different projected valuations at the end of the investment period.
The investor cashes out and earns a share of the value of the company when the investment period is complete, proportional to the amount of the company the investor owns. For example, if the investor owns 3000 of the company’s 10000 shares, 30% of the valuation of the company at the end of the investment period goes to the investor.
The investor can only purchase whole shares of the company (no fractional shares, this is like a minimum investment). The investor may not ’short’ a company, that is, sell shares of a company that the investor does not own. So the number of shares an investor chooses to purchase must either be 0 or some positive integer less than or equal to the number of shares for sale.
Companies may or may not meet their valuation projections. Companies may go under, resulting in a valuation of 0 at the end of the investment period. The investor does not know how likely a company is to meet its goal or fold altogether. The goal is to avoid modeling this unknown and to develop a robust strategy based on the only two things the investor knows for sure: price per share and the projected valuation. The investor seeks a 10% return and has $100,000 to invest.
Let’s write some equations to figure out what the investor should do. We’ll use x to represent the amount of money invested in each company.

The restriction on how much of each company the investor can own amounts to a restriction on the amount of money the investor can invest in each company. Let’s say that for company 1, the maximum investment is 50000, for company 2, its 40000, and for company 3 its 60000.

Each company expects to turn the investment they receive into a return to the investor. We’ll use p to represent the percentage return on investment each company claims they will return to the investor at the end of the investment period. If a company claims a 10% return on their investment, then their value for p is 1.1, since they will return the initial investment, plus another 10% on top of that. The investor has a goal of 10% return on total investment, so weighted sum of p, weighted by the amount invested, must be greater than 110000.

That last equation can be rewritten as:

So now we have our equations in the form Ax<=b, where

To find the most diverse solution, the optimization problem is

As opposed to the most common way of solving this problem, which is to focus on maximizing return. One way of maximizing return is to ignore the constraint of getting at least 10% on the investment and just get as much as possible. That linear program is

where

Another way of maximizing the return is to leave the constraint as a minimum bound on the return. That just tells the solver of the linear program to quit once 10% return is reached. That kind of violates the spirit of maximizing your return and is not very illustrative when comparing it to maximizing diversity. We’ll treat max return as truly getting as much return as possible, without regard for how difficult the problem is for the solver, and drop the minimum return requirement for max return.
Let’s look at the two strategies: max diversity and max return. Let’s say that as a company offers more return, it’s price per share is higher and, even accounting for differences in the number of shares available, that this translates into a higher maximum investment. So the companies with a higher maximum investment are promising a bigger return. Let’s say p is:

The max return solution is:

This solution has a projected return of 14.1%. This solution is 3-sparse for N=5, or 60% sparse. It concentrates as much investment as possible into the highest returning company. Once that investment is maxed out, then the rest goes into the second highest returning company until the total investment limit is reached.
The most diverse solution is:

It has a PSR of 0.20834 and a return of 10.00016%.
What happens if one of the companies fails? If it’s the high-return company, 4, the max return solution, since it is sparse, only returns 33.6% of the investor’s money ($33600). However, the diverse solution is much more robust and still returns over 86% of the investor’s money ($860411) if company 4 fails and the others meet their targets. For a 4% gain on return, the risk that you would lose over 50% of your money is clearly not worth it.
Maximizing return could give a sparse solution, even when you don’t specifically seek it. The sparse solution is not robust to the risk of total failure, in this case, zero return. The minimum PSR solution sacrifices return to deliver a diverse solution which is more robust to failure, that is, it is much more likely to have an acceptable return. Notice that I am comparing max return vs. the diverse solution as strategies. Allowing the sparse solution is what makes max return less robust. When considering how to invest, the sparse solution is focusing your efforts, which could promise more return, but is less robust. The diverse solution is hedging your bets. Once the minimum return goal is met the diverse solution mitigates risk by spreading it out across a portfolio of investments.
Tags: applied math, diversity, integer program, investing, linear program, portfolio, risk, strategy
Posted in Uncategorized | Comments Off
June 6th, 2012
We know about sparsity for vectors, which is the property of having a lot of 0′s (or elements close enough to 0). The 0′s in a sparse matrix or vector, generally, make computation easier. This has been a boon to sampling systems in the form of compressive sampling, which allows recovery of sampled data by using computationally-efficient algorithms that exploit sparsity.
The opposite of sparsity is density. A vector whose entries are mostly nonzero is said to be “dense,” both in the sense that it is not sparse, as well as being slow and difficult to muddle through calculations on this vector if it is really large. In general, dense vectors are not very useful. Or are they? In this post, I introduce the notion of diverse vectors, a subset of dense vectors, as a more interesting foil to sparsity than simply dense vectors.
This post explores a measure of diversity called the peak-to-sum ratio (PSR). We can use PSR to find the most diverse solution in a linear program, but what can it be used for? We’ll find this linear program optimally distributes quantized, positive units, such as currency or genes. Maximizing diversity, by minimizing PSR, is desirable in several applications:
- Investing
- Workload Distribution
- Product Distribution
- Sensor Data Fusion and Machine Learning
In contrast to some systems which allow dense vectors, these systems actually desire the most diverse solution.
Consider the following system of equations:
x1 + x2 + x3 + x4 = 12
x2 - x3 = 0
x4 = 0
The following table gives a partial list of possible solutions (for x1, x2, and x3, since x4 is already given).
| x3 |
x2 |
x1 |
| 0 |
0 |
12 |
| 1 |
1 |
10 |
| 2 |
2 |
8 |
| 3 |
3 |
6 |
| 4 |
4 |
4 |
| 5 |
5 |
2 |
| 6 |
6 |
0 |
| 7 |
7 |
-2 |
The sparsest solution is highlighted in green, (12, 0, 0, 0). It has the most zeroes in it. It has everything concentrated in one element of the vector, the first element. All other elements are zero, making several computations on that vector faster and easier.
Notice the solution highlighted in yellow, (4,4,4,0). It has very few zeros in it, in fact, none except the one variable that was explicitly set to 0. But there are other solutions that have only one zero, or are, as they say, 1-sparse. For instance, (10,1,1,0) is also 1-sparse. The vector (4,4,4,0) is highlighted and (10,1,1,0) is not because (4,4,4,0) is more diverse. What makes it more diverse? The (4,4,4,0) vector has the most equitable distribution among its elements, which is, conceptually, the opposite of being sparse. Whereas the most sparse solution has its energy concentrated in the fewest elements, the most diverse solution has its energy distributed to the most elements. In fact, (10,1,1,0) could be considered to be more sparse than (4,4,4,0) as it is closer to having its energy concentrated in one vector (first posited in [1]).
So if we’re talking about more or less diverse/sparse, this implies that we can quantify it. One way to quantify it is to look at the peak-to-sum ratio (PSR). The peak to sum ratio is defined as the ratio of the largest element in x to the sum of all elements of x.

PSR can also be expressed as the ratio of two norms, the infinity norm and the first norm. Let’s see what this ratio looks like for the solutions we considered above, plus a few more.
| x3 |
x2 |
x1 |
PSR |
| 0 |
0 |
12 |
1.000 |
| 1 |
1 |
10 |
0.833 |
| 2 |
2 |
8 |
0.667 |
| 3 |
3 |
6 |
0.500 |
| 4 |
4 |
4 |
0.333 |
| 5 |
5 |
2 |
0.417 |
| 6 |
6 |
0 |
0.500 |
| 7 |
7 |
-2 |
0.438 |
| 8 |
8 |
-4 |
0.400 |
| 9 |
9 |
-6 |
0.375 |
| 10 |
10 |
-8 |
0.357 |
| 11 |
11 |
-10 |
0.344 |
| 12 |
12 |
-12 |
0.333 |
| 13 |
13 |
-14 |
0.325 |
The (4,4,4,0) solution appears to have the lowest PSR, until we proceed to solution (13,13,-14,0). As we proceed past (13,13,-14,0), PSR becomes vanishingly small. In fact, we see that (4,4,4,0) was just a local minima for PSR.

This is unsatisfying, for a couple of reasons. The first is linear programming. We can’t use a linear program to minimize PSR and arrive at the most diverse solution because PSR is not convex, that is, we can’t be sure we’re on a path to smaller and smaller PSR because we could encounter a local minima, like we did at (4,4,4,0).
The second way this is unsatisfying is that (13,13,-14,0) does not seem more diverse than (4,4,4,0). If we’re considering the elements of x to be bins of energy, or some other thing that is to be distributed, then having an element that is -14 does not make any sense. Instead of distributing, or deciding how things are to be allocated, we are actually taking them away, which defeats the whole purpose of what we are trying to do. So let’s add in a constraint that x has to be greater than 0.
For this particular problem, we can proceed in a linear fashion from the first candidate solution (12,0,0,0) to the most diverse one (4,4,4,0). However, in general, is this problem convex? That is, could we choose another set of equations and be able to march towards the most diverse answer?
Consider the definition of convexity for a feasible set of solutions. A set is convex if, when proceeding from one point to the next, you stay in that set [2]. It helps to rewrite our problem in terms of linear algebra. We seek the most diverse solution to a set of linear equations,

where Ax=b represents our equations we’re trying to solve. Since x cannot be negative, we know that,

Is this convex? The shaded region in the following graph shows the x’s that satisfy the quantity (PSR) to be minimized when it’s less than or equal to 1.

In the example in the graph above, there are only two elements in x. The possible values of x outside of the shaded region, when either x1 or x2 or both are negative, are not in the set of feasible solutions. So do the answers in this shaded region form a convex set? Yes, because we can pick two points in the shaded region, and draw a straight line between them that has to stay in the shaded region.

Notice if we restrict values of the elements of x to the integers, we still have a convex set! This result is satisfying because we’ll want to distribute units of energy, currency, etc…, anyway.
In the language of linear algebra,

where Z represents the set of integers. So the two constraints we’ve added to our convex optimization problem to find the most diverse solution:
- Must not contain a negative distribution (x greater than or equal to 0)
- Must have a base unit of distribution (x must contain integers)
We can now use an integer program to perform the optimization. Restricted to positive, integer values, when we minimize PSR, our linear program will march algorithmically, inexorably to the most diverse solution to a system of linear equations.
References
[1] Zonoobi et al. “Gini Index as Sparsity Measure for Signal Reconstruction from Compressive Samples,” IEEE Journal of Selected Topics in Signal Processing. vol 5, no. 5, Sept. 2011.
[2] Strang, Gilbert. Computational Science and Engineering. Wellesley, MA: Wellesley-Cambridge Press, 2007.
Tags: applied math, convexity, diversity, integer program, linear program, sparsity
Posted in Uncategorized | Comments Off