1850 Lecture3
1850 Lecture3
Example: Let’s do some more examples of the end of the algorithm. Sup-
pose we have the following augmented matrices corresponding to a linear
system:
1 0 2
(a) 0 1 7
0 0 0
1 2 1 −1 1
0 0 0 0 2
(b)
0
1 2 1 5
3 1 −1 2 1
1 0 2 0 0 1
(c) 0 0 0 1 1 0
0 0 0 0 0 0
1
Definition: A system of linear equations is said to be homogeneous if the
constant terms are all zero. That is, the bi = 0 for all i between 1 and m.
• Either there is only the trivial solution, or there are infinitely many
solutions.
x1 + 2x2 − x3 = 0
x1 + 5x2 − 7x3 = 0
2
Example: Which of the following statements are true?
(a) A system with more unknowns than equations must have infinitely many
solutions.
3
Example: What conditions must b1 , b2 and b3 satisfy in order for the fol-
lowing system of equations to be consistent?
x 1 + x 2 + x 3 = b1
−x1 − 2x3 = b2
x 2 − x 3 = b3
4
Example: Determine the values of k for which the following system of equa-
tions has:
(i) no solutions;
(ii) exactly one solution;
(iii) infinitely many solutions.
2x + k 2 y = k + 4
x + ky = 3
5
Matrices and Matrix Operations (1.3)
Recall: When we started the course, we introduced matrices. Now let’s better
understand how to work with them.
Definition: A matrix with only one column is called a column vector (or
column matrix), and a matrix with only one row is called a row vector (or
row matrix).
Notation: (A)ij and aij will denote the entry of the matrix A that is in the ith
row and j th column.
1
2 0 −1 −
√ 2
A= 3 3 32 2
1 0 1 −1
6
Example:
4 −1 0
5 7 8
8 2 1
Definition: Two matrices are defined to be equal if they have the same size
and all their corresponding entries are equal.
Definition: The sum A+B of two m×n matrices is an m×n matrix obtained
by adding each enrty of A to the corresponding entry of B. Similarly, the
difference A − B is found by subtracting the corresponding entries.
7
Definition: If A is any matrix and c is any scalar (some number), then the
scalar product cA is the matrix obtained by multiplying each entry of A
by c. The matrix cA is said to be a scalar multiple of A.
2 −1 0
Example: Find cA given c = 3 and A = .
7 3 −2
c1 A1 + c2 A2 + · · · + cn An
As for matrix multiplication, that’s a bit more tricky. Before we get to that, let’s
learn a few more definitions.
8
Example: Find the transpose of the matrix below.
2 0 −1 3
A=
1 6 2 7