LoslegenKostenlos loslegen

Calculating Present Value of Free Cash Flow to Equity

In the prior exercises, we calculated the Free Cash Flow to Equity (FCFE) projections from 2017 to 2021. In this exercise, we will discount these FCFE projections to the present. The object fcfe (FCFE for 2017 to 2021) and ke (discount rate of 10.5%) are stored in memory.

Diese Übung ist Teil des Kurses

Equity Valuation in R

Kurs anzeigen

Anleitung zur Übung

  • Add the number of discount periods for each cash flow.
  • Calculate the present value factor for each cash flow.
  • Calculate the present value of each cash flow.
  • Sum the present values of the cash flows.

Interaktive Übung

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

# Add discount periods
fcfe$periods <- ___
fcfe

# Calculate Present Value Factor
fcfe$pv_factor <- ___
fcfe

# Calculate Present Value of each Cash Flow
fcfe$pv <- ___
fcfe

# Total Present Value
pv_fcfe <- ___
pv_fcfe
Code bearbeiten und ausführen