• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

YAMT:Finding two matrices A and B non-invt such that AB is invertible??

AHH, I thought this would be a simple problem, but I can't seem to find it. Basically AB has to be a square matrix obviously..and I tried looking for A and B that aren't square matrices (and hence aren't invt), but I can't find them such that AB is invertible. Anyone have any ideas on examples?
 
i actually havn't taken linear algebra since sophomore year college, so my cross multiply on matrices might be shady =\
 
whoa, I took Linear Algebra last semester and it still took me a minute, but yeah, you are right.
 
Are you sure that A and B need not be square? The problem seems a little trivial if they're not.

I mean even A = [1 0] (row) and B = [1; 0] (column) would work.

Edit:
Nevermind the above comment. It wouldn't be possible if A and B were square.
 
Originally posted by: Shooters
Are you sure that A and B need not be square? The problem seems a little trivial if they're not.

I mean even A = [1 0] (row) and B = [1; 0] (column) would work.

Edit:
Nevermind the above comment. It wouldn't be possible if A and B were square.

A*B results in:

1 0
0 0

Which isn't invt..
 
You're doing summation (column element of (a) * row element of (b)).

The correct way to do it is summation (row element of (a) * column element of (b)).

So for ed21x's example you should get

ab =
[2 2
3 2]

and for my example you should get

ab = [1]

both of which are invertible.
 
Look at ed21x's example and my example again.

In his example a is a 2x3 matrix and b is a 3x2 matrix. Therefore the product ab should be a 2x2, not a 3x3 like you said.

In my example a is a 1x2 and b is a 2x1. Hence the product should be a 1x1, not a 2x2.
 
Back
Top