You are correct, normal variables are limited in length to a single character; however, multiple character variable names can be used in other aspects of TI-Basic programming.
List Variables
List variables can be named using between between 1 and 5 characters, or using the 6 predefined list variables (L1
-L6
).
{1,2,3,4→ALIST
System Variables
System variables are found by pressing the VARS
key on you calculator. They consists of statistical, table and, graph variables that generally consist of 3 or 4 characters. Examples of these variables include Xmin
, Xmax
, Ymin
, Ymax
, TblStart
and, TblInput
. Values can be stored to these variables in the same manner as normal variables.
10→Xmin
10→Xmax
Finance Variables
Finance variables function similarly to system variables. They are a set of predefined variables with multi-character names. The primary difference being that they all pertain to finance in some manner. These variables are accessed by pressing APPS
, 1
, Right Arrow
. Examples of include I%
, PV
and, PMT
.
10→I%
10→PV
10→PMT
This answer is based entirely off a TI-83 Plus calculator. As far as I know, this should not be an issue, but any inconstancy can be put down to this.