Properties of Inverse
2-by-2 Inverse Matrix. Let




Properties of Inverse.
- If an
matrix
satisfies “either
or
,” then
is invertible, and has the unique inverse
.
- When
and
are invertible, we have the following properties:
- If
is invertible, the equation
has the unique solution
.
Matlab/Octave.
The function inv(A) computes the inverse of a matrix A,
if A is invertible.
Then the solution to
is given
by inv(A) * b.
Besides, Matlab/Octave has the special operator “\”, called
left division, which computes the solution immediately
by A \ b.
In summary the following two commands give the same solution:
> inv(A) * b
> A \ b
EXAMPLES 1.
Find the inverse of
.
Then solve the following system of linear equations.
© TTU Mathematics