ComenzarEmpieza gratis

Calculate the Terminal Value

In this exercise, you are asked to calculate the present value of the Terminal Value using the Perpetuity with Growth formula. The FCFE projections for 2017 to 2021 are in the fcfe object. The perpetuity growth rate of 3.0% (pgr) and cost of equity of 11.55% (ke) are stored in memory.

Este ejercicio forma parte del curso

Equity Valuation in R

Ver curso

Instrucciones del ejercicio

  • Extract the 2021 FCFE value from the fcfe data object, which is the fifth element in the object.
  • Calculate the terminal value.
  • Calculate the present value of the terminal value.

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# Extract 2021 FCFE
fcfe_2021 <- ___

# Use perpetuity with growth formula to calculate terminal value
tv_2021 <- ___
tv_2021

# Calculate PV of Terminal Value
pv_terminal <- ___
pv_terminal
Editar y ejecutar código