Appendix a: function and instruction reference – Texas Instruments TI-73 EXPLORER User Manual
Page 309
Appendix A: Function and Instruction Reference
303
73A-ENG.DOC AppxA: Function/Instruction Reference, English Julie Hewlett Revised: 07/29/98 1:10 PM Printed:
05/19/99 9:03 AM Page 303 of 36
remainder(
dividend,divisor
)
remainder(
list
,
divisor
)
remainder(
dividend
,
list
)
remainder(
list
,
list
)
1
N U M
Returns the remainder resulting from the division of
two positive whole numbers, dividend and divisor,
each of which can be a list.
If both arguments are lists, they must have the same
number of elements. If one argument is a list and the
other a non-list, the non-list is paired with each
element of the list, and a list is returned.
remainder(10,4) b
2
{5,5,5,5,5}ÜL
1
b
{5 5 5 5 5}
{1,2,3,4,5}ÜL
2
b
{1 2 3 4 5}
remainder(L
1
,L
2
) b
{0 1 2 1 0}
:
Repeat
condition
:block
:
End
:command
8
C T L
Programming command; executes block until
condition is true.
PROGRAM:REPEAT
:0ÜI:0ÜJ
:Repeat I6
: I+1ÜI:J+1ÜJ
:Disp "J=",J
:Pause
:End
Return
8
C T L
Programming command; returns to the calling
program.
PROGRAM:AREA
:D/2ÜR
:p¦R
Ü
A
:Return
PROGRAM:RETURN
:Input "DIAMETER=",D
:Input "HEIGHT=",H
:prgmAREA
:A¦HÜV
:Disp "VOLUME=",V
round(
value[,#decimal_places]
)
1
N U M
Returns a number, expression, or each element in a
list rounded to 10 digits or #decimal_places (9), if
specified.
In Float mode:
round(p,4) b
3.1416
round(p) b
3.141592654
Scatter
See
Plot1
: Scatter Plot
Sci
.
Selects the
Sci
Numeric Notation mode setting.
Displays results in scientific notation.
123 b
1.23 © 2