TI-BASIC:SK:Powers Exponentials

From Learn @ Cemetech
Revision as of 18:03, 24 February 2016 by Maintenance script (talk | contribs) (Initial automated import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Another important class of math functions deals with powers, logarithms, and exponents.

TOC

^ operator

This operator, found on the keyboard, is the exponent operator. It will raise a number to a power.

^^-1^^, ^^2^^, ^^3^^

These are shortcuts for the reciprocal, square, and cube of a number respectively. ^^-1^^ and ^^2^^ can be found on the keyboard, while ^^3^^ can be pasted by pressing MATH, 3.

Logarithms: Log(, Ln(

The Log( and Ln( functions, both available from the keyboard, will calculate the logarithms to base 10 and base e, respectively. To get logarithms to other bases, use the following formula:

:log(x)/log(b)

where b is the desired base.

A useful use of log( is to determine how many digits an integer has. An integer n will have

:int(log(abs(n)))+1

digits in base 10.

10^(, e^(

These functions can be found on the keybord, by pressing 2nd plus the respective logarithm key. Of course you could always type these out one character at a time, but using the shortcuts takes less bytes.

Roots: √(, ³√(, ˣ√(

These functions take the square root, cube root, and nth root of a number, respectively.


:5ˣ√(2)

will give the same result as

:2^(1/5)

namely, the 5th root of 2.

<< Numbers Menu Table of Contents Probability >>