Making a matrix as sparse as possible

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite
1












Consider a matrix $A in mathbbR^m times n$ where $n >> m$. In other words, $A$ has much more columns than rows. Also, consider we are given a fixed number (integer) $m leq r < n$. I'm trying to find a matrix $B in mathbbR^r times m$ such that $B' B = I_m$ (i.e., $B'$ is the left inverse of $B$) and $BA$ is very sparse, as much as possible.



My first idea was to consider the case $r = m$ and take the $QR$ factorization of $A$. Then set $B = Q^T$ to get
$$BA = Q^TA = Q^TQR = I_mR = R,$$
a triangular (and rectangular) matrix. This matrix has a few zeros in the first $m$ columns, but since $m$ is much smaller than $n$, there are a lot of non zero terms left. Also, in my context usually $r$ will be bigger than $m$ and smaller than $n$, so I don't want to choose specif values for $r$. I really want a general approach that maximizes the number of zero entries in $BA$ for a generic $r$ between $m$ and $n$.



I wonder if there is a better matrix to do the job. Hope you can help me.



Thank you.







share|cite|improve this question






















  • You might start by trying to solve the simpler problem: Let $A in mathbbR^m times n$, with $m < n$. What is $mathrmargmin_B in mathbbR^r times m, mathbfrank(B) geq m mathrmnnz(BA)$?
    – Drew Brady
    Aug 25 at 9:06











  • @DrewBrady Is this a rethorical question? I don't know what is this argmin. Furthermore, I think the condition $B^TB = I_m$ automatically implies $rank(B) = m$, which is the maximal possible rank attainable.
    – Integral
    Aug 25 at 14:53











  • Looks like you just rephrased my question. I can't see how simpler is your formulation.
    – Integral
    Aug 25 at 14:56














up vote
2
down vote

favorite
1












Consider a matrix $A in mathbbR^m times n$ where $n >> m$. In other words, $A$ has much more columns than rows. Also, consider we are given a fixed number (integer) $m leq r < n$. I'm trying to find a matrix $B in mathbbR^r times m$ such that $B' B = I_m$ (i.e., $B'$ is the left inverse of $B$) and $BA$ is very sparse, as much as possible.



My first idea was to consider the case $r = m$ and take the $QR$ factorization of $A$. Then set $B = Q^T$ to get
$$BA = Q^TA = Q^TQR = I_mR = R,$$
a triangular (and rectangular) matrix. This matrix has a few zeros in the first $m$ columns, but since $m$ is much smaller than $n$, there are a lot of non zero terms left. Also, in my context usually $r$ will be bigger than $m$ and smaller than $n$, so I don't want to choose specif values for $r$. I really want a general approach that maximizes the number of zero entries in $BA$ for a generic $r$ between $m$ and $n$.



I wonder if there is a better matrix to do the job. Hope you can help me.



Thank you.







share|cite|improve this question






















  • You might start by trying to solve the simpler problem: Let $A in mathbbR^m times n$, with $m < n$. What is $mathrmargmin_B in mathbbR^r times m, mathbfrank(B) geq m mathrmnnz(BA)$?
    – Drew Brady
    Aug 25 at 9:06











  • @DrewBrady Is this a rethorical question? I don't know what is this argmin. Furthermore, I think the condition $B^TB = I_m$ automatically implies $rank(B) = m$, which is the maximal possible rank attainable.
    – Integral
    Aug 25 at 14:53











  • Looks like you just rephrased my question. I can't see how simpler is your formulation.
    – Integral
    Aug 25 at 14:56












up vote
2
down vote

favorite
1









up vote
2
down vote

favorite
1






1





Consider a matrix $A in mathbbR^m times n$ where $n >> m$. In other words, $A$ has much more columns than rows. Also, consider we are given a fixed number (integer) $m leq r < n$. I'm trying to find a matrix $B in mathbbR^r times m$ such that $B' B = I_m$ (i.e., $B'$ is the left inverse of $B$) and $BA$ is very sparse, as much as possible.



My first idea was to consider the case $r = m$ and take the $QR$ factorization of $A$. Then set $B = Q^T$ to get
$$BA = Q^TA = Q^TQR = I_mR = R,$$
a triangular (and rectangular) matrix. This matrix has a few zeros in the first $m$ columns, but since $m$ is much smaller than $n$, there are a lot of non zero terms left. Also, in my context usually $r$ will be bigger than $m$ and smaller than $n$, so I don't want to choose specif values for $r$. I really want a general approach that maximizes the number of zero entries in $BA$ for a generic $r$ between $m$ and $n$.



I wonder if there is a better matrix to do the job. Hope you can help me.



Thank you.







share|cite|improve this question














Consider a matrix $A in mathbbR^m times n$ where $n >> m$. In other words, $A$ has much more columns than rows. Also, consider we are given a fixed number (integer) $m leq r < n$. I'm trying to find a matrix $B in mathbbR^r times m$ such that $B' B = I_m$ (i.e., $B'$ is the left inverse of $B$) and $BA$ is very sparse, as much as possible.



My first idea was to consider the case $r = m$ and take the $QR$ factorization of $A$. Then set $B = Q^T$ to get
$$BA = Q^TA = Q^TQR = I_mR = R,$$
a triangular (and rectangular) matrix. This matrix has a few zeros in the first $m$ columns, but since $m$ is much smaller than $n$, there are a lot of non zero terms left. Also, in my context usually $r$ will be bigger than $m$ and smaller than $n$, so I don't want to choose specif values for $r$. I really want a general approach that maximizes the number of zero entries in $BA$ for a generic $r$ between $m$ and $n$.



I wonder if there is a better matrix to do the job. Hope you can help me.



Thank you.









share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Aug 25 at 15:32

























asked Aug 25 at 1:17









Integral

3,83111640




3,83111640











  • You might start by trying to solve the simpler problem: Let $A in mathbbR^m times n$, with $m < n$. What is $mathrmargmin_B in mathbbR^r times m, mathbfrank(B) geq m mathrmnnz(BA)$?
    – Drew Brady
    Aug 25 at 9:06











  • @DrewBrady Is this a rethorical question? I don't know what is this argmin. Furthermore, I think the condition $B^TB = I_m$ automatically implies $rank(B) = m$, which is the maximal possible rank attainable.
    – Integral
    Aug 25 at 14:53











  • Looks like you just rephrased my question. I can't see how simpler is your formulation.
    – Integral
    Aug 25 at 14:56
















  • You might start by trying to solve the simpler problem: Let $A in mathbbR^m times n$, with $m < n$. What is $mathrmargmin_B in mathbbR^r times m, mathbfrank(B) geq m mathrmnnz(BA)$?
    – Drew Brady
    Aug 25 at 9:06











  • @DrewBrady Is this a rethorical question? I don't know what is this argmin. Furthermore, I think the condition $B^TB = I_m$ automatically implies $rank(B) = m$, which is the maximal possible rank attainable.
    – Integral
    Aug 25 at 14:53











  • Looks like you just rephrased my question. I can't see how simpler is your formulation.
    – Integral
    Aug 25 at 14:56















You might start by trying to solve the simpler problem: Let $A in mathbbR^m times n$, with $m < n$. What is $mathrmargmin_B in mathbbR^r times m, mathbfrank(B) geq m mathrmnnz(BA)$?
– Drew Brady
Aug 25 at 9:06





You might start by trying to solve the simpler problem: Let $A in mathbbR^m times n$, with $m < n$. What is $mathrmargmin_B in mathbbR^r times m, mathbfrank(B) geq m mathrmnnz(BA)$?
– Drew Brady
Aug 25 at 9:06













@DrewBrady Is this a rethorical question? I don't know what is this argmin. Furthermore, I think the condition $B^TB = I_m$ automatically implies $rank(B) = m$, which is the maximal possible rank attainable.
– Integral
Aug 25 at 14:53





@DrewBrady Is this a rethorical question? I don't know what is this argmin. Furthermore, I think the condition $B^TB = I_m$ automatically implies $rank(B) = m$, which is the maximal possible rank attainable.
– Integral
Aug 25 at 14:53













Looks like you just rephrased my question. I can't see how simpler is your formulation.
– Integral
Aug 25 at 14:56




Looks like you just rephrased my question. I can't see how simpler is your formulation.
– Integral
Aug 25 at 14:56















active

oldest

votes











Your Answer




StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2893725%2fmaking-a-matrix-as-sparse-as-possible%23new-answer', 'question_page');

);

Post as a guest



































active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2893725%2fmaking-a-matrix-as-sparse-as-possible%23new-answer', 'question_page');

);

Post as a guest













































































這個網誌中的熱門文章

tkz-euclide: tkzDrawCircle[R] not working

How to combine Bézier curves to a surface?

1st Magritte Awards