given the matrix what is the trace of A
Trace of a matrix is the sum of the numbers along its diagonal.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
to find a product of a matrix A = [ 1 3 2 4 ] [ 2 5 3 7 ] we first want to find each individual part of the matrix, that is A 1 , 1 = [ 1 2 ] [ 2 5 ] , A 1 , 2 = [ 1 2 ] [ 3 7 ] , A 2 . 1 = [ 3 4 ] [ 2 5 ] , A 2 , 2 = [ 3 4 ] [ 3 7 ] the form of multiplication is called a dot product and it is [ a 1 a 2 ⋯ a n ] ⎣ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎡ b 1 b 2 . . . b n ⎦ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎤ = a 1 b 1 + a 2 b 2 + ⋯ + a n b n so we can use that to get: A 1 , 1 = 1 ∗ 2 + 3 ∗ 5 = 1 2 , A 1 , 2 = 1 ∗ 3 + 2 ∗ 7 = 1 7 , A 2 , 1 = 3 ∗ 2 + 4 ∗ 5 = 2 6 , A 2 , 2 = 3 ∗ 3 + 4 ∗ 7 = 1 2 and the matrix is A = [ 1 2 2 6 1 7 3 7 ] and the trace is 1 2 + 3 7 = 4 9