AD model
Min Kim (min.kim@rutgers.edu)
which can be rewritten as
where
Recall that we have one forward-looking variable, that is,
1
begin2
ρ = 0.53
θ = 1.04
b = 0.55
ϕ = θ/(θ+b)6
end;x
1
F = [ρ 0;-1 1/ϕ];BK is satisfied?
xxxxxxxxxx1
md""" BK is satisfied?"""Yes!
x
10
9
1
begin2
BK = 1 == sum(eigvals(F) .> 1)3
if BK4
md""" Yes!"""5
else6
md""" No!"""7
end8
endLet's check the decomposition as well
x
1
md"""2
Let's check the decomposition as well3
"""2×2 Matrix{Float64}:
0.5 0.0
0.0 1.5x
1
Λ = diagm(eigvals(F))2×2 Matrix{Float64}:
0.707107 0.0
0.707107 1.0xxxxxxxxxx1
1
D = eigvecs(F)truexxxxxxxxxx1
1
F ≈ (D)*Λ*inv(D)