Kevin Crotty
BUSI 448: Investments
Compounding: twice the rate turns into much more than twice the money if invested over enough time!
Some of the course will use the Rice Business Learn Investments Dashboard.
The pages demonstrate many concepts we will cover.
We will use Python as our toolkit.
Why python?
Bond pricing inputs:
What does the timeline of bond CFs look like?
Zero coupon bond:
\[ P = \frac{FACE}{(1+YTM)^T} \]
Annual coupon bond:
\[ P = \sum_{t=1}^T\frac{COUPON}{(1+YTM)^t} + \frac{FACE}{(1+YTM)^T} \]
Bond prices move inversely with yield!
\[ P = \sum_{t=1}^T\frac{C}{(1+DR)^t} + \frac{FACE}{(1+DR)^T} \]
where:
3 methods:
npf.pv
function
BUSI 448