Index: A-M
This Index page contains all of the commands beginning with a letter from A to M. All optional arguments that you can put in commands are enclosed in brackets ([]). For details about a command, click on the link(s) to the tutorial(s) where the command is discussed.
a+bi
The a+bi (complex) mode displays complex numbers in the form a+bi. I generally like to leave my calculator in the a+bi mode because it also can do the functions of the Real mode. If non-complex numbers are entered, then the answer is displayed as a real number. To find a+bi, press , six times, , and .
abs(
abs( returns the absolute value of a real number, expression, list, or matrix. To find abs(, press , , and then .
Alpha Characters
The alpha characters are from A to Z and theta.
Alpha-Lock
Changes the cursor to characters and the following keystrokes will display one of the alpha characters (letters), depending on which button you press.
Ans
Ans returns the value of the last answer. When an expression is successfully evaluated, the calculator stores the answer to a storage area called Ans. Ans may be a real or complex number, a list, a matrix, or a string. The main reason for using Ans is to save memory. Accessing Ans is easier for the calculator than accessing a variable. Ans is used just like the user variables, but there is one exemption. You cannot store a variable into Ans by using "," so you can't do something like: "3267Ans." What you have to do is just put "3267" by itself. If you leave 3267 by itself on one line, it's automatically stored into Ans. To find Ans, just press and [Ans].
' (Apostrophe)
This can be used to ways. In Tutorial 24, we use as a character in text, the apostrophe. As you know apostrophes are used to show possession (Frank's) and to create contractions (don't). This command is supposed to be used as the minutes (M) in the DMS format. DMS entry notation is degrees/minutes/seconds entry notation. So if you wanted to say that the angle of something was 30 degrees, 11 minutes, you'd put 30°11'. To find the apostrophe (minutes), press and [ANGLE]. Scroll down to 2:'.
augment(
augment( returns a list, which is listB concatenated (added) to the end of listA. Ex. augment({1,2,3},{4,5,6}) would give {1,2,3,4,5,6}. The term concatenate means to add, but not like adding two numbers together. It literally means to attach one thing to the end of another. To find this command, press and [LIST], and . Scroll down to 9:augment(.
augment( returns a matrix, which is matrixB, appended to matrixA as new columns. Ex. augment([[1,2][3,4]],[[5,6][7,8]]) would give: