Dr. Richard M. Crowley
Current liabilities (Chapter 8)
Obligation of the enterprise arising from past events, the settlement of which is expected to result in an outflow from the enterprise of resources embodying economic benefits. (FRS 37:10)
This is included in Chapter 5 in the book
Received a $2,000 note payable with 9% interest due in 3 months payable to our supplier.
Gave $2,000 with 9% interest due in 3 months payable to our customer as a note receivable.
Coffee Co. gives $1,000 to Latte Inc. on November 1st, 20X8 as a note with 6% interest over 6 months. Record the journal entries for both companies, i.e., the note receivable and the note payable. Assume December 31st is both companies’ fiscal year end.
Contingent liabilities are obligations you might or might not have
The bottom line: If you both pick each other, it’s much more likely you’ll be in the same group
Your deliverable will be a 15 minute presentation, graded on content (75%) and presentation delivery (25%).
This section is based on:
Corporate finance: An Introduction
by Ivo Welch
Pearson: Boston, MA. 2009.
It’s a good finance textbook!
We’ll use these assumptions in this class
All three of these are equivalent: a dollar today is worth more than a dollar tomorrow
Answers:
\[ NPV_0 = CF / R \]
\(NPV_0 = \sum_{i=0}^{n} \frac{CF_i}{R_i}\)
NPV at time 0 (today) is the sum of all discounted cash flows
In R:
NPV <- data.frame(Years=c(10, 100, 1000, 10000),
NPVs=c(sum(c(100/1.01^(1:10))),
sum(c(100/1.01^(1:100))),
sum(c(100/1.01^(1:1000))),
sum(c(100/1.01^(1:10000)))))
html_df(NPV)
Years | NPVs |
---|---|
10 | 947.1305 |
100 | 6302.8879 |
1000 | 9999.5229 |
10000 | 10000.0000 |
Formulas!
We’ll need this annuity NPV formula next class
\[\begin{align*} NPV &= \frac{100}{0.01} \cdot \left[1-\frac{1}{(1+0.01)^{10,000}}\right] \\ &\approx 10,000 \cdot 1 \\ &\approx 10,000 \\ \end{align*}\]
A note to those in finance, from the textbook: I am not a fan of memorization, but you must remember the growing perpetuity formula. It would likely be useful if you could also remember the annuity formula. These formulas are used in many different contexts. There is also a fourth formula, which nobody remembers, but which you should know to look up if you need it. (p53)
\(PV = \frac{C}{r-g} \left[1 - \frac{(1+g)^T}{(1+r)^T}\right], g<r\)
You can derive the other 3 formulas from the fourth:
You don’t need to know this for this class