Practice Midterm #1

1.
3x+2y+z=0
x-y+z=0
0x+2y+3z=0

...has augmented matrix

321|0
1-11|0
023|0

...which has reduced row-echelon form

100|0
010|0
001|0

...and hence has only the trivial solution x1=x2=x3=0.

x+2y+z=2
x-y+z=1
-x+4y-z=3

...has augmented matrix

121|2
1-11|1
-14-1|3

...which can be row-reduced to

121|2
060|2
000|3

...and is therefore inconsistent: there are no solutions, since it is a well-known fact that 0 does not equal 3.

2. Suppose p(t) is a degree two polynomial:

p(t)=at2+bt+c

We want to have p(-1)=2,p(1)=5,p(2)=6:

p(-1)=-a-b+c=2
p(1)=a+b+c=5
p(2)=4a+2b+c=6

This gives us three equations, which we can solve via row-reduction for the coefficients a,b,c.

3. Are the following sets of vectors linearly independent?

4.
[12][20]=[06]
[34][-13]=[212]

[12][14]=[-3-12]
[34][-2-8]=[-5-20]

To find matrix inverses, we set up big honking augmented matrices, with the matrix we're inverting on one side, and the identity matrix on the other. We reduce to RREF; if we get a row of zeroes, our matrix is not invertible. If we get the identity on the left, whatever's left on the right-hand side is our inverse.

12|10
34|01

...reduces to

10|-21
01|1.5-0.5

...So A is invertible, with inverse as above. On the other hand, if we try this on C...

14|10
-2-8|01

...reduces to

14|10
00|21

...which is crap. So C is not invertible.

5. Suppose A is invertible (or nonsingular; same thing). Then...

(A+A-1)(A-A-1)=A2-AA-1+A-1A -(A-1)2
=A2-(A-1)2

...since A and A-1 commute. If we replace A-1 with a general matrix B such that AB is not equal to BA, then this is no longer true, as you are invited to confirm in the privacy of your own homes.

Had enough? Return to the 308B page.