Get startedGet started for free

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.

This exercise is part of the course

Equity Valuation in R

View Course

Exercise instructions

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

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# 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
Edit and Run Code