The TI-89 and the TI-89 Titanium are graphing calculators developed by Texas Instruments. The bulk of its users are students, who often find the built in Computer Algebra System invaluable. For this reason, the calculator is banned for use on the ACT and in some classrooms. It is, however, allowed by the College Board on all calculator-permitted tests, including the SAT, some SAT Subject Tests and the AP Calculus, Chemistry, Physics, and Statistics exams. For many international math competitions, it is considered as the most powerful and function-rich graphing calculator legal to use (TI-92s and above have QWERTY keyboards).
The TI-89 is a graphing calculator developed by Texas Instruments (TI) in 1998. Possessing a 160×100 pixel resolution LCD screen with advanced flash memory, coupled with TI's Advanced Mathematics Software, the TI-89 was dwarfed only by its larger and slightly more powerful cousin, the Voyage 200. In the summer of 2004, the standard TI-89 was replaced by the improved TI-89 Titanium.
The heart of the TI-89 is the Motorola 68000 microprocessor, which nominally runs at 10 MHz or 12 MHz (depending on the calculator's hardware version). Texas Instruments has allocated 256 KB of the total RAM for the unit (190 KB of which are available to the user) and 2 MB of flash memory (700 KB of which is available to the user). The RAM and Flash ROM are used to store expressions, variables, programs, tables, text files, and lists.
The major advantage of the TI-89 over lower-model TI calculators is its built-in Computer Algebra System, or CAS. The calculator can evaluate and simplify algebraic expressions symbolically. For example, (x^3-x^2-8x+12)/(x+3) returns . The answer is pretty printed by default; that is, it is returned as it would be written on paper, as opposed to how it would be entered into a computer. The previous answer would appear as it was displayed here, with the exponents being superscripts, instead of as x^2-4x+4.
To simplify the answer further, the factor function can be used. Entering factor((x^3-x^2-8x+12)/(x+3)) returns . The TI-89 can also expand factored expressions; entering expand((x-2)^2) yields . Expand will also do partial fraction decomposition if necessary, such as in the case of expand((x-3)/(x^2-4x-12)), where it returns
comDenom and propFrac. comDenom returns an answer with only one denominator; for example comDenom(x/2+(y^2-6)/3-z^2/8) returns
propFrac((x^2-5)/(x-3)) returning
The calculator can evaluate trigonometric expressions to exact values. For example, sin(60°) returns
sin(arctan(x^2-6)), returning
tExpand function expands things such as sin(3x)cos(x) into .
The tCollect function does just the opposite, reversing the expansion done by tExpand.
One of the most powerful features of the TI-89 is the solve() function. It takes two arguments, the equation and the variable to be solved for. For example, solve(3x+3=12,x) returns . For equations such as quadratics where there are multiple solutions, it returns all of them. For example, solve(x^4-x^2+3=6,x) produces
solve(tan(x+2)=0,x) returns x=@n1-2, with the @n1 representing any integer.
The TI-89 can also solve systems of equations. Entering in solve(x+y=4 and x^2-6x+3=y,x) gives
The TI-89 can solve simultaneous equations as well, with up to a 16 variables and 16 equations. To Solve
With equaling x and equaling y respectively.
The TI-89 also handles most calculus problems. It takes symbolic derivatives of all elementary functions and derivatives of some more complex functions too. The derivative function is , and it takes two arguments, the function and the variable. It also takes an optional argument specifying what derivative to take (for example, making the optional argument 3 will take the third derivative). Entering in ((x^x-x)/(x-1),x) gives
The calculator takes all existing integrals of elementary functions, and some of more complex functions as well. For example, ∫((x^2+1)^(-3/2),x) gives
In cases where no exact definite integral exists, or when the calculator cannot find it, it will approximate it. nInt will also approximate integrals.
The TI-89 can also take limits of functions. limit((1+1/x)^x,x,∞) is equivalent to
In addition to the standard two-dimensional function plots, it can also produce graphs of parametric equations, polar functions, sequence plots, differential equation fields, and three-dimensional (two variable) functions.
Since 1998, thousands of programs for math, science, or entertainment have been developed. Many available games are generic clones of Tetris, Minesweeper, and other classic games, but some programs are more advanced — for example, a ZX Spectrum emulator and a chess playing program. One of the most popular and well-known games is Phoenix.
The most significant difference between HW1 and HW2 is in the way the calculator handles the display. In HW1 calculators there is a video buffer that stores all of the information that should be displayed on the screen, and every time the screen is refreshed the calculator accesses this buffer and flushes it to the display (direct memory access). In HW2 and later calculators, a region of memory is directly aliased to the display controller (memory-mapped I/O). This allows for slightly faster memory access, as the HW1's DMA controller used about 10% of the bus bandwidth. However, it interferes with a trick some programs use to implement grayscale graphics by rapidly switching between two or more displays (page-flipping). On the HW1, the DMA controller's base address can be changed (a single write into a memory-mapped hardware register) and the screen will automatically use a new section of memory at the beginning of the next frame. In HW2, the new page must be written to the screen by software. The effect of this is to cause increased flickering in grayscale mode, enough to make the 7-level grayscale supported on the HW1 unusable (although 4-level grayscale works on both calculators).
HW2 calculators are slightly faster because TI increased the nominal speed of the processor from 10 MHz to 12 MHz. It is believed that TI increased the speed of HW4 calculators to 16 MHz, though many users disagree about this finding.
Another difference between HW1 and HW2 calculators is assembly program size limitations. The memory limitations that have been imposed on HW2 calculators has varied with the AMS version of the calculator. As of AMS 2.09 the limit is 24k. Unlike HW2 calculators, HW1 calculators have no such limits. There are, however, unofficial patches and kernels that can be installed on HW2 calculators to overcome them.
The touted advantages of the TI-89 include four times the available flash memory (with over three times as much available to the user). The TI-89 Titanium is essentially a Voyage 200, except it doesn't have an integrated keyboard. The TI-89 Titanium also has a mini-USB port, for connectivity to other TI-89 Titanium calculators, or to a computer (to store programs or update the operating system). The TI-89 Titanium also features some pre-loaded applications, such as "CellSheet", a spreadsheet program also offered with other TI calculators. The Titanium also has a slightly differing case design from that of the TI-89 (the Titanium's case design is similar to that of the TI-84 Plus)
There are some minor compatibility issues with C and assembly programs developed for the original TI-89. Some have to be recompiled to work on the Titanium due to various small hardware changes, though in most cases you can fix the problem on the calculator by using a utility such as GhostBuster, by Olivier Armand and Kevin Kofler. This option is usually the best as it requires no knowledge of the program, works without the need of the program's source code, is automated, and doesn't require additional computer software. In some cases, only one character needs to be changed (the TI-89's ROM base is at 0x200000, whereas the TI-89 Titanium's is at 0x800000) by hand or by patcher. Most, if not all, of these problems are caused by the Ghost Space or lack thereof.
TI-89 | TI-89 | Seria TI-89 | TI-89
This article is licensed under the GNU Free Documentation License.
It uses material from the
"TI-89 series".
Home Page • arts • business • computers • games • health • hospitals • home • kids & teens • news • physicians • recreation• reference • regional • science • shopping • society • sports • world