Texas Instruments TI-89 Calculator User Manual


 
534 Appendix A: Functions and Instructions
8992APPA.DOC TI-89 / TI-92 Plus: Appendix A (US English) Susan Gullord Revised: 02/23/01 1:48 PM Printed: 02/23/01 2:21 PM Page 534 of 132
^
(power)
Z
key
expression1
^
expression2
expression
list1
^
list2
list
Returns the first argument raised to the
power of the second argument.
For a list, returns the elements in
list1
raised
to the power of the corresponding elements
in
list2
.
In the real domain, fractional powers that
have reduced exponents with odd
denominators use the real branch versus the
principal branch for complex mode.
4^2
¸
16
{a,2,c}^{1,b,3}
¸
{a 2
b
c
ò
}
expression
^
list1
list
Returns
expression
raised to the power of the
elements in
list1
.
p^{a,2,
ë
3}
¸
{
p
a
p
ñ
1
p
ò
}
list1
^
expression
list
Returns the elements in
list1
raised to the
power of
expression
.
{1,2,3,4}^
ë
2
¸
{
1 1/4 1/9 1/16
}
squareMatrix1
^
integer
matrix
Returns
squareMatrix1
raised to the
integer
power.
squareMatrix1
must be a square matrix.
If
integer
=
ë
1, computes the inverse matrix.
If
integer
<
ë
1, computes the inverse matrix
to an appropriate positive power.
[1,2;3,4]^2
¸
[1,2;3,4]^
ë
1
¸
[1,2;3,4]^
ë
2
¸
#
(indirection)
CATALOG
#
varNameString
Refers to the variable whose name is
varNameString
. This lets you create and
modify variables from a program using
strings.
Program segment:
©
:Request "Enter Your Name",str
1
:NewFo
ld
#
str
1
©
©
:For i,
1
,5,
1
: C
l
rGrap
h
: Grap
h
i
ù
x
: StoPic
#(
"pic" & string
(
i
))
:En
d
For
©