ComenzarEmpieza gratis

Calculate Value During Projection Period

The FCFE projections are stored in the fcfe data frame. Now that you have an estimate for the cost of equity (ke) of 11.55%, calculate the value as of December 31, 2016 of the FCFE during the projection period.

Este ejercicio forma parte del curso

Equity Valuation in R

Ver curso

Instrucciones del ejercicio

  • Add discount periods to fcfe object.
  • Calculate the discount factor for each year.
  • Calculate the present value of each cash flow.
  • Sum the PVs of each cash flow to calculate the projection period value.

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# Calculate Discount Periods to 12/31/2016
fcfe$disc_periods <- ___

# Calculate discount factor
fcfe$disc_factor <- ___

# Calculate PV of each period's total free cash flow
fcfe$pv <- ___

# Calculate Projection Period Value
pv_proj_period <- ___
pv_proj_period
Editar y ejecutar código