MATH 133 Linear Algebra and Geometry • McGill University, Montreal
MATH 133 practice midterm with full solutions (McGill)
This is a practice midterm for MATH 133, Linear Algebra and Geometry, the first-year course at McGill University. It covers the first six chapters of the course, the usual scope of the midterm: systems of linear equations and Gaussian elimination, homogeneous systems and rank, matrix algebra, inverses and elementary matrices, determinants, the adjugate and Cramer's rule. Eight questions, one hundred points, two parts: four short questions worth ten points each, then four long problems worth fifteen.
Sit it as an exam: ninety minutes on a timer, no calculator, no notes, because that is how the real midterm is written. Every number is chosen to be reduced by hand, and every mark goes to the method, so name each row operation and say along which line each determinant is expanded. Not one question repeats an exercise of the fourteen chapter sets of this site: the gestures are the ones the examiners ask for, the matrices and the situations are new, so the paper measures what you can do and not what you remember having read. Each question has its Answers box for a first quick marking, and the full reasoning underneath for the second pass.
The traps named in the solutions: forgetting that x2+y2 changes side, counting parameters as unknowns minus equations, cubing the entries of a matrix, calling every elementary matrix a determinant of plus or minus one, dividing a row by a−2 and losing a whole line of solutions, putting the inverse on the wrong side of X, writing det(2M−1)=detM2 for a 4×4, using position vectors for an area, and forgetting that the adjugate is a TRANSPOSE.
Exercise 1: A circle through three measured points
A surveyor marks three points of a circular fountain on a site plan: P(5,5), Q(−1,5) and R(6,−2), in metres, as on the figure. Every circle of the plane has an equation of the form x2+y2+Dx+Ey+F=0, and the task is to find D, E and F.
a) Explain why each point gives a LINEAR equation in D, E, F, although the equation of the circle contains squares. Write the three equations.
b) Solve the system by Gaussian elimination, naming every row operation, and check the answer in the three equations.
c) Give the centre and the radius of the circle. Is the point (0,−3) on the circle, inside it or outside it?
d) Show by row reduction that no circle passes through (0,0), (1,1) and (2,2), and explain the result geometrically.
Show the solution
Answers
a)5D+5E+F=−50, −D+5E+F=−26, 6D−2E+F=−40
b)D=−4, E=−2, F=−20
c)(x−2)2+(y−1)2=25: centre (2,1), radius 5; (0,−3) is inside
d)the last row reads 0=−4: the system is inconsistent, and no circle passes through three collinear points
a) The unknowns are D, E and F, not x and y. Once a point is fixed, x2+y2 is a NUMBER, and it moves to the right-hand side: Dx+Ey+F=−(x2+y2), which is linear in D, E, F. For P(5,5): 5D+5E+F=−50. For Q(−1,5): −D+5E+F=−26. For R(6,−2): 6D−2E+F=−40. The sign is the first trap: x2+y2 changes side, so the constants are negative.
b) The augmented matrix is \left(\begin{array}{ccc|c} 5 & 5 & 1 & -50 \\ -1 & 5 & 1 & -26 \\ 6 & -2 & 1 & -40 \end{array}\right). A pivot of 5 would bring fifths into every row, so start with R1↔R2 and R1→−R1, which gives the row (1,−5,−1∣26). Then R2→R2−5R1 gives (0,30,6∣−180) and R3→R3−6R1 gives (0,28,7∣−196). Both rows have a common factor: R2→61R2 gives (0,5,1∣−30) and R3→71R3 gives (0,4,1∣−28). Now R2→R2−R3 gives (0,1,0∣−2), and R3→R3−4R2 gives (0,0,1∣−20). Finally R1→R1+5R2+R3 gives (1,0,0∣26−10−20)=(1,0,0∣−4). So D=−4, E=−2, F=−20.
Check in the ORIGINAL equations, not in a reduced row: 5(−4)+5(−2)−20=−50, 4−10−20=−26 and −24+4−20=−40. All three hold. Note that R2→R2−R3 is a legal replacement: one row minus another, the row being replaced keeps coefficient 1.
c) Complete the squares in x2+y2−4x−2y−20=0: (x−2)2−4+(y−1)2−1=20, that is (x−2)2+(y−1)2=25. Centre (2,1), radius 5. For (0,−3): (0−2)2+(−3−1)2=4+16=20<25, so the point is inside the circle, at distance 20 from the centre. The corrected figure shows the circle through the three points.
d) The three points give F=0, D+E+F=−2 and 2D+2E+F=−8. Order them as \left(\begin{array}{ccc|c} 1 & 1 & 1 & -2 \\ 2 & 2 & 1 & -8 \\ 0 & 0 & 1 & 0 \end{array}\right). R2→R2−2R1 gives (0,0,−1∣−4), then R3→R3+R2 gives (0,0,0∣−4): the row 0=−4 makes the system inconsistent. Geometrically, the three points lie on the line y=x, and a line meets a circle in at most two points, so no circle can pass through all three. The algebra and the picture say the same thing, which is the check.
Exercise 2: Basic solutions, and the right-hand sides that work
Let A=12−1−1−2101223−4, a 3×4 matrix, and write x=(x1,x2,x3,x4).
a) Reduce A to reduced row echelon form, naming every operation. Give the rank, and the basic solutions of Ax=0.
b) Find the condition on b=(b1,b2,b3) for Ax=b to be consistent. Decide for b=(1,3,0) and for b=(1,2,−1).
c) For the consistent one, write the general solution as a particular solution plus the general solution of Ax=0.
Show the solution
Answers
a)rankA=2; basic solutions (1,1,0,0) and (−2,0,1,1)
b)consistent exactly when 5b1−2b2+b3=0: no for (1,3,0), yes for (1,2,−1)
c)x=(1,0,0,0)+s(1,1,0,0)+t(−2,0,1,1)
a) R2→R2−2R1 gives (0,0,1,−1), and R3→R3+R1 gives (0,0,2,−2). Then R3→R3−2R2 gives a zero row. The result \begin{pmatrix} 1 & -1 & 0 & 2 \\ 0 & 0 & 1 & -1 \\ 0 & 0 & 0 & 0 \end{pmatrix} is already reduced: the pivots sit in columns 1 and 3, and the entry above the second pivot is already 0. So rankA=2, the leading variables are x1 and x3, and the free variables are x2=s and x4=t. The rows read x3=t and x1=s−2t, so x=s(1,1,0,0)+t(−2,0,1,1): the basic solutions are (1,1,0,0) and (−2,0,1,1). Check the second: A(−2,0,1,1)=(−2+2,−4+1+3,2+2−4)=(0,0,0).
The trap is to count 4−3=1 parameter, unknowns minus equations. The number of parameters is unknowns minus RANK, 4−2=2, because the third equation is a combination of the first two and brings no new constraint.
b) Carry b through the same operations. After R2→R2−2R1 and R3→R3+R1, the last column holds b1, b2−2b1 and b3+b1. After R3→R3−2R2, the zero row carries b3+b1−2(b2−2b1)=5b1−2b2+b3. The system is consistent exactly when this number is 0. For (1,3,0): 5−6+0=−1=0, inconsistent. For (1,2,−1): 5−4−1=0, consistent. In other words, the columns of A span only the plane 5b1−2b2+b3=0 of R3, and a right-hand side off that plane is not a combination of the columns. Every column must satisfy the condition, which is a free check: column 2, (−1,−2,1), gives −5+4+1=0.
c) With b=(1,2,−1) the last column becomes (1,0,0), so the reduced system is x1−x2+2x4=1 and x3−x4=0. Setting s=t=0 gives p=(1,0,0,0), and x=(1,0,0,0)+s(1,1,0,0)+t(−2,0,1,1). The particular solution could have been seen at once: b is exactly the first column of A, so Ae1=b. The two basic solutions are the same as in a), because the homogeneous part does not depend on b.
Exercise 3: Two rectangular matrices, two products, one polynomial
Let A=201−131 and B=(1−12104).
a) Sizes only: which of AB, BA, A+BT, ABT and ATBT exist? Give the size of each one that does.
b) Compute C=BA.
c) Without computing all of AB, find tr(AB) and compare it with tr(C).
d) Check that C2=10C−6I. Use this identity to compute C3 with no product of two matrices.
Show the solution
Answers
a)AB is 3×3, BA is 2×2, A+BT is 3×2, ATBT is 2×2; ABT does not exist
b)C=(2258)
c)diagonal of AB: 3,3,4, so tr(AB)=10=tr(BA)
d)C2=(14205074) and C3=94C−60I=(128188470692)
a) A is 3×2 and B is 2×3. AB: inner sizes 2 and 2 agree, result 3×3. BA: inner sizes 3 and 3, result 2×2. BT is 3×2, the same size as A, so A+BT exists and is 3×2. ABT is (3×2)(3×2): inner sizes 2 and 3 disagree, it does not exist. ATBT is (2×3)(3×2), a 2×2 matrix, and it is (BA)T by the reversal rule, not (AB)T, which is 3×3.
b) Row i of B times column j of A. Row 1, (1,2,0): with column 1, (2,0,1), it gives 2; with column 2, (−1,3,1), it gives −1+6=5. Row 2, (−1,1,4): −2+0+4=2 and 1+3+4=8. So C=(2258).
c) The trace only uses the diagonal, so compute three entries and nothing else. (AB)11 = row 1 of A times column 1 of B=(2,−1)⋅(1,−1)=3; (AB)22=(0,3)⋅(2,1)=3; (AB)33=(1,1)⋅(0,4)=4. So tr(AB)=10, and tr(C)=2+8=10 as well. This is the rule tr(AB)=tr(BA), which holds even here where AB and BA do not have the same size; the matrices themselves are about as different as two matrices can be.
d) C2=(2258)(2258)=(14205074)=(14205074), and 10C−6I=(14205074), the same matrix. The two numbers are not a coincidence: 10 is the trace of C and 6=16−10 is detC, and every 2×2 matrix satisfies C2=(trC)C−(detC)I.
Now multiply the identity by C: C3=10C2−6C=10(10C−6I)−6C=94C−60I=(128188470692)=(128188470692). Check one entry the long way: row 1 of C times column 1 of C2 is 2(14)+5(20)=128. The trap is to cube the entries, which would give 8 in the top left corner.
Exercise 4: True or false, justify
Say whether each statement is TRUE or FALSE. A true statement needs a short proof valid for every matrix concerned; a false one needs an explicit counterexample with small numbers, and then the correct statement. All matrices are square unless said otherwise.
a) If every row of a 3×3 matrix A adds up to 0, then detA=0.
b) If A is invertible, then ATA is invertible.
c) Every elementary matrix has determinant 1 or −1.
d) If a system of three linear equations in three unknowns has two different solutions, then the determinant of its coefficient matrix is 0.
e) If adj(A) is the zero matrix, then A is the zero matrix.
Show the solution
Answers
a)TRUE: A(1,1,1)=0 with (1,1,1)=0
b)TRUE: det(ATA)=(detA)2=0
c)FALSE: R2→5R2 gives diag(1,5), determinant 5
d)TRUE: detA=0 would force the single solution A−1b
e)FALSE: A=diag(1,0,0) is not zero and adj(A)=0
a) TRUE. Row i of A times the vector u=(1,1,1) is the sum of row i, which is 0, so Au=0 with u=0. A matrix with a nontrivial null vector is not invertible, so detA=0. Second proof, with the determinant rules: the column operation C1→C1+C2+C3 does not change the determinant and produces a zero column. The size 3 plays no role: the same holds for every n.
b) TRUE. det(ATA)=det(AT)detA=(detA)2, which is non-zero when detA=0. One can even name the inverse: (ATA)−1=A−1(AT)−1=A−1(A−1)T, by the reversal rule. The hypothesis matters for rectangular matrices: for a 3×2 matrix A, the 3×3 matrix AAT is never invertible, since its rank is at most 2.
c) FALSE. The operation R2→5R2 applied to I2 gives E=(1005), an elementary matrix with detE=5. Correct statement: a swap has determinant −1, a scaling by c=0 has determinant c, a replacement Ri→Ri+cRj has determinant 1. What IS true of every elementary matrix is that its determinant is non-zero, which is why every elementary matrix is invertible.
d) TRUE. Write the system Ax=b. If detA=0, then A is invertible and x=A−1b is the ONLY solution. Two different solutions therefore force detA=0. In fact the system then has infinitely many solutions: if p=q both work, so does p+t(q−p) for every t.
e) FALSE. Take A=100000000. Each cofactor is plus or minus a 2×2 minor, and every 2×2 submatrix of A contains a zero row or a zero column, so all nine cofactors vanish and adj(A)=0, while A=0. Correct statement: for n≥3, adj(A)=0 happens exactly when every (n−1)×(n−1) minor is zero, which a non-zero matrix of small rank can do. For 2×2 matrices the statement is true, since adj(acbd)=(d−c−ba) contains every entry of A up to sign.
Part B: long problems (/60)
Exercise 5: A system whose parameter sits in two places
For every real number a, consider the system ⎩⎨⎧x+y−z=12x+3y+az=3x+ay+3z=2 in the unknowns x, y, z.
a) Reduce the augmented matrix to row echelon form, naming every operation, without ever dividing by an expression in a. Write the last row in factored form.
b) Find every value of a for which the system has no solution, exactly one solution, infinitely many solutions.
c) Solve the system for the value of a that gives infinitely many solutions, and check your answer in the third equation.
d) Give the unique solution in terms of a when it exists, and check it for a=0 in the original system.
e) A student divides the last row by a−2 at once and announces a unique solution for every a=−3. What does his answer claim for a=2? Is that point a solution? Is it the only one?
Show the solution
Answers
a)last row (0,0,−(a+3)(a−2)∣−(a−2))
b)no solution for a=−3; infinitely many for a=2; exactly one for a=2 and a=−3
c)a=2: (x,y,z)=(0,1,0)+t(5,−4,1)
d)x=1, y=z=a+31; for a=0, (1,31,31)
e)he claims the single point (1,51,51); it is a solution (t=51), but a whole line of solutions is lost
a) The augmented matrix is \left(\begin{array}{ccc|c} 1 & 1 & -1 & 1 \\ 2 & 3 & a & 3 \\ 1 & a & 3 & 2 \end{array}\right). R2→R2−2R1 gives (0,1,a+2∣1), and R3→R3−R1 gives (0,a−1,4∣1). The second pivot is the 1 of row 2, a number, so the parameter in row 3 is cleared with R3→R3−(a−1)R2. That operation MULTIPLIES by a−1, it never divides, so it is legal for every a, including a=1, where it simply does nothing. It gives (0,0,4−(a−1)(a+2)∣1−(a−1)).
Expand and factor: 4−(a2+a−2)=−a2−a+6=−(a2+a−6)=−(a+3)(a−2), and 1−(a−1)=2−a=−(a−2). The echelon form is \left(\begin{array}{ccc|c} 1 & 1 & -1 & 1 \\ 0 & 1 & a + 2 & 1 \\ 0 & 0 & -(a + 3)(a - 2) & -(a - 2) \end{array}\right). Leaving the last row factored is what makes b) a reading exercise instead of a computation.
b) If a=2 and a=−3, the third pivot −(a+3)(a−2) is non-zero: three pivots for three unknowns, exactly one solution. If a=2, the last row is (0,0,0∣0): the system is consistent with rank 2, so it has 3−2=1 parameter and infinitely many solutions. If a=−3, the last row is (0,0,0∣5), the equation 0=5: no solution. Every real a lands in exactly one of the three cases, which is what the marker checks.
c) For a=2 the system reduces to x+y−z=1 and y+4z=1. With z=t free: y=1−4t and x=1−y+z=1−(1−4t)+t=5t. So (x,y,z)=(5t,1−4t,t)=(0,1,0)+t(5,−4,1), a line of solutions. Check in the third equation with a=2: x+2y+3z=5t+2−8t+3t=2 for every t.
d) For a=2,−3, dividing by −(a+3)(a−2) is now legal: z=(a+3)(a−2)a−2=a+31. Back substitution: y=1−(a+2)z=a+3(a+3)−(a+2)=a+31, and x=1−y+z=1. For a=0: (1,31,31), and in the original system 1+31−31=1, 2+1+0=3, 1+0+1=2. All three hold.
e) After dividing by a−2 the last row becomes −(a+3)z=−1, so the student announces z=a+31 and the formulas of d) for every a=−3. At a=2 that claims the single solution (1,51,51). It IS a solution: it is the point t=51 of the line of c). But it is not the only one, and the answer loses every other point of that line. The division was a division by zero exactly at a=2, which is the one value where something interesting happens; on the exam this costs the whole infinitely many case.
Exercise 6: Inverting a 3 by 3, and using the inverse on the correct side
Let A=12−1−1−1223−2.
a) Find A−1 by reducing [A∣I], naming every row operation.
b) Check your answer by computing AA−1.
c) Solve Ax=(1,1,1) using A−1.
d) Find the matrix X such that XA=(100001). Give its size first, and explain why A−1(100001) cannot be the answer.
e) Let E1 and E2 be the elementary matrices of the first two operations of your reduction. Write them, compute E2E1, check that E2E1A is the matrix you had after two steps, and give (E2E1)−1.
a) Start from \left(\begin{array}{ccc|ccc} 1 & -1 & 2 & 1 & 0 & 0 \\ 2 & -1 & 3 & 0 & 1 & 0 \\ -1 & 2 & -2 & 0 & 0 & 1 \end{array}\right). R2→R2−2R1 gives (0,1,−1∣−2,1,0) and R3→R3+R1 gives (0,1,0∣1,0,1). Then R3→R3−R2 gives (0,0,1∣3,−1,1): the left block is triangular with pivots 1,1,1, so A is invertible. Upwards: R2→R2+R3 gives (0,1,0∣1,0,1), R1→R1−2R3 gives (1,−1,0∣−5,2,−2), and R1→R1+R2 gives (1,0,0∣−4,2,−1). The right block is A−1=−41320−1−111. Every entry is an integer, as it must be: the pivots were all 1, so detA=1.
b) Row 1 of A, (1,−1,2), against the three columns of A−1: −4−1+6=1, 2−0−2=0, −1−1+2=0. Row 2, (2,−1,3): −8−1+9=0, 4−0−3=1, −2−1+3=0. Row 3, (−1,2,−2): 4+2−6=0, −2+0+2=0, 1+2−2=1. So AA−1=I. For a square matrix one side is enough: AB=I forces BA=I.
c) x=A−1(1,1,1), and multiplying by (1,1,1) adds the entries of each row of A−1: x=(−4+2−1,1+0+1,3−1+1)=(−3,2,3). Check: A(−3,2,3)=(−3−2+6,−6−2+9,3+4−6)=(1,1,1).
d) Call the right-hand side B; it is 2×3. In XA=B the product XA is 2×3 only if X is 2×3. The factor A sits on the RIGHT of X, so it is removed from the right: XAA−1=BA−1, that is X=BA−1. Since the rows of B are e1T and e3T, the rows of BA−1 are rows 1 and 3 of A−1: X=(−432−1−11). Check the first row of XA: (−4,2,−1) against the columns of A gives −4+4+1=1, 4−2−2=0 and −8+6+2=0. The product A−1B is (3×3)(2×3), whose inner sizes disagree: it does not exist, which settles which side the inverse goes on before any entry is computed.
e) Each elementary matrix is the identity with the operation applied: R2→R2−2R1 gives E1=1−20010001 and R3→R3+R1 gives E2=101010001. Then E2E1=1−21010001, and E2E1A=100−1112−10, exactly the left block after the first two steps. The inverse undoes the operations in the REVERSE order: (E2E1)−1=E1−1E2−1, with E1−1 the operation R2→R2+2R1 and E2−1 the operation R3→R3−R1, which gives \begin{pmatrix} 1 & 0 & 0 \\ 2 & 1 & 0 \\ -1 & 0 & 1 \end{pmatrix}. Multiplying it by E2E1 gives I, which is the check.
Exercise 7: A 4 by 4 determinant, its consequences, and an area on a grid
Let M=24−261203−11303514. The figure shows the parallelogram ABCD with A(−1,0), B(3,1), C(4,4) and D(0,3).
a) Compute detM. Use row operations to empty the first column, say what each one does to the determinant, then expand.
b) Deduce det(−M), det(2M−1) and det(M−1MT).
c) Compute the area of the parallelogram ABCD as a 2×2 determinant. A student uses the position vectors of B and D instead: what does he get, and what has he computed?
d) Give the area of triangle ABD. For which k does the point Dk=(k,2) make triangle ABDk flat, and what does the figure then show?
Show the solution
Answers
a)detM=2×12=24
b)det(−M)=24, det(2M−1)=32, det(M−1MT)=1
c)area =∣det(4113)∣=11; the student gets 9, the area of the parallelogram built on O, B, D
d)211; k=7, and D7=(7,2) lies on the line AB
a) Column 1 has no zero, but its entries are all multiples of the pivot 2. R2→R2−2R1 gives (0,0,3,−1), R3→R3+R1 gives (0,1,2,4) and R4→R4−3R1 gives (0,0,3,−5). Three replacements: the determinant does not change. Expanding along column 1, only the entry 2 at position (1,1) survives, with sign +: detM=2det010323−14−5.
The 3×3 has two zeros in its first column. The surviving entry is the 1 at position (2,1), whose sign is (−1)2+1=−1: the determinant is −1⋅det(33−1−5)=−(−15+3)=12. So detM=2×12=24. Second route for the 3×3: R3→R3−R1 turns its last row into (0,0,−4), and expanding along that row gives −4⋅det(0132)=−4(−3)=12. The same number, so the sign of the cofactor was right.
b) M is 4×4, so every scalar factor comes out to the power 4. det(−M)=(−1)4detM=24: the sign disappears because the size is even. det(2M−1)=24⋅241=32. det(M−1MT)=detM1⋅detM=1, since det(MT)=detM. Writing det(2M−1)=242 is the classic loss here: the 2 multiplies each of the four rows.
c) The two edges from the SAME vertex A are AB=(4,1) and AD=(1,3), and the area is det(4113)=∣12−1∣=11. Check against the figure: A+AB+AD=(4,4)=C, so these two edges do build ABCD. The student computes det(3103)=9 with the columns OB=(3,1) and OD=(0,3): that is the area of the parallelogram with vertices O, B, D and B+D, a different figure, since A is not the origin.
d) Triangle ABD is half of the parallelogram: area 211. With Dk=(k,2), ADk=(k+1,2) and det(41k+12)=8−(k+1)=7−k. The triangle is flat when this vanishes, at k=7. Then D7=(7,2)=A+2AB lies on the line AB, as the grid shows: from A(−1,0), two steps of (4,1) reach (7,2). A zero determinant means the two columns are parallel, nothing more mysterious.
Exercise 8: Temperatures inside a heated plate: Cramer's rule and the adjugate
A thin metal plate has its four edges held at fixed temperatures: 60 °C on the top edge, 20 °C on the bottom edge, 20 °C on the left edge and 60 °C on the right edge. A mesh places three interior points t1, t2, t3 in a row, as on the figure. At steady state, the temperature at each interior point is the AVERAGE of the temperatures at its four neighbours on the mesh: up, down, left and right.
a) Write the three equations, in the form Nt=b with t=(t1,t2,t3) and integer coefficients.
b) Compute detN by cofactor expansion along a row you choose.
c) Find t2 alone by Cramer's rule.
d) Compute the three cofactors C11, C12, C13 of N. The left edge is warmed by 1 °C: by how much does each interior temperature rise?
e) Write adj(N) and N−1, and use them to find t1 and t3. Check the answer with the average rule at t2.
Show the solution
Answers
a)4t1−t2=100, −t1+4t2−t3=80, −t2+4t3=140
b)detN=56
c)t2=562240=40 °C
d)C11=15, C12=4, C13=1; the rises are 5615, 141 and 561 °C
e)N−1=561154141641415; t=(35,40,45) °C
a) The neighbours of t1 are the top edge (60), the bottom edge (20), the left edge (20) and t2: 4t1=60+20+20+t2, that is 4t1−t2=100. For t2: 4t2=60+20+t1+t3, so −t1+4t2−t3=80. For t3: 4t3=60+20+t2+60, so −t2+4t3=140. Hence N=4−10−14−10−14 and b=(100,80,140). The unknowns go to the left, the known edge temperatures to the right.
b) Row 1 has a zero. detN=4det(4−1−14)−(−1)det(−10−14)+0=4(15)+(−4)=56. Watch the middle term: the entry is −1 and its cofactor sign is −, so it contributes +1×(−4)=−4.
c) Replace column 2 of N by b: N2=4−10100801400−14. Along row 1: 4(80⋅4−(−1)(140))−100((−1)(4)−(−1)(0))+0=4(460)+400=2240. So t2=562240=40 °C. Cramer's rule costs two determinants for one unknown, which is exactly what it is for.
d) C11=+det(4−1−14)=15, C12=−det(−10−14)=−(−4)=4, C13=+det(−104−1)=1. Warming the left edge by 1 °C adds 1 to the first equation only, so b changes by e1 and t changes by N−1e1, the first COLUMN of N−1. Because the adjugate is the TRANSPOSE of the cofactor matrix, (N−1)i1=detNC1i: the first column of N−1 is 561(C11,C12,C13)=561(15,4,1). The point next to the warmed edge rises by 5615 °C, the middle one by 564=141 °C, the far one by only 561 °C. The effect fades with distance, as it should.
e) The remaining cofactors: C22=det(4004)=16, C21=−det(−1−104)=4, C23=−det(40−1−1)=4, and by the same computations C31=1, C32=4, C33=15. N is symmetric, so the cofactor matrix is symmetric and equals its transpose: adj(N)=154141641415 and N−1=561adj(N).
Then t1=5615(100)+4(80)+1(140)=561960=35 °C, and t3=561(100)+4(80)+15(140)=562520=45 °C; the middle row gives 56400+1280+560=40 again, consistent with c). Average rule at t2: its neighbours are 60, 20, 35 and 45, whose average is 4160=40. The temperatures increase from left to right, as the warmer right edge suggests.