-
Present Values 3
-
Lecture1.1
-
Lecture1.2
-
Lecture1.3
-
-
NPV vs. IRR 4
-
Lecture2.1
-
Lecture2.2
-
Lecture2.3
-
Lecture2.4
-
-
Other Profit Measures 4
-
Lecture3.1
-
Lecture3.2
-
Lecture3.3
-
Lecture3.4
-
-
Depreciation 4
-
Lecture4.1
-
Lecture4.2
-
Lecture4.3
-
Lecture4.4
-
-
Cash Flow Challenges 9
-
Lecture5.1
-
Lecture5.2
-
Lecture5.3
-
Lecture5.4
-
Lecture5.5
-
Lecture5.6
-
Lecture5.7
-
Lecture5.8
-
Lecture5.9
-
-
Capital Asset Pricing Model 3
-
Lecture6.1
-
Lecture6.2
-
Lecture6.3
-
-
Risky Debt 3
-
Lecture7.1
-
Lecture7.2
-
Lecture7.3
-
-
Unlevering Equity 3
-
Lecture8.1
-
Lecture8.2
-
Lecture8.3
-
-
Weighted Average Cost of Capital 4
-
Lecture9.1
-
Lecture9.2
-
Lecture9.3
-
Lecture9.4
-
-
Debt Effect Analysis 2
-
Lecture10.1
-
Lecture10.2
-
-
WACC Challenge 2
-
Lecture11.1
-
Lecture11.2
-
-
Relative Valuation 4
-
Lecture12.1
-
Lecture12.2
-
Lecture12.3
-
Lecture12.4
-
-
Forward Contract Valuation 3
-
Lecture13.1
-
Lecture13.2
-
Lecture13.3
-
Investment Timing
How can we model when the best time to invest is? All you have to do is see the different values of PV(inflows)-PV(outflows) over time. So if we could invest in these times, when would we? Assume r=5%
Challenge
Pick the best investment from below.
Year | Inflow | Outflow |
0 | 20 | -10 |
2 | 30 | -15 |
4 | 40 | -25 |
Solution
print(Cashflow(20,0,.05).PV+Cashflow(-10,0,.05).PV)
print(Cashflow(30,2,.05).PV+Cashflow(-15,0,.05).PV)
print(Cashflow(40,4,.05).PV+Cashflow(-25,0,.05).PV)
If you run these above function, you will see that the best deal is in period 2.
Source Code
Prev
Measures Part 2
Next
Introduction