


Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An introduction to the fundamentals of linear algebra, focusing on matrices, transposes, and matrix multiplication. It covers topics such as writing a matrix, adding and subtracting matrices, defining matrix transpose and identity matrix, and matrix multiplication. It also explains the properties of matrix multiplication and the concept of symmetric matrices.
Typology: Study notes
1 / 4
This page cannot be seen from the preview
Don't miss anything!



Matrix methods are a subset of linear algebra.
A matrix has a size defined by its number of rows and columns.
The size of matrix A is 3 rows by 2 columns.
In common language it is said, "matrix A is 3 by 2".
Any term in the matrix is referred to by its row and column position. The row position is always given first. (i.e. A (2,2) = 1.0)
The diagonal of a matrix is defined as all terms where the row number and the column number are the same. (i.e. A (1,1) and A (2,2)).
Matrices can be added. Matrices MUST be the same size.
The resulting values is the sum of the corresponding terms
Then: A +B=C Gives the result:
Subtraction is handled in a similar way.
Matrices can be multiplied, but not divided.
Matrix multiplication is NOT commutative. (it is order dependent).
The terms of the result consist of multiplying a row of the first matrix times a column of the second matrix.
The 1,1 term (row one, column one) of G is:
G(1,1)=1.23.4+(2.3)7.3= 12.
The location where the result goes is dictated by the row and column number being multiplied.
The result G (3,2) comes from multiplying row 3 of A times column 2 of F. The final matrix G is:
Matrix sizes must match:
Mustbe same.
(NxL) (NxM) (MxL)
Multiplication is associative and distributive.
A BC=(AB)C=A(B C) and (A+B)C=AC+B*C
In practice the inverse is never calculated, a solution process is used.
There are two types of solution methods used in practice: 1) Direct and 2) Iterative. Direct solutions can be thought of as variations of the Gauss Elimination method. The iterative schemes can be thought of as variations of the Gauss-Sidel solution technique.
The transpose is defined as switching the rows with the columns. A superscript T designates the transpose. For example, the transpose of matrix H is H T :
(3 by 4) (4 by 3)
The transpose can also be taken of a set of multiplied matrices by reversing the order of the multiplications and individually transposing the matrices.
T
A matrix is symmetric when the rows are equal to the corresponding column. In other words, the matrix is equal to its transpose.