tv
Sorry, this function does not broadcast your favorite series.
This funtion calculates the terminal value based on the perpetual growth method.
tv = FCFn * (1+growth rate) / (WACC - growth rate)
Indirect parameter passing is disabled
3
No. | Type | Description |
---|---|---|
1 input |
numeral | FCFn Free Cash Flow value at year n |
2 input |
numeral | Growth Rate Perpetual growth rate of Free Cash Flow (FCF) |
3 input |
numeral | WACC Working Average Cost of Capital (WACC) |
Type | Description |
---|---|
numeral | TV Calculated Terminal Value |
Division by zero error happens if WACC equals to the perpetual growth rate
echo( tv ( 100, 0.05, 0.12 ) ); // Returns 1500
1500