(1) If P is a projection matrix. What are the possible values of det(P)?
(2) A Hadamard matrix H is a matrix with entries ±1 and orthogonal columns. What is the determinant of H as a function of n? (Hadamard matrices are conjectured to exist for every n that is a multiple of 4, but nobody knows if there is such a matrix even for n=668) (See mathoverflow for example.) If you stumble on a Hadamard matrix of size 668 please let us know. (Extremely unlikely don't waste much time looking and definitely not juliabox cycles.)
There is a simple recursive construction for powers of 2, if you would like to play with some easy Hadamard matrices in Julia: (you are not expected to understand the Julia syntax but if you are curious you can look up the ternary operator ( a compact if then else) and the Kronecker product.
using LinearAlgebra
A = [1 1;1 -1]
H(k) = k==1 ? A : kron( H(k-1), A) # Creates a 2ᵏ by 2ᵏ Hadamard matrix
H (generic function with 1 method)
H(2)
4×4 Array{Int64,2}: 1 1 1 1 1 -1 1 -1 1 1 -1 -1 1 -1 -1 1
(3) Find a 3x3 matrix with entries 0 and 1 with determinant -2,-1,0, and 1,2. (Okay to use rand(0:1,3,3) if it helps but don't forget using LinearAlgebra)
(4) What is the pattern in the formula for the determinant of S(n) given by the Julia code below? You may see it by inspecting, but ultimately you should figure it out by math.
# using LinearAlgebra
S(n) = SymTridiagonal( fill(3,n), fill(1,n-1))
S (generic function with 1 method)
S(5)
5×5 SymTridiagonal{Int64,Array{Int64,1}}: 3 1 ⋅ ⋅ ⋅ 1 3 1 ⋅ ⋅ ⋅ 1 3 1 ⋅ ⋅ ⋅ 1 3 1 ⋅ ⋅ ⋅ 1 3
[det(S(n)) for n=1:6]
6-element Array{Int64,1}: 3 8 21 55 144 377
(5) If you know all 16 cofactors of a 4x4 invertible matrix A, how would you find A?
(6) A square matrix is said to be upper-Hessenberg if it has non-zeros in the upper triangle and the diagonal below the main diagonal. If A is square upper Hessenberg, does the determinant of A depend on the entry in the top right? If so, how?
(7) What is $\partial(\det(A))/\partial(A_{11})$ Hint: use the cofactor expansion?