Part 5: Working with Matrices
Go to Maple Portal Previous Tutorial Next Tutorial
Introduction
Creating Matrices and Vectors
Working with Matrices and Vectors
See Also
Maple Tutorials are designed to help you get started with Maple, learn about the key tools available in Maple, and lead you through a series of problems.
In Part 5: Working with Matrices, you will create matrices and vectors, perform linear algebra calculations, and extract entries.
To try this material on your own, start with an empty Maple document. Perform the steps described in the left column of each table below. The results of the steps are displayed in the right column for reference.
Refer to Help>Quick Reference for basic getting started tips.
Note for non-Windows users: The keystrokes given in this document are for Windows. There will be differences for other platforms. If you are using a different platform, see Shortcut Keys.
Enter matrices using the palettes or using the matrix notation.
Steps
Result
Creating a Matrix Example: Use the Matrix palette to create a 3 x 3 matrix. Tab between the placeholders and fill in the values.
To assign this matrix to a name, type "A:=" and then use an equation label to refer to the matrix. To get an equation label, type [Ctrl][L]. In the Insert Label box, type 2.1.
Example: Create a matrix using Maple's matrix notation. Use <> brackets to enclose a sequence of the entries in each column, and | to separate the columns. Enclose the entire matrix in more brackets <>.
Forming a New Matrix from Two Matrices
To form a new matrix, simply adjoin these matrices.
Example: Use the matrix notation to form a new matrix from the columns of A and the columns of B.
[124342453]
124342453
A≔
B≔1,4,2|0,9,2
A|B
Creating a Vector
Vectors are created in a similar way.
Example: Use the Matrix palette to create a 3 element column vector (with 3 rows and 1 column). Tab between the placeholders and fill in the values.
Example: Create a vector using vector notation. Use <> brackets to enclose the entire vector. Use a comma to separate the elements in a column vector,and | to separate elements in a row vector.
abc
colvec≔ a,b,c
rowvec ≔ a | b | c
Maple has extensive support for linear algebra.
Matrix Calculations with the Context Panel Use the context-sensitive operations in the Context Panel to perform matrix calculations.
Example: Select Standard Operations>Inverse to find the inverse.
Select Standard Operations>Determinant to find the determinant.
[124342453]→inverse
124342453→determinant−4
Matrix Calculations
Multiplying Matrices
Example: To multiply two matrices or to multiply a matrix by a vector, use a period (.) as the matrix multiplication symbol.
Multiplying By a Scalar
Example: To multiply a matrix by a scalar, use the multiplication symbol * (displayed as ⋅).
Extracting Entries
To extract entries from a matrix, use the command M[i, j], where M is the name of the matrix, and i and j are the row and column.
To extract a submatrix, give a range instead for each index.
Example: Extract the 2 x 2 matrix from the bottom left corner of the matrix A.
Tip: Negative indices can be used: -1 selects the last row (or column) entry, -2 selects the second-to-last row (or column) entry, and so on. Thus, you could obtain the same submatrix using A[-2..-1, 1..2].
This selects the submatrix located in the last two rows and first two columns of A.
To extract entries from a vector, use the command V[i], where i is a number or a range.
A.B
A.colvec
c⋅−93−72−76−2
A2,3
2
A2..3,1..2
rowvec2..3
Viewing Large Matrices
When you have a large matrix, only a portion is shown. The matrix is scrollable: hover over the output and scoll bars are visible. Use the scroll bars to change your view.
You can export to Excel from this dialog. For more information on importing and exporting, see MaplePortal/Tutorial7.
LinearAlgebraRandomMatrix⁡500,500
Tip: The LinearAlgebra package contains many commands for creating and manipulating matrices and vectors and for solving linear algebra problems.
Linear Algebra Package Index, Matrices
Download Help Document