I have an orthonormal basis for a given subspace (of $\mathbb{R}^n$). I am also given the sparsest ($l_0$ norm) vector direction (since $l_0$ norm is independent of scaling) belonging to the subspace (obtained using this algorithm). Using this information, is there any efficient way to generate the $2^{nd}$ sparsest vector (direction) in the subspace?
2026-03-25 08:07:39.1774426059
Generating sparse vectors in a subspace (of $\mathbb{R}^n$)
261 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in VECTOR-SPACES
- Alternate basis for a subspace of $\mathcal P_3(\mathbb R)$?
- Does curl vector influence the final destination of a particle?
- Closure and Subsets of Normed Vector Spaces
- Dimension of solution space of homogeneous differential equation, proof
- Linear Algebra and Vector spaces
- Is the professor wrong? Simple ODE question
- Finding subspaces with trivial intersection
- verifying V is a vector space
- Proving something is a vector space using pre-defined properties
- Subspace of vector spaces
Related Questions in SPARSITY
- Why do sparse dictionary learning methods constrain the sparsity rather than the representation error?
- Definition of sparsity
- Does the optimal function in kernel method have a sparse representation?
- Matrix Sparsity Pattern
- In the Split-Bregman algorithm, what's the interpretation of the constraint strength parameter?
- Sparsity of the inverse of a non-negative matrix
- Is compressed sensing for digital signals or could also be applied for discrete time signals?
- Continuous measure of number of large values in a sparse vector?
- Encouraging sparse output in optimization problem
- Does the phrase "sparse bundle" mean anything?
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- 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?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- 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
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- 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)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Here is one approach
Span the complement to the subspace, build a matrix from it with basis vectors as rows, call it $\bf M$.
Now for a column vector $\bf v$ to lie in the subspace : $\bf Mv = 0$ must hold, alright? This gives us a first optimization term $\|\bf Mv\|_2^2$. This is also true if we have a collection of vectors stored in a matrix, say $\bf V = [v_1,v_2,\cdots,v_n]$ with the corresponding optimization term $$\|\bf MV\|_F^2$$ Okay? Now we want $\bf v_1$ to be sparser than $\bf v_2$ which is sparser than $\bf v_3$ etc. It is well known we can get close to $L_1$ solutions using iterated reweighting of linear programs, where weights ${\bf W}_{ii}$ on the entries of the vectors $\bf \|Wv\|_2^2$ increase the closer ${\bf v}_i$ was to 0 ( in the previous iteration ). Now we will need to vectorize our $\bf V$, since otherwise it would be difficult to choose individual $\bf W$ matrices for each ${\bf v}_k$, something that is required to achieve an order of importance of sparsity.
Now what is left is something to avoid getting $\bf 0$-vector solutions, and to find good sequence of functions $f_l$ for the reweighting: $$({{\bf W_{k+1}})_l} = f_l({{(\bf W_k})_l},({\bf v_k})_l), \text{ where } \cases{k \text{ is iteration number }\\ l \text{ is vector number}}$$