I'm trying to solve a system $Ax = b$ where all entries of $x$ are nonnegative, and most are zero. So if $x$ has $N$ entries, then $\epsilon N$ of them are nonzero, where $\epsilon > 0$ is some small constant. Is it possible to use linear programming in this setting?
2025-01-13 05:38:26.1736746706
Finding a sparse solution to $A x = b$ via linear programming
743 Views Asked by Alex https://math.techqa.club/user/alex/detail At
1
There are 1 best solutions below
Related Questions in LINEAR-ALGEBRA
- Proving a set S is linearly dependent or independent
- An identity regarding linear operators and their adjoint between Hilbert spaces
- Show that $f(0)=f(-1)$ is a subspace
- Find the Jordan Normal From of a Matrix $A$
- Show CA=CB iff A=B
- Set of linear transformations which always produce a basis (generalising beyond $\mathbb{R}^2$)
- Linear Algebra minimal Polynomial
- Non-singularity of a matrix
- Finding a subspace such that a bilinear form is an inner product.
- Is the row space of a matrix (order n by m, m < n) of full column rank equal to $\mathbb{R}^m$?
Related Questions in SYSTEMS-OF-EQUATIONS
- Diophantine Equation : $x+y+z=3$ and $x^3+y^3+z^3=3$
- Solving $\frac{dx}{dt}=-2x-2y, \frac{dy}{dt}=-2x+y$ with initial condition $(x(0), y(0)) = (1, 0)$
- How to prove the following inequality holds:
- If $A_{n \times n}x=b$ has no solutions then $Ax=0$ has infinitely many solutions
- When solving a simultaneous equation like this:
- Characteristic Variety of the Principal Symbol solves PDE system?
- Getting independent equations by differentiation
- Solving a system of equations - minimizing f
- Moore-Penrose Inverse as least-squares solution
- Solving a special system of N+1 equations
Related Questions in LINEAR-PROGRAMMING
- Show that $\bf x$ is a basic feasible solution
- Why is it 85,680??(Linear Programming) But the given is 90,000X10^3 per day
- optimizing contractor schedules - operations research linear programming
- Find the dual of the following linear program
- For linear regression: compute $\Theta T X$
- Set of XOR constraints
- operations research decision variables sequence
- Linear Programming - Modelling Objective Function to Include Revenue as well as Cost
- How to formulate a linear programming model where the rates of production must be calculated?
- How to convert linear programming model to standard form?
Related Questions in SPARSITY
- What is a sparsity pattern in a vector?
- How Can $ {L}_{1} $ Norm Minimization with Linear Equality Constraints (Basis Pursuit / Sparse Representation) Be Formulated as Linear Programming?
- Thr Proximal Operator for $ {L}_{1} $ Regularized Least squares Problem
- If $ {L}_{0} $ Regularization Can be Done via the Proximal Operator, Why Are People Still Using LASSO?
- Sparse recovery by convex optimization
- Reconstruction of a probabilistically sparse signal
- unique solution of l1 minimizer is sparse
- Finding a sparse solution to $A x = b$ via linear programming
- Are greedy methods such as orthogonal matching pursuit considered obsolete for finding sparse solutions?
- Highest sparsity vector in a vector subspace
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Refuting the Anti-Cantor Cranks
- Find $E[XY|Y+Z=1 ]$
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- What are the Implications of having VΩ as a model for a theory?
- How do we know that the number $1$ is not equal to the number $-1$?
- Defining a Galois Field based on primitive element versus polynomial?
- Is computer science a branch of mathematics?
- Can't find the relationship between two columns of numbers. Please Help
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- A community project: prove (or disprove) that $\sum_{n\geq 1}\frac{\sin(2^n)}{n}$ is convergent
- Alternative way of expressing a quantied statement with "Some"
Popular # Hahtags
real-analysis
calculus
linear-algebra
probability
abstract-algebra
integration
sequences-and-series
combinatorics
general-topology
matrices
functional-analysis
complex-analysis
geometry
group-theory
algebra-precalculus
probability-theory
ordinary-differential-equations
limits
analysis
number-theory
measure-theory
elementary-number-theory
statistics
multivariable-calculus
functions
derivatives
discrete-mathematics
differential-geometry
inequality
trigonometry
Popular Questions
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- How to find mean and median from histogram
- Difference between "≈", "≃", and "≅"
- Easy way of memorizing values of sine, cosine, and tangent
- How to calculate the intersection of two planes?
- What does "∈" mean?
- If you roll a fair six sided die twice, what's the probability that you get the same number both times?
- Probability of getting exactly 2 heads in 3 coins tossed with order not important?
- Fourier transform for dummies
- Limit of $(1+ x/n)^n$ when $n$ tends to infinity
I assume you want to solve for $x$ where $$\begin{align} & Ax=b \\ & x_i\ge 0 \\ & \sum_{i|x_i>0} 1 \le m \end{align}$$ Counting non-zero elements is not easy in an LP, but we can use a MIP model: $$\begin{align} & Ax=b \\ & x_i \le M y_i \\ & \sum_i y_i \le m\\ & x_i\in [0,M] \\ & y_i \in \{0,1\} \end{align}$$ where $M$ is an upper bound on $x_i$ and $y_i$ are binary variables.
This approach requires some reasonable upper bound on $x$. Otherwise many MIP solvers nowadays have a concept called
indicator variables
, allowing a model like this to be solved without a big-$M$. I.e.:$$\begin{align} & Ax=b \\ & y_i = 0 \Rightarrow x_i=0 \\ & \sum_i y_i \le m\\ & x_i\ge 0 \\ & y_i \in \{0,1\} \end{align}$$