Understand matrix multiplication: Understand matrix multiplication. Matrix multiplication involves taking the rows of the first matrix F and multiplying them by the columns of the second matrix A, then summing the products to get the entries of the resulting matrix H.
Identify matrix dimensions: Identify the dimensions of the matrices.Matrix F is a 3×1 matrix and matrix A is a 1×2 matrix. The resulting matrix H will have the dimensions of the outer dimensions, which is 3×2.
Multiply first row of F: Multiply the first row of F by the only column of A. The first row of F is [5], and the only column of A is [−1,1]. Multiplying these, we get: 5×−1=−55×1=5 So the first row of H will be [−5,5].
Multiply second row of F: Multiply the second row of F by the only column of A.The second row of F is [0], and the only column of A is [−1,1]. Multiplying these, we get:0×−1=00×1=0So the second row of H will be [0,0].
Multiply third row of F: Multiply the third row of F by the only column of A. The third row of F is [4], and the only column of A is [−1,1]. Multiplying these, we get: 4×−1=−44×1=4 So the third row of H will be [−4,4].
Combine results for matrix H: Combine the results to form the matrix H. Combining the results from steps 3, 4, and 5, we get the matrix H: H=[−5amp;50amp;0−4amp;4]
More problems from Unions and intersections of sets