X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=mjo-linear_algebra.tex;h=c57e9b9534309d70d760540ba464b94511a1f085;hb=26f80f0b525b70b3f33eb8d4a5a6c94da7a20c9d;hp=c1aa9f57650112330673f93985d6e1cd655c2594;hpb=0764c4b643f444e4e46c6b3481ba32962bee5bfe;p=mjotex.git diff --git a/mjo-linear_algebra.tex b/mjo-linear_algebra.tex index c1aa9f5..c57e9b9 100644 --- a/mjo-linear_algebra.tex +++ b/mjo-linear_algebra.tex @@ -51,6 +51,11 @@ % The trace of an operator. \newcommand*{\trace}[1]{ \operatorname{trace}\of{{#1}} } +% The diagonal matrix whose only nonzero entries are on the diagonal +% and are given by our argument. The argument should therefore be a +% vector or tuple of entries, by convention going from the top-left to +% the bottom-right of the matrix. +\newcommand*{\diag}[1]{\operatorname{diag}\of{{#1}}} % The "rank" of its argument, which is context-dependent. It can mean % any or all of, @@ -71,6 +76,19 @@ % The orthogonal projection of its second argument onto the first. \newcommand*{\proj}[2] { \operatorname{proj}\of{#1, #2} } +% The set of all eigenvalues of its argument, which should be either a +% matrix or a linear operator. The sigma notation was chosen instead +% of lambda so that lambda can be reserved to denote the ordered tuple +% (largest to smallest) of eigenvalues. +\newcommand*{\spectrum}[1]{\sigma\of{{#1}}} +\ifdefined\newglossaryentry + \newglossaryentry{spectrum}{ + name={\ensuremath{\spectrum{L}}}, + description={the set of all eigenvalues of $L$}, + sort=s + } +\fi + % The ``Automorphism group of'' operator. \newcommand*{\Aut}[1]{ \operatorname{Aut}\of{{#1}} }