"Larger" in matrics

49 Views Asked by At

I need your expertise in solving the following problem:

Let $A,B \in \mathbb{R}^{n \times n}$ be two inverse matrices such that $\left| B \right| \geq \left| A\right|$ then how can we show that for every $x \in \mathbb{R}^n$ such that the following applies: $$ \left\| Bx\right\|_2 \geq \left\| Ax\right\|_2$$

Is it possible?

Please advise and thanks in advance.

2

There are 2 best solutions below

2
On

In general we do not have $\left\| Bx\right\|_2 \geq \left\| Ax\right\|_2$.

Example: $x \in ker(B)$ and $x \notin ker(A)$

0
On

This is not in general true.
For example, let $A= \begin{pmatrix} 2 & 0 \\ 0 & \frac{1}{3}\end{pmatrix}$ and $B = \begin{pmatrix} \frac{1}{2} & 0 \\ 0 & 3\end{pmatrix}$. Then $A$ and $B$ are inverses with $\|A\| = 2$ and $\|B\| = 3$. However, for the vector $x = \begin{pmatrix}1 \\ 0\end{pmatrix}$, we have $\|Ax\|_2 = 2$ and $\|Bx\|_2 = \frac{1}{2}$.