The characteristic equation of a matrix a is t^2-5t+10=0 the sum and product of the eigen values is equal to
Answers
Step-by-step explanation:
It is possible to solve this system using the elimination or substitution method, but it is also possible to do it with a matrix operation. Before we start setting up the matrices, it is important to do the following:
Make sure that all of the equations are written in a similar manner, meaning the variables need to all be in the same order.
Make sure that one side of the equation is only variables and their coefficients, and the other side is just constants.
Solving a system of linear equations using the inverse of a matrix requires the definition of two new matrices:
X
is the matrix representing the variables of the system, and
B
is the matrix representing the constants. Using matrix multiplication, we may define a system of equations with the same number of equations as variables as:
A
⋅
X
=
B
To solve a system of linear equations using an inverse matrix, let
A
be the coefficient matrix, let
X
be the variable matrix, and let
B
be the constant matrix.
Given the system:
x
+
8
y
=
7
2
x
−
8
y
=
−
3
The coefficient matrix is:
A
=
[
1
8
2
−
8
]
The variable matrix is:
X
=
[
x
y
]
The constant matrix is:
B
=
[
7
−
3
]
Thus, to solve a system
A
X
=
B
, for
X
, multiply both sides by the inverse of
A
and we shall obtain the solution:
X
=
(
A
−
1
)
B
Provided the inverse
(
A
−
1
)
exists, this formula will solve the system.
If the coefficient matrix is not invertible, the system could be inconsistent and have no solution, or be dependent and have infinitely many solutions.