LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Equity Valuation in R

Kurs anzeigen

Anleitung zur Übung

  • 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.

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# 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
Code bearbeiten und ausführen