Re: Financial operation [Hibernate]
Martin Gregorie wrote On 11/26/07 12:03,:
Eric Sosman wrote:
Martin Gregorie wrote:
[...]
NEVER use a float or double for financial values [...]
Never say NEVER. No special reason to pick on Martin's advice
other than that it's the camel's backbreaker, as others have made
similar statements. To all those who think floating-point has no
place in financial matters, I propose the following scenario for a
simple mortgage loan:
Loan principal: 300000 splonders
Repayment schedule: Monthly, in 359 equal payments plus
one final payment no more than twice as large (i.e.,
"substantially equal" monthly payments)
Nominal interest rate: 6.125% annually
Origination fee: 4500 splonders (1.5 "points")
Question: What is the "Annual Percentage Rate" or
APR for this loan?
I will concede that it is *possible* to solve this problem
without floating-point arithmetic, but I maintain it would be
foolish to eschew the convenience.
The problem is that some bean-counter somewhere will get upset if values
in the millions or billions don't balance to the exact penny.
I take Patricia's point about projections (usually done with
spreadsheets, so using real numbers whether you like it or not) and the
same applies to the APR, i.e. projections and APR are never directly
converted to monetary values.
Then let's ask another question about the same mortgage
loan, a question whose answer *is* monetary: How much is the
monthly payment? To get this answer you need to solve for
the term payment T in
T = P * (R - 1) / (1 - R^(-N))
.... for the principal P = 300000 splonders, the number of
monthly payments N = 360, and the monthly interest rate
R = 1 + 0.06125/12. If payment amounts are stated in
centisplonders (as in the USA), you'll need an accuracy of
one part in 30 million, or about 3E-8.
Now, *after* you use floating-point to calculate this
amount (I get 1822.8316+ splonders per month), you'll chop
or round to an amount in centisplonders, probably 1822.84.
At this point, you *should* switch to BigDecimal or long
or some other exact representation for calculating month-
by-month balances, the final month's payment, late fees,
document fees, fee management fees, and all such monetary
amounts, so the bean counters will be happy with how exact
everything is. But the original calculation of T is best
performed in floating-point.
--
Eric.Sosman@sun.com