From A First Course in Linear Algebra
Version 2.11
© 2004.
Licensed under the GNU Free Documentation License.
http://linear.ups.edu/
Matrices are input as lists of lists, since a list is a basic data structure in Mathematica.
A matrix is a list of rows, with each row entered as a list. Mathematica uses braces
((
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
would create a
![]() ![]() ![]() ![]() |
To display a matrix named a “nicely” in Mathematica, type MatrixForm[a] , and the output will be displayed with rows and columns. If you just type a , then you will get a list of lists, like how you input the matrix in the first place.
If a is the name of a matrix in Mathematica, then the command RowReduce[a] will output the reduced row-echelon form of the matrix.
Mathematica will solve a linear system of equations using the LinearSolve[] command. The inputs are a matrix with the coefficients of the variables (but not the column of constants), and a list containing the constant terms of each equation. This will look a bit odd, since the lists in the matrix are rows, but the column of constants is also input as a list and so looks like a row rather than a column. The result will be a single solution (even if there are infinitely many), reported as a list, or the statement that there is no solution. When there are infinitely many, the single solution reported is exactly that solution used in the proof of Theorem RCLS, where the free variables are all set to zero, and the dependent variables come along with values from the final column of the row-reduced matrix.
As an example, Archetype A is
To ask Mathematica for a solution, enter
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
and you will get back the single solution
![]() ![]() ![]() ![]() |
We will see later how to coax Mathematica into giving us infinitely many solutions for this system (Computation VFSS.MMA).
Contributed by Robert Beezer
Vectors in Mathematica are represented as lists, written and displayed
horizontally. For example, the vector
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
would be entered and named via the command
![]() ![]() ![]() ![]() ![]() |
Vector addition and scalar multiplication are then very natural. If u and v are two lists of equal length, then
|
will compute the correct vector and return it as a list. If u and v have different sizes, then Mathematica will complain about “objects of unequal length.”
Given a matrix zj∣1≤j≤n−r
Begin with the
We could extract entries from A
z1
z2
Notice how our
and receive the output in our preferred order. Give it a try yourself.
Suppose that A
b
The vectors
Begin with the system A
b
Be sure to include the “dot” right before the NullSpace[] command — it has the effect of creating a linear combination of the vectors in the null space, using scalars that are symbols reminiscent of the variables.
A concrete example should help here. Suppose we want
a solution set for the linear system with coefficient matrix
If we were to apply Theorem VFSLS, we would extract the components of
![]() ![]() ![]() ![]() |
Instead, we will use this augmented matrix in reduced row-echelon form only to
identify the free variables. In this example, we locate the non-pivot columns and see
that
As output we obtain the column vector (list),
Mathematica has a built-in routine that will do the Gram-Schmidt
procedure (Theorem GSP). The input is a set of vectors, which must
be linearly independent. This is written as a list, containing lists that
are the vectors. Let a be such a list of lists, containing the vectors
An example. Suppose our linearly independent set (check this!) is
The output of the GramSchmidt[] command will be the set,
Ugly, but true. At this stage, you might just as well be encouraged to think of the Gram-Schmidt procedure as a computational black box, linearly independent set in, orthogonal span-preserving set out.
To check that the output set is orthogonal, we can easily check the orthogonality of individual pairs of vectors. Suppose the output was set equal to b (say via b=GramSchmidt[a] ). We can extract the individual vectors of c as “parts” with syntax like c[[3]] , which would return the third vector in the set. When our vectors have only real number entries, we can accomplish an innerproduct with a “dot.” So, for example, you should discover that c[[3]].c[[5]] will return zero. Try it yourself with another pair of vectors.
Contributed by Robert Beezer
Suppose a is the name of a matrix stored in Mathematica. Then Transpose[a]
will create the transpose of a .
If
Some examples:
Understanding the difference between the last two examples will go a long way to explaining how some Mathematica constructs work.
If