Homework1 2024
Homework1 2024
Hand in pictures / scans of your hand-written solutions as a pdf for exercise one and two. For the MAT-
LAB exercise, please export your live script as a pdf (instructions in template). Then, merge all files
and upload them through Brightspace on November 22nd 2024 before 18:00. You are allowed and
encouraged to discuss the exercises together but must hand in individual solutions.
Exercise 1
For the system y = F θ + ϵ, with ϵ ∼ N (0, I) and a full rank matrix F ,
a) Please write down the expression of least squares estimate θ̂ and its covariance (represented by
F, y).
b) Please compute the least-square solution θ̂ and the residual ||y − F θ̂||22 (specific values are required)
and show the different steps in your derivation.
Assume that, very rarely, it is possible to obtain very accurate measurements. Consider the case that N
noisy measurements are made that can be used to identify the unknown parameter vector θ. Then, two
perfect (without any error) measurements are made. The researchers are glad to include the new perfect
measurements which results in the following least-square problem:
y F ϵ
min ϵT ϵ, 2 = Fa θ + 0 (2)
θ
3 Fb 0
with F , L known deterministic matrices and W −1 = LL⊤ square and invertible. Before obtaining any
measurements we define the prior distribution of θ as
p(θ) = N (µθ , Pθ ),
b) Assuming that
E[(θ − µθ )ϵ⊤ ] = 0,
y
please prove (4),(5) by deriving an unbiased estimate µθ|y = [M N] such that E[(θ−µθ|y )(θ−
µθ
µθ|y )T ] is minimized.
−1
µθ|y = µθ + Pθ F T F Pθ F T + W −1 (y − F µθ ) (4)
−1
Pθ|y = Pθ − Pθ F T F Pθ F T + W −1 F Pθ (5)
Hint: you might need to use the Schur complement (Lemma 2.3 on page 19 of book Verhaegen)
c) Show that
−1
µθ|y =µθ + Pθ F T F Pθ F T + W −1 (y − F µθ )
(6)
=µθ + (Pθ−1 T
+ F WF) −1 T
F W (y − F µθ ),
using Lemma 2.2 on page 19 of the book by Verhaegen and Verdult.
MATLAB exercise
See the MATLAB live script Matlab 1 template.mlx.