0

I have to find the determinant of a non-square matrix. But because we can have the determinant of square matrices only. Then, how can I transform a $2 \times 3 $ matrix to be a square one?

EDIT: I have two matrices, the first one of size $2 \times 3 $ and the second one of size $3 \times 2 $, I want to find the determinant of their product without finding their product.

1 Answers1

0

Luckily, I asked my professor and it appeared that it can be solved by Binet-Cauchy Formula.

You can read about it here: https://sites.math.washington.edu/~morrow/335_12/CauchyBinet1.pdf

  • 1
    This solves the problem in your edit, but 1) it doesn't solve the problem in the title, and 2) it's not clear to me that this is any easier than computing the product of the two matrices and then computing the determinant. – Gerry Myerson Mar 13 '18 at 11:45
  • @GerryMyerson I agree with you that the title doesn't relate to the question, so I edited that too. As for your second point, if the question or the exercise doesn't want you to find their product, then you have no choice but to use that formula. – Learning Equals Success Mar 13 '18 at 12:28