0

If $A$ is an $m \times n$ matrix and $B$ is an $n \times m$ matrix and $n < m$, then the product $AB$ is not invertible.

This exercise is from the first chapter sixth section of Hoffman and Kunze's Linear Algebra book. Meaning it has not gone over rank, determinants or linear maps which all the other answers to this exercise has relied on. The things that have been discussed up until this point are:

    - Systems of Linear Equations 
    - Matrices
    - Elementary Row Operations
    - Row-Reduced Echelon Matrices
    - Matrix Multiplication
    - Invertible Matrices

I'm sorry to say that I don't really have much to say about what I've already tried and I would appreciate any hints that would point me in the right direction using the previously stated tools. Thank you.

Edit: My question is different to the one Dietrich Burde linked due to the answers in that question relies on things not yet covered in the book.

Edit 2: I want to clarify something in my post. I am not interested in solutions that use the concepts of rank, determinants or linear maps seeing as I'm sure the authors were smart enough to realize that they cannot make an exercise which is impossible to do without using linear algebra concepts that haven't yet been introduced in their introductory linear algebra textbook.

Dippset
  • 76

2 Answers2

0

Hint:$\operatorname{rank}(AB)\le\max(\operatorname{rank}A,\operatorname{rank}B)$.

$AB$ is invertible if and only its rank is … What do you know about the ranks of $A$ and $B\,$?

Bernard
  • 175,478
0

Hard to answer definitively without knowing exactly what's in the book, but here's a possibility involving matrix equations. Consider the two matrix equations: \begin{align*} Ax &= b \tag{1} \\ ABx &= b \tag{2} \end{align*} If $AB$ is invertible, then given any $b$, $(2)$ has a (unique) solution. Let $x_0$ be this solution. Then, $(1)$ has at least one solution as well: $x = Bx_0$. This means that, given any $b$, $(1)$ has a solution, which means that every column vector $b \in \Bbb{R}^m$ belongs in the columnspace of $A$. But, $A$ has $n < m$ columns, which is too few to span all of $\Bbb{R}^m$. Thus, we have a contradiction.

  • 1
    Span isn’t either a concept introduced yet. But how about this: we know that Bx = 0 has a non trivial solution which implies that ABx = 0 has a non trivial solution, thus AB is not invertible. – Dippset Apr 30 '20 at 15:58
  • @Dippset That works.too. If it makes sense with respect to the book so far, even better. – user780985 Apr 30 '20 at 16:10