Matrix G (3, 1, 7, 2, 6, -4, 9, 0, 3): Order is 3x3 (square matrix).
Matrix H (2, 1, 7, -3, 6, -2, 5, 4): Order is 2x4.
Square Matrices: C (2x2), G (3x3).
Matrix Operations
Adding Matrices
Can only add matrices of the same order.
Add corresponding elements:
Example: A = [2, 3, 5, -4], B = [7, 4, -3, 5]
Sum = [9, 7, 2, 1]
Multiplying a Matrix by a Scalar
Multiply each element by the scalar.
Example: 4 x A = [8, 12, 20, -16]
Subtracting Matrices
Subtract corresponding elements:
A - B = [-5, -1, 8, -9]
Conclusion
Understanding matrices involves knowing their order, identifying elements, and performing basic operations like addition, subtraction, and scalar multiplication.