The ►Eff( Command

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.

EFF.GIF

Command Summary

Converts a nominal interest rate to an effective interest rate.

Command Syntax

►Eff(interest rate,compounding periods)

Menu Location

On the TI-83, press:

  1. 2nd FINANCE to access the finance menu.
  2. ALPHA C to select ►Eff(.

On the TI-83+ or higher, press:

  1. APPS to access the applications menu.
  2. ENTER or 1 to select Finance…
  3. ALPHA C to select ►Eff(.

Calculator Compatibility

TI-83/84/+/SE

Token Size

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.663259886

Formulas

The formula for converting from a nominal rate to an effective rate is:

(1)
\begin{align} \operatorname{Eff}=100\left(\left(1+\frac{\operatorname{Nom}}{100 \operatorname{CP}}\right)^{\operatorname{CP}}-1\right) \end{align}

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

.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-Noncommercial 2.5 License.