Up | Next | Prev | PrevTail | Tail |
For algebraic mode, lists are represented by the prefix operator LIST. From the symbolic mode standpoint it may appear a bit curious that one has to insert the symbol LIST into a list in order to make it a correct algebraic object, but this is necessary in the prefix algebraic context. E.g. try in algebraic mode
you will see the result (LIST A B (LIST C D) E).
Correspondingly equations are represented by the prefix operator EQUAL followed by the right-hand and the left-hand sides as parameters; e.g. x = sqrt(2) is represented as (EQUAL X (SQRT 2));
The result of solve (x∧ 2=2,x); is an instructive mixture of all these forms:
this form is a list with two equations and the equations have *SQ forms as right-hand sides.
A matrix too is represented internally by a prefix form with operator MAT followed by the rows; each row is a list containing the elements as algebraic forms. The elements can be accessed easily using the access function nth. Example: the matrix mat((1,2),(3,4)) is encoded as (MAT (1 2) (3 4)). The form nth(nth(m,3),2) gives access to the element (2,2). Be careful if you use this form for an assignment: nth(nth(m,3),2) := 17; is an in-place operation. You can create a matrix easily by a symbolic program, e.g. a n*n unit matrix
Up | Next | Prev | PrevTail | Front |