1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
NemiM [27]
2 years ago
13

How to do the inverse of a 3x3 matrix gaussian elimination.

Mathematics
1 answer:
nata0808 [166]2 years ago
6 0

As an example, let's invert the matrix

\begin{bmatrix}-3&2&1\\2&1&1\\1&1&1\end{bmatrix}

We construct the augmented matrix,

\left[ \begin{array}{ccc|ccc} -3 & 2 & 1 & 1 & 0 & 0 \\ 2 & 1 & 1 & 0 & 1 & 0 \\ 1 & 1 & 1 & 0 & 0 & 1 \end{array} \right]

On this augmented matrix, we perform row operations in such a way as to transform the matrix on the left side into the identity matrix, and the matrix on the right will be the inverse that we want to find.

Now we can carry out Gaussian elimination.

• Eliminate the column 1 entry in row 2.

Combine 2 times row 1 with 3 times row 2 :

2 (-3, 2, 1, 1, 0, 0) + 3 (2, 1, 1, 0, 1, 0)

= (-6, 4, 2, 2, 0, 0) + (6, 3, 3, 0, 3, 0)

= (0, 7, 5, 2, 3, 0)

which changes the augmented matrix to

\left[ \begin{array}{ccc|ccc} -3 & 2 & 1 & 1 & 0 & 0 \\ 0 & 7 & 5 & 2 & 3 & 0 \\ 1 & 1 & 1 & 0 & 0 & 1 \end{array} \right]

• Eliminate the column 1 entry in row 3.

Using the new aug. matrix, combine row 1 and 3 times row 3 :

(-3, 2, 1, 1, 0, 0) + 3 (1, 1, 1, 0, 0, 1)

= (-3, 2, 1, 1, 0, 0) + (3, 3, 3, 0, 0, 3)

= (0, 5, 4, 1, 0, 3)

\left[ \begin{array}{ccc|ccc} -3 & 2 & 1 & 1 & 0 & 0 \\ 0 & 7 & 5 & 2 & 3 & 0 \\ 0 & 5 & 4 & 1 & 0 & 3 \end{array} \right]

• Eliminate the column 2 entry in row 3.

Combine -5 times row 2 and 7 times row 3 :

-5 (0, 7, 5, 2, 3, 0) + 7 (0, 5, 4, 1, 0, 3)

= (0, -35, -25, -10, -15, 0) + (0, 35, 28, 7, 0, 21)

= (0, 0, 3, -3, -15, 21)

\left[ \begin{array}{ccc|ccc} -3 & 2 & 1 & 1 & 0 & 0 \\ 0 & 7 & 5 & 2 & 3 & 0 \\ 0 & 0 & 3 & -3 & -15 & 21 \end{array} \right]

• Multiply row 3 by 1/3 :

\left[ \begin{array}{ccc|ccc} -3 & 2 & 1 & 1 & 0 & 0 \\ 0 & 7 & 5 & 2 & 3 & 0 \\ 0 & 0 & 1 & -1 & -5 & 7 \end{array} \right]

• Eliminate the column 3 entry in row 2.

Combine row 2 and -5 times row 3 :

(0, 7, 5, 2, 3, 0) - 5 (0, 0, 1, -1, -5, 7)

= (0, 7, 5, 2, 3, 0) + (0, 0, -5, 5, 25, -35)

= (0, 7, 0, 7, 28, -35)

\left[ \begin{array}{ccc|ccc} -3 & 2 & 1 & 1 & 0 & 0 \\ 0 & 7 & 0 & 7 & 28 & -35 \\ 0 & 0 & 1 & -1 & -5 & 7 \end{array} \right]

• Multiply row 2 by 1/7 :

\left[ \begin{array}{ccc|ccc} -3 & 2 & 1 & 1 & 0 & 0 \\ 0 & 1 & 0 & 1 & 4 & -5 \\ 0 & 0 & 1 & -1 & -5 & 7 \end{array} \right]

• Eliminate the column 2 and 3 entries in row 1.

Combine row 1, -2 times row 2, and -1 times row 3 :

(-3, 2, 1, 1, 0, 0) - 2 (0, 1, 0, 1, 4, -5) - (0, 0, 1, -1, -5, 7)

= (-3, 2, 1, 1, 0, 0) + (0, -2, 0, -2, -8, 10) + (0, 0, -1, 1, 5, -7)

= (-3, 0, 0, 0, -3, 3)

\left[ \begin{array}{ccc|ccc} -3 & 0 & 0 & 0 & -3 & 3 \\ 0 & 1 & 0 & 1 & 4 & -5 \\ 0 & 0 & 1 & -1 & -5 & 7 \end{array} \right]

• Multiply row 1 by -1/3 :

\left[ \begin{array}{ccc|ccc} 1 & 0 & 0 & 0 & 1 & -1 \\ 0 & 1 & 0 & 1 & 4 & -5 \\ 0 & 0 & 1 & -1 & -5 & 7 \end{array} \right]

So, the inverse of our matrix is

\begin{bmatrix}-3&2&1\\2&1&1\\1&1&1\end{bmatrix}^{-1} = \begin{bmatrix}0&1&-1\\1&4&-5\\-1&-5&7\end{bmatrix}

You might be interested in
What is the equation of a circle with center (-4,7) radius 3?
miv72 [106K]

Answer:

a. (x + 4)² + (y – 7)² = 3²

Step-by-step explanation:

General equation for a circle is:

(x – h)² + (y – k)² = r²

h and k are the center (h, k), and r is the radius.

They want a center of (-4, 7) so h=-4 and k=7

They want a radius of 3 so r=3

plug it into the equation.

(x – h)² + (y – k)² = r²

(x – (-4))² + (y – (7))² = (3)²

(x + 4)² + (y – 7)² = 3²

7 0
3 years ago
Read 2 more answers
What is 7x6 like 7 rows of 6 collums
Darina [25.2K]
I guess it's 42
Hope it's helpful for you
7 0
3 years ago
Help please...........
Snezhnost [94]

Answer:

66.42° for Y

23.58° for Z

90° for X

4 0
2 years ago
. A colony of bacteria triples every hour. If
ikadub [295]

Answer:

a)60, b)14580, c)20*3^n

3 0
3 years ago
Which statement shows that 6.24 is a rational number?
sp2606 [1]

Answer:

B

Step-by-step explanation:

8/33 = 0.24242424 ...

so 6.24 repeating = 6 8/33 which is rational. It can be represented by

206/33 which is a fraction and hence rational

7 0
2 years ago
Other questions:
  • oceanside bike rental shop charges a $17 fixed fee plus six dollars an hour for renting a bike. Tim paid $47 to rent a bike. How
    11·1 answer
  • Question : 1/9X ⅝ + (½)³=
    9·1 answer
  • Of 70 tosses of a dime, 55 results are heads. Find the empirical probability of tossing heads with this coin. ______ Is this a f
    8·1 answer
  • Notebooks come in four colors: red, blue, green and purple. They also come in two sizes, 5-subject and 3-subject. How many possi
    10·1 answer
  • A cow gave 8 1 2 liters of milk in the morning, 3 5 liters less than this at the noon milking, and 6 3 10 liters in the evening.
    12·1 answer
  • What is the value of the 4 in the number 17.884?<br>Write your answer as a fraction.​
    10·1 answer
  • 729 = __ to the 3rd power
    14·1 answer
  • A flagpole is propped on the east side corner of the roof of a building. The angle of depression from the top of the flagpole (A
    7·1 answer
  • Jollibee employs a total of 10 cashiers and 15 kitchen crews. The manager selects a team of 2 cashiers and
    14·1 answer
  • Diona told me to get this app to solve my math problems,what is 10 + 10 Jean can't help because she's doing other stuff :,)​
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!