|
We're glad you came by, but you might find what you're looking for elsewhere. TI-Basic Developer is not the site it once was. While its information on commands and other calculator features remains almost second-to-none, its forum, archives, and even hosting service, Wikidot, have been decaying for years. The calculator community would love to see what you're working on, or help you in your next coding adventure, but TI-Basic Developer is no longer the place to do it. Instead, you should head over to Cemetech (primarily American) or TI-Planet (primarily international). Both are active, well-established forums with their own archives, chatrooms, reference material, and abundant coding tools and resources. We'll see you there, we hope. |
Converts a nominal interest rate to an effective interest rate.
►Eff(interest rate,compounding periods)
On the TI-83, press:
- 2nd FINANCE to access the finance menu.
- ALPHA C to select ►Eff(.
On the TI-83+ or higher, press:
- APPS to access the applications menu.
- ENTER or 1 to select Finance…
- ALPHA C to select ►Eff(.
TI-83/84/+/SE
2 bytes
The ►Eff( command converts from a nominal interest rate to an effective interest rate. In other words, it converts an interest rate that does not take into account compounding periods into one that does. The two arguments are 1) the interest rate and 2) the number of compounding periods.
For example, take an interest rate of 7.5% per year, compounded monthly. You can use ►Eff( to find out the actual percent of interest per year:
►Eff(7.5,12)
7.663259886Formulas
The formula for converting from a nominal rate to an effective rate is:
(1)Here, Eff is the effective rate, Nom is the nominal rate, and CP is the number of compounding periods.
Error Conditions
- ERR:DOMAIN is thrown if the number of compounding periods is not positive, or if the nominal rate is -100% or lower (an exception's made for the nominal rate if there is only one compounding period, since ►Eff(X,1)=X)
Related Commands
.