20010102
u
Seq
Function: Generates a list in accordance with a numeric sequence expression.
Syntax: Seq( Exp, variable, start value, end value, [increment] [ ) ]
If you do not specify an increment, an increment of 1 is used.
○ ○ ○ ○ ○
Example
To generate a list in accordance with the expression: value A, end
value 3A, increment A
K
1
(LIST)
c
(CREATE)
b
(Seq)
v
,
v
,
av
(A)
,d
av
(A)
,
av
(A)
w
{ A, 2A, 3A }
u
Augment (Augmnt)
Function: Returns a new list that appends List 2 to List 1.
Syntax: Augment( List, List [ ) ]
○ ○ ○ ○ ○
Example
To combine list {1, 2} and list {3, 4}
K
1
(LIST)
c
(CREATE)
c
(Augmnt)
!
*
( { )
b,c
!
/
( } )
,
!
*
( { )
d,e
!
/
( } )
w
{ 1, 2, 3, 4 }
u
Fill
Function: Replaces the elements of a list with a specified value or expression.
This command can also be used to create a new list whose elements all
contain the same value or expression.
Syntax: Fill( {Exp/Eq/Ineq}, List [ ) ]
Fill( Exp, numeric value [ ) ]
○ ○ ○ ○ ○
Example
To replace the elements of list {3, 4} with X
K
1
(LIST)
c
(CREATE)
d
(Fill)
v
,
!
*
( { )
d,e
!
/
( } )
w
{ X, X }
○ ○ ○ ○ ○
Example
To create a list with eight elements, all of which are X
K
1
(LIST)
c
(CREATE)
d
(Fill)
v
,i
w
{ X, X, X, X, X, X, X, X }
7-1-28
Using the CAS (Computer Algebra System) Mode
20011101
Summary of Contents for ALGEBRA FX 2.0 Plus
Page 54: ...20010102 ...