33.5 Economic Significance

The total wealth gain (or loss) resulting from a marketing event is given by:

ΔWt=CARt×MKTVAL0

where:

  • ΔWt = Change in firm value (gain or loss).
  • CARt = Cumulative abnormal return up to date t.
  • MKTVAL0 = Market value of the firm before the event window.

Interpretation:

  • If ΔWt>0: The event increased firm value.
  • If ΔWt<0: The event decreased firm value.
  • The magnitude of ΔWt reflects the economic impact of the marketing event in dollar terms.

By computing ΔWt, researchers can translate stock market reactions into tangible financial implications, helping assess the real-world significance of marketing decisions.


# Load necessary libraries
library(tidyverse)

# Simulated dataset of event study results
df_event_study <- tibble(
    firm_id = 1:100,
    # 100 firms
    CAR_t = rnorm(100, mean = 0.02, sd = 0.05),
    # Simulated CAR values
    MKTVAL_0 = runif(100, min = 1e8, max = 5e9)  # Market value in dollars
)

# Compute total wealth gain/loss
df_event_study <- df_event_study %>%
    mutate(wealth_change = CAR_t * MKTVAL_0)

# Summary statistics of economic impact
summary(df_event_study$wealth_change)
#>       Min.    1st Qu.     Median       Mean    3rd Qu.       Max. 
#> -452754614  -17135099   32402378   47805094   97481255  518034141

# Histogram of total wealth gain/loss
hist(
    df_event_study$wealth_change,
    main = "Distribution of Wealth Change from Event",
    xlab = "Wealth Change ($)",
    col = "blue",
    breaks = 30
)