economics notes very helpful, Study notes of Corporate Finance

very helpful for students gives an understanding of economics

Typology: Study notes

2025/2026

Uploaded on 02/13/2026

maithwh-mohd
maithwh-mohd 🇦🇪

8 documents

1 / 5

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
ECO302
Genc
AUS
Consumption at the Golden Rule capital stock
Consumption at the golden rule of capital level is given by largest distance between
the LRSS output depreciation (and investment) function as shown in the following
figure:
At this level, we obtain the following representation of consumption:
c
¿=
(
1
s
)
f
(
k
¿)
c
¿=
y
¿
sf
(
k
¿)
c
¿=
y
¿
i
¿
c
¿=
f
(
k
¿)−
sf
(
k
¿)
c
¿=
f
(
k
¿)−
δ k
¿
pf3
pf4
pf5

Partial preview of the text

Download economics notes very helpful and more Study notes Corporate Finance in PDF only on Docsity!

ECO

Genc AUS

Consumption at the Golden Rule capital stock

Consumption at the golden rule of capital level is given by largest distance between the LRSS output depreciation (and investment) function as shown in the following figure: At this level, we obtain the following representation of consumption:

  • c ¿

=( 1 − s ) f ( k

¿

  • c ¿

= y

¿

− sf ( k

¿

  • c ¿

= y

¿

− i

¿

  • c ¿

= f ( k

¿

)− sf ( k

¿

  • c ¿

= f ( k

¿

)− δ k

¿

  • b/c in LRSS, ∆ k = 0  i ¿

= δ k

¿ Scenario: Too much capital

Now, let’s assume that we have too much capital, i.e., k

¿

> k GR. Obviously, the

consumption is not at the level indicated above by c ¿=( 1 − s ) f ( k ¿^ ). The economy

does not have a tendency to move toward the Golden Rule steady state. Achieving

the Golden Rule requires that policymakers adjust s.

Remember: Policymakers can affect the national saving rate:

  • Changing G or T affects national saving
  • Holding T constant overall but changing the structure of the tax system to provide more incentives for private saving (for example, a revenue-neutral shift from the income tax to a consumption tax) This adjustment leads to a new steady state with higher consumption. But what happens to consumption during the transition to the Golden Rule? In what follows, I detail the transition process from the so-called “too much capital” state to c* by reducing s. There is also an R program to visualize the transition:  Initial Setup and Definitions At time t₀ , the economy is at a long-run steady state (LRSS) with:

 Capital per worker : k

¿

> k GR

 Consumption per worker : c ¿=( 1 − s ) f ( k ¿^ )

 Output per worker : y ¿= f ( k ¿^ )

 Investment per worker : i

¿

= sf ( k

¿

 The Golden Rule level of capital (^ k^ GR ) maximizes consumption:

d c ¿ d k

¿ =^ f^

'

( k

¿

)− δ = 0  f '^ ( k ¿^ )= δ.

Step-by-Step Transition Dynamics Step 1: Reduction in Savings Rate (s ↓)

 To move from ( k

¿

> k GR ) to ( k

¿

= k GR ), the savings rate is reduced.

 This lowers investment: i = sf ( k )

 Since ( i < δ k ), capital begins to decline.

Step 2: Capital Dynamics

 Capital evolves according to: k˙ = sf ( k )− δk

 With lower ( s ), k˙ < 0 → capital per worker declines over time until it

reaches (^ k^ GR ).

Step 3: Output and Investment Decline

 Output: ( y = f ( k )) → declines as ( k ) declines.

 Investment: ( i = sf ( k )) → declines due to both lower ( s ) and lower ( f ( k )).

Step 4: Consumption Dynamics

 Consumption: ( c = f ( k )− sf ( k )=( 1 − s ) f ( k ))

R Program to Visualize the Transition You may use the following program to generate the transition dynamics. I also provide the output of this program in the form of an attached Excel file.

Solow model transition to Golden Rule capital

library(ggplot2)

Production function: Cobb-Douglas

f <- function(k, alpha = 0.3) { return(k^alpha) }

Parameters

delta <- 0. s_initial <- 0. s_final <- 0. alpha <- 0. k_gold <- (alpha / delta)^(1 / (1 - alpha))

Time simulation

time <- seq(0, 50, by = 1) k <- numeric(length(time)) y <- numeric(length(time)) i <- numeric(length(time)) c <- numeric(length(time))

Initial capital above golden rule

k[1] <- k_gold * 1.

Simulate dynamics

for (t in 2:length(time)) { s <- ifelse(t < 5, s_initial, s_final) k[t] <- k[t-1] + s * f(k[t-1], alpha) - delta * k[t-1] y[t] <- f(k[t], alpha) i[t] <- s * y[t] c[t] <- y[t] - i[t] }

Create data frame

df <- data.frame( Time = time, Capital = k, Output = y, Investment = i, Consumption = c )

Plot

ggplot(df, aes(x = Time)) + geom_line(aes(y = Capital, color = "Capital")) + geom_line(aes(y = Output, color = "Output")) + geom_line(aes(y = Investment, color = "Investment")) + geom_line(aes(y = Consumption, color = "Consumption")) + labs(title = "Transition to Golden Rule Capital", y = "Per Worker Values", color = "Variable") + theme_minimal()