Regional and Urban Economics Workshop @ PSE
25 March, 2024
👍
Reshaping?
Reshaping?Some help with Table 1 please:
This decomposition shows that the highway network in 1974 was considerably reshaped from what had been set out in the plan designed 40 years earlier.

I solve for the unconstrained infrastructure allocation in West Germany by assuming that no highway had been built before division
Once a highway is built, the main cost has been incured? What exactly is highway investment?
\[ \begin{align} \max_{\phi_n} & \left[ \sum_n \left(\frac{v_n}{P_n^\alpha r_n^{1-\alpha}}\right)^\epsilon \right]^{1/\epsilon} \\ s.t. \quad & (10)-(13) \quad \text{(SE)}\\ & (17) \quad \text{(TC)} \\ & (18) \quad \text{(BC)} \end{align} \]
simplified into 👉 \(\max_{\phi_n} U^{eq} = f(w^{eq}(\phi),P^{eq}(\phi),r^{eq}(\phi),L^{eq}(\phi),T^{eq}(\phi),\phi)\quad (21)\)
julia + JuMP.jl + IPopt.jl# not tested. (of course.)
using JuMP, Ipopt
function MartaSteps1and3(T::Matrix)
N = size(T,1) # T is the current transport costs matrix
m = Model(Ipopt.Optimizer)
@variable(m, 1 <= ϕ[1:N])
@variable(m, 0 <= w[1:N])
. . . # define all choice variables
@constraint(m, eq10[n=1:N],
sum( (L[i] / (σ*F) (σ/(σ-1)) w[i]/A[i] * T[n,i]) * P[i]^(σ-1) * w[i] * L[i]
for i in 1:N)
. . . # define all constraints (10-13)
@expression(m, v[i=1:N], . . . ) # define
@objective(m, sum( (v[n] / (P[n]^α * r[n]^(1-α)))^ϵ for n in 1:N)^(1/ϵ))
optimize!(m)
# build's AD gradient+hessian+sparsity structure
# and hands over to Ipopt
end😉