How do you find the inverse of #[(0,0), (-1,8)]#?

2 Answers
Nov 30, 2016

#[8/0 0/0 1/0 0/0]#

Explanation:

Sorry, i'm not sure on how to get this to look how you have it in matrix form.

The first step is to flip the numbers in the main diagonal and then flip the operator signs of the second diagonal, eg. -1 becomes 1.

Multiplying the two numbers in the main diagonal and subtracting this answer from from the product of the second diagonal.

In this case both products are 0, so #A^-1(1/0)#

answer,

8/0 0/0
1/0 0/0

Hope this helps.

Dec 7, 2016

This matrix has no inverse

Explanation:

Note that:

#abs((0, 0), (-1, 8)) = 0*8 - 0 * (-1) = 0-0 = 0#

Since the determinant is zero, this matrix has no inverse.

In general:

#((a, b),(c, d))^(-1) = 1/abs((a,b),(c,d)) ((d, -b),(-c, a))#

but if #abs((a, b),(c, d)) = 0# then there is no inverse.