Group Abstract Group Abstract

Message Boards Message Boards

0
|
9.7K Views
|
2 Replies
|
3 Total Likes
View groups...
Share
Share this post:

Determine present value of a cashflow w/ unequal payments?

Posted 9 years ago

I would like to use Mathematica built-in functions to determine the present value of a cashflow payment stream given unequal payments at regular intervals and a constant rate of return. Ultimately I would like to present results as a table of 'balance remaining' values for an amortization schedule. I can do this for a fixed-amount stream using the Annuity construct:

nstop = 360;
nm = Table[
   TimeValue[Annuity[529.24, k], EffectiveInterest[0.0375/12, 1]], {k,
     1, nstop}];
rt = Table[{i, Round[nm[[i]]]}, {i, 1, nstop}];

See the attachment for clarification.

I can do this in Excel but would rather use Mathematica if possible. I'm new to this set of functions and not a finance major. Thanks for any help you may be able to provide, be it a link to solution or your code. Keith

Attachments:
POSTED BY: Coach KLC
2 Replies
POSTED BY: Seth Chandler
Posted 9 years ago

Seth, Thank you very much for your response. You pointed out something that I missed in the 'help' file, viz. the inclusion of the 'date' or 'period number' values. One of the examples seemed to indicate that these were not necessary if the cashflows were regular. Much obliged! -K-

POSTED BY: Coach KLC
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard