α = 0.2
β = 0.5
P = [(1-α) α; β (1-β)]
μ0 = [0.5, 0.5]
y = [0.0, 0.0]2-element Vector{Float64}:
0.0
0.0
Pablo Winant
A worker’s employment dynamics obey the stochastic matrix
\[P = \begin{bmatrix} 1-\alpha & \alpha \\ \beta & 1-\beta \end{bmatrix}\]
with \(\alpha\in(0,1)\) and \(\beta\in (0,1)\). First line corresponds to employment, second line to unemployment.
2-element Vector{Float64}:
0.0
0.0
LinearAlgebra.UniformScaling{Float64}
2.0*I
2×2 Matrix{Float64}:
-0.2 0.5
0.2 -0.5
2-element Vector{Float64}:
0.7142857142857144
0.28571428571428564
2-element Vector{Float64}:
0.7142857142857144
0.28571428571428564
A financial asset yields dividend \((x_t)\), which follows an AR1. It is evaluated using the stochastic discount factor: \(\rho_{0,t} = \beta^t \exp(y_t)\) where \(\beta<1\) and \(y_t\) is an \(AR1\). The price of the asset is given by \(p_0 = \sum_{t\geq 0} \rho_{0,t} U(x_t)\) where \(U(u)=\exp(u)^{0.5}/{0.5}\). Our goal is to find the pricing function \(p(x,y)\), which yields the price of the asset in any state.
At the beginning of each year, a manufacturer must decide whether to continue to operate an aging physical asset or replace it with a new one.
An asset that is \(a\) years old yields a profit contribution \(p(a)\) up to \(n\) years, at which point, the asset becomes unsafe and must be replaced by law.
The cost of a new asset is \(c\). What replacement policy maximizes profits?
Calibration: profit \(p(a)=50-2.5a-2.5a^2\). Maximum asset age: 5 years. Asset replacement cost: 75, annual discount factor \(\delta=0.9\).