Math1020 Sgta Week6 Qns
Math1020 Sgta Week6 Qns
Math1020 Sgta Week6 Qns
SGTA ⋅ WEEK 6
1 0
2. Find a matrix 𝑃 that diagonalises 𝐴 = [ ], and determine 𝑃 −1 𝐴𝑃.
6 −1
2 1 3 4
⎡ ⎤
⎢0 2 1 3⎥
3. Given that 𝜆 = 1 is an eigenvalue of the matrix ⎢ , find the corresponding eigenspace and a
⎢2 1 6 5⎥⎥
⎣1 2 4 8⎦
basis for the eigenspace.
4. For the following matrices, find a matrix 𝑃 that diagonalises 𝐴, and determine 𝑃−1 𝐴𝑃.
1 0 0 2 0 −2
−14 12
(𝑎) 𝐴 = [ ] (𝑏) 𝐴 = [0 1 1] (𝑐) 𝐴 = [0 3 0]
−20 17
0 1 1 0 0 3
0 0 1
5. Consider the invertible matrix 𝐵 = [ 2 0 0]. Determine 𝐵 2 and use the Cayley-Hamilton Theorem
−1 3 0
−1
to find 𝐵 .
6. Which of the following are linear transformations?
(a) 𝑇 ∶ ℝ2 → ℝ2 , where 𝑇(𝑥1 , 𝑥2 ) = (|𝑥1 |, |𝑥2 |).
(b) 𝑇 ∶ ℝ2 → ℝ2 , where 𝑇(𝑥1 , 𝑥2 ) = (2𝑥1 , −3𝑥2 ).
(c) 𝑇 ∶ ℝ4 → ℝ3 , where 𝑇(𝑥1 , 𝑥2 , 𝑥3 , 𝑥4 ) = (𝑥2 − 𝑥3 , 𝑥1 + 1, 𝑥2 ).
Further practice
Here are some questions for further practice, possibly after the SGTA.
Matlab problems
These are problems that require you to use Matlab.
5 8 16
15. Consider the matrix 𝐴 = [ 4 1 8].
−4 −4 −11
(a) Determine the characteristic polynomial of 𝐴 by using the command charpoly(A) in Matlab.
This command produces the coefficients of the characteristic polynomial.
(b) If you provide a symbolic variable as the second input to charpoly, Matlab will return the char-
acteristic polynomial written in terms of that variable. The commands
>> syms lambda
>> charpoly(A,lambda)
will return the characteristic polynomial of 𝐴.
The commands
>> syms x
>> solve(x^2-2==0,x)
solve the quadratic equation 𝑥2 − 2 = 0.
Use solve and charpoly to find all solutions to the characteristic polynomial of 𝐴.
2
(c) Check your answers to (b), by using eig(A).
1 −3 3
16. Use the Matlab command [P,D]=eig(A) to find a matrix 𝑃 that diagonalises 𝐴 = [3 −5 3]. Check
6 −6 4
−1
your answer by computing 𝑃 𝐴𝑃.
Additional problems
These are problems that students who would like something a little more challenging can try at home after the
SGTA. Your SGTA instructor may discuss some of these problems in the SGTA if time permits.
5 2 0
17. Consider again the matrix 𝐴 = [−4 −1 0] from Question 11.
0 0 2
(a) Find a matrix 𝐵 such that 𝐵 2 = 𝐴.
(b) How many such matrices 𝐵 are there?
18. Find the kernel and the range of the linear transformation 𝑇 ∶ ℝ3 → ℝ3 , where