Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
Part 5: Working with Matrices
Go to Maple Portal Previous Tutorial Next Tutorial
Introduction
Maple's 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 Help>Quick Help for the list of the most common keystrokes.
Creating Matrices and Vectors
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, we will 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.
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.
Working with Matrices and Vectors
Maple has extensive support for linear algebra.
Matrix Calculations with the Context Menu Use the context menu to perform matrix calculations.
Example: Select Standard Operations>Inverse to find the inverse.
Select Standard Operations>Determinant to find the determinant.
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 is the name of the matrix, and and 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.
Viewing Large Matrices
Only small matrices are shown inline. For instance, consider the matrix created here. To browse this matrix, double-click on the summary.
You can export to Excel from this dialog. For more information on importing and exporting, see the next tutorial.
Tip: The LinearAlgebra package contains many commands for creating and manipulating matrices and vectors and for solving linear algebra problems.
See Also
Linear Algebra Package Index, Matrices
Download Help Document