Addition - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

Operators in the Student:-LinearAlgebra Package

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

A + B

A . B

x * A

A * x

A ^ n

A ^ +

Transpose(A)

A ^ *

HermitianTranspose(A)

v &x w

Parameters

A

-

Matrix, Vector, or scalar

B

-

Matrix, Vector, or scalar

x

-

scalar

n

-

integer

v

-

3-D Vector

w

-

3-D Vector

Description

• 

To add two Matrices, two Vectors, or a Matrix and a scalar, use the syntax .  In the case where one of  or  is a Matrix and the other is a scalar, the scalar is interpreted as a diagonal Matrix of appropriate dimensions, with that scalar value along the diagonal.

• 

To multiply two Matrices, a Matrix and a Vector, a Matrix or Vector and a scalar, or to compute the dot product of two Vectors, use the syntax .  This "." operator is non-commutative, so it does not rearrange the orders of non-scalar terms.

  

If  and  are numbers (including complex and extended numerics such as infinity and undefined), then , that is, the '.' operator extends the '*' operator in this case.

  

If  and  are Vectors with the same orientation (that is, both are row Vectors or both are column Vectors) and dimension, then  is computed as their dot product.

  

If one of  and  is a Matrix or a Vector, and the other is a Matrix, Vector, or constant and the previous case does not apply, then their product is computed as the relevant algebraic operation, without reordering.  That is, the '.' operator implements non-commutative multiplication.

  

The '.' operator is n-ary, meaning that expressions such as  are interpreted as expected.

  

Note:  In Maple,  '.' can be interpreted as a decimal point (for example, ), as part of a range operator (for example, ), or as the (non-commutative) multiplication operator.  To distinguish between these three circumstances, Maple uses the following rule.

  

Any dot that is not part of a range operator (more than one '.' in a row) and not part of a number is interpreted as the non-commutative multiplication operator.

  

Note that the interpretation of the phrase "not part of a number" depends on whether you are using 1-D or 2-D input mode.  In 1-D input mode, interpretation proceeds from left to right, and a dot following a number will be interpreted as a decimal point unless that number already contains a decimal point.  In 2-D input mode, interpretation is carried out on the expression as a whole, and because spaces and juxtaposition can be interpreted as multiplication, a dot which is immediately preceded or followed by a number is always interpreted as a decimal point.

  

For example, in 1-D input mode, 3.4 is a number, 3. 4 is an error and 3 .4 and 3 . 4 return 12.  3. .4 is 12. and 3..4 is a range.

  

In 2-D input mode, 3.4 is a number, 3. 4 and 3 .4 are errors and 3 . 4 returns 12.  3. .4 is an error and 3..4 is again a range.  (All of the errors shown by these examples are due to the rule that a number cannot appear as the right-hand operand of an implicit multiplication operation. In such cases, use of explicit multiplication (*) can avoid the error.  See also 2-D Math Details for more information.)

• 

It is an error to use the "*" operator between operands that are both Matrices or Vectors. To multiply a scalar, x, and a Matrix or Vector, you can use  *  or  * .  There is a small, but important, difference between  and  in this case, where  is a scalar and  is a Matrix or Vector.  Namely, if  is a symbolic expression (not a constant), then  performs the componentwise multiplication, while  returns unevaluated.

• 

If  is a square Matrix, then its (integer) powers can be computed using the syntax , where  is an integer.  If  is negative, , where  is the inverse of  (if it exists).

• 

The transpose of a Matrix or Vector is obtained by the special syntax  or the Transpose(A) command.

  

Similarly, the Hermitian transpose of a Matrix or Vector is obtained by the special syntax  or the HermitianTranspose(A) command.

• 

The cross product of two 3-D Vectors is computed using the syntax .

Examples

(1)

(2)

(3)

(4)

Error, (in LinearAlgebra:-Multiply) first matrix column dimension (3) <> second matrix row dimension (2)

(5)

(6)

(7)

(8)

(9)

(10)

(11)

(12)

(13)

(14)

(15)

See Also

Operators

Student:-LinearAlgebra

 


Download Help Document