Read Chapter 1 and Sections 1 & 2 of the Appendix.
The following problem is to be handed in (for a grade) on Monday, September 13. There may be additional problems assigned in a later class.
Let n and m be positive integers. Let An be the
matrix with 1's on and above the diagonal,
and zeroes below the diagonal. Thus the i,j entry of
An is 1 if
and if j<i.
For example,
.
Compute (An)m explicitly. (For example, you may give a
formula or expression for the i,j entry for each i,j
with
.) Prove your answer is correct.
For example,
.If we set B=A32, we can express this by saying
bij=0 if i>j and bij=j-i+1 if
.
Note: I would like you to do two things.
For part (1), the ``guessing'', here is what I would really like you to do. Use the computer algebra program MAPLE to compute Anm for a few n,m, and try to see the pattern.
To use MAPLE, you will want to do something like the
following. At the > prompt, enter
A := matrix([[1,1,1],[0,1,1],[0,0,1]]);
evalm(A^2);
This computes A32. Some important things to notice:
First, every command line ends with a ;
and second, to set one thing equal to another, use the
command := (notice the :).
Experiment with some values of m,n, and print out a copy
of the MAPLE worksheet.
One other MAPLE command you may want to use:
binomial(a,b); gives you the binomial
coefficient a choose b.