|
|
last edited 9 years ago by test1 |
1 2 3 4 5 6 | ||
Editor:
Time: 2007/11/18 18:24:53 GMT-8 |
||
Note: my matrix test |
changed: - Symbolic Matrices \begin{axiom} A:=matrix [[x,y],[z,w]] A+1 \end{axiom} From unknown Fri Jun 24 04:29:59 -0500 2005 From: unknown Date: Fri, 24 Jun 2005 04:29:59 -0500 Subject: test Message-ID: <20050624042959-0500@page.axiom-developer.org> \begin{axiom} A+2 \end{axiom} <hr> Use the Edit and Preview Functions Hey, why not learn to use the 'edit' function instead of entering such a large number of similar comments? Look at the top right hand side of the page. <hr> From unknown Fri Jun 24 13:46:29 -0500 2005 From: unknown Date: Fri, 24 Jun 2005 13:46:29 -0500 Subject: test Message-ID: <20050624134629-0500@page.axiom-developer.org> \begin{axiom} N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]] A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=A*v-L(1,1)*v solve(C(1,1)=0,v11) solve(C(2,1)=0,v12) V:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]] W:=(V(1,1)*V(2,2) - V(1,2)*V(2,1)) \end{axiom} From unknown Fri Jun 24 13:47:22 -0500 2005 From: unknown Date: Fri, 24 Jun 2005 13:47:22 -0500 Subject: test Message-ID: <20050624134722-0500@page.axiom-developer.org> \begin{axiom} N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]] A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=A*v-L(1,1)*v solve(C(1,1)=0,v11) solve(C(2,1)=0,v12) V:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]] V(1,1)*V(2,2) V(1,2)*V(2,1) \end{axiom} From unknown Fri Jun 24 13:54:11 -0500 2005 From: unknown Date: Fri, 24 Jun 2005 13:54:11 -0500 Subject: test Message-ID: <20050624135411-0500@page.axiom-developer.org> \begin{axiom} N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]] A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=A*v-L(1,1)*v solve(C(1,1)=0,v11) solve(C(2,1)=0,v12) T:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] a:=sqrt(T(1,1)^2+T(2,1)^2) b=sqrt(T(1,2)^2+T(2,2)^2) Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]] V(1,1)*V(2,2) V(1,2)*V(2,1) \end{axiom} From unknown Fri Jun 24 13:55:30 -0500 2005 From: unknown Date: Fri, 24 Jun 2005 13:55:30 -0500 Subject: test Message-ID: <20050624135530-0500@page.axiom-developer.org> \begin{axiom} N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]] A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=A*v-L(1,1)*v solve(C(1,1)=0,v11) solve(C(2,1)=0,v12) T:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] sqrt(T(1,1)^2+T(2,1)^2) sqrt(T(1,2)^2+T(2,2)^2) Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]] V(1,1)*V(2,2) V(1,2)*V(2,1) \end{axiom} From unknown Wed Oct 26 13:10:47 -0500 2005 From: unknown Date: Wed, 26 Oct 2005 13:10:47 -0500 Subject: Message-ID: <20051026131047-0500@wiki.axiom-developer.org> \begin{axiom} inverse([[1,2], [3,4]]) \end{axiom} From unknown Fri Nov 11 10:34:24 -0600 2005 From: unknown Date: Fri, 11 Nov 2005 10:34:24 -0600 Subject: Message-ID: <20051111103424-0600@www.axiom-developer.org> \begin{axiom} A:=matrix[[1,1,0],[1,0,0],[0,0,1],[0,1,1],[1,1,1]] \end{axiom} From unknown Fri Nov 11 10:36:09 -0600 2005 From: unknown Date: Fri, 11 Nov 2005 10:36:09 -0600 Subject: Message-ID: <20051111103609-0600@www.axiom-developer.org> \begin{axiom} v:=matrix[[2],[1],[0],[1],[2]] \end{axiom} From isssso Wed Oct 4 07:29:36 -0500 2006 From: isssso Date: Wed, 04 Oct 2006 07:29:36 -0500 Subject: msm_test:=matrix[[a,b,c],[b,d,e],[c,e,f]] Message-ID: <20061004072936-0500@wiki.axiom-developer.org> From isssso Wed Oct 4 07:56:29 -0500 2006 From: isssso Date: Wed, 04 Oct 2006 07:56:29 -0500 Subject: my matrix test Message-ID: <20061004075629-0500@wiki.axiom-developer.org> \begin{axiom} msm_test2:=matrix[[a,b,c,d,e],[b,f,g,h,i],[c,g,j,k,l],[d,h,k,m,n],[e,i,l,n,o]] det:=determinant(msm_test2) inv:=inverse(m) \end{axiom} From isssso Wed Oct 4 07:56:37 -0500 2006 From: isssso Date: Wed, 04 Oct 2006 07:56:37 -0500 Subject: my matrix test Message-ID: <20061004075637-0500@wiki.axiom-developer.org> \begin{axiom} msm_test2:=matrix[[a,b,c,d,e],[b,f,g,h,i],[c,g,j,k,l],[d,h,k,m,n],[e,i,l,n,o]] det:=determinant(msm_test2) inv:=inverse(msm_test2) \end{axiom}
Symbolic Matrices\begin{axiom} A:=matrix [[x,y],[z,w]] A+1 \end{axiom}
test --unknown, Fri, 24 Jun 2005 04:29:59 -0500 reply\begin{axiom} A+2 \end{axiom}
Use the Edit and Preview Functions
Hey, why not learn to use the
edit
function instead of entering such a large number of similar comments?Look at the top right hand side of the page.
\begin{axiom} N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]] A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=Av-L(1,1)v solve(C(1,1)=0,v11) solve(C(2,1)=0,v12) V:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]] W:=(V(1,1)V(2,2) - V(1,2)V(2,1)) \end{axiom} \begin{axiom} N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]] A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=Av-L(1,1)v solve(C(1,1)=0,v11) solve(C(2,1)=0,v12) V:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]] V(1,1)V(2,2) V(1,2)V(2,1) \end{axiom} \begin{axiom} N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]] A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=Av-L(1,1)v solve(C(1,1)=0,v11) solve(C(2,1)=0,v12) T:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] a:=sqrt(T(1,1)^2+T(2,1)^2) b=sqrt(T(1,2)^2+T(2,2)^2) Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]] V(1,1)V(2,2) V(1,2)V(2,1) \end{axiom} \begin{axiom} N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]] A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=Av-L(1,1)v solve(C(1,1)=0,v11) solve(C(2,1)=0,v12) T:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] sqrt(T(1,1)^2+T(2,1)^2) sqrt(T(1,2)^2+T(2,2)^2) Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]] V(1,1)V(2,2) V(1,2)V(2,1) \end{axiom} \begin{axiom} inverse([[1,2], [3,4]]) \end{axiom} \begin{axiom} A:=matrix[[1,1,0],[1,0,0],[0,0,1],[0,1,1],[1,1,1]] \end{axiom} \begin{axiom} v:=matrix[[2],[1],[0],[1],[2]] \end{axiom} \begin{axiom} msm_test2:=matrix[[a,b,c,d,e],[b,f,g,h,i],[c,g,j,k,l],[d,h,k,m,n],[e,i,l,n,o]] det:=determinant(msm_test2) inv:=inverse(m) \end{axiom} \begin{axiom} msm_test2:=matrix[[a,b,c,d,e],[b,f,g,h,i],[c,g,j,k,l],[d,h,k,m,n],[e,i,l,n,o]] det:=determinant(msm_test2) inv:=inverse(msm_test2) \end{axiom}
Some or all expressions may not have rendered properly, because Axiom returned the following error:Error: export AXIOM=/usr/local/lib/axiom/target/x86_64-unknown-linux; ALDORROOT=/usr/local/aldor/linux/1.1.0; export PATH=$ALDORROOT/bin:$PATH; export HOME=/var/zope2/var/LatexWiki; $AXIOM/bin/AXIOMsys < /var/zope2/var/LatexWiki/179881548081827695-25px.axmGCL (GNU Common Lisp) 2.6.8 CLtL1 Nov 9 2007 07:47:56 Source License: LGPL(gcl,gmp), GPL(unexec,bfd,xgcl) Binary License: GPL due to GPL'ed components: (READLINE BFD UNEXEC) Modifications of this banner must retain notice of a compatible license Dedicated to the memory of W. Schelter
Use (help) to get some basic information on how to use GCL. Temporary directory for compiler files set to /tmp/ FriCAS (AXIOM fork) Computer Algebra System Version: FriCAS 2007-10-02 Timestamp: Friday November 9, 2007 at 19:35:06 ----------------------------------------------------------------------------- Issue )copyright to view copyright notices. Issue )summary for a summary of useful system commands. Issue )quit to leave FriCAS and return to shell. -----------------------------------------------------------------------------
(1) -> (1) -> (1) -> (1) -> (1) -> A:=matrix [[x,y],[z,w]]
$$ \left[ \begin{array}{cc} x & y \ z & w \end{array} \right] \leqno(1) $$
Type: Matrix Polynomial Integer A+1
$$ \left[ \begin{array}{cc} {x+1} & y \ z & {w+1} \end{array} \right] \leqno(2) $$
Type: SquareMatrix(2,Polynomial Integer) (3) -> A+2
$$ \left[ \begin{array}{cc} {x+2} & y \ z & {w+2} \end{array} \right] \leqno(3) $$
Type: SquareMatrix(2,Polynomial Integer) (4) -> N:=matrix[[0],[0]]
$$ \left[ \begin{array}{c} 0 \ 0 \end{array} \right] \leqno(4) $$
Type: Matrix Integer L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]]
$$ \left[ {\left[ {{{\sqrt {-1}} \ {\sin \left( {x} \right)}}+{\cos \left( {x} \right)}} \right]}, \: {\left[ {-{{\sqrt {-1}} \ {\sin \left( {x} \right)}}+{\cos \left( {x} \right)}} \right]} \right] \leqno(5) $$
Type: List List Expression Integer A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]]
$$ \left[ \begin{array}{cc} {\cos \left( {x} \right)} & -{\sin \left( {x} \right)} \ {\sin \left( {x} \right)} & {\cos \left( {x} \right)} \end{array} \right] \leqno(6) $$
Type: Matrix Expression Integer v:=matrix[[v11],[v12]]
$$ \left[ \begin{array}{c} v11 \ v12 \end{array} \right] \leqno(7) $$
Type: Matrix Polynomial Integer C:=Av-L(1,1)v
$$ \left[ \begin{array}{c} {{\left( -{v11 \ {\sqrt {-1}}} -v12 \right)} \ {\sin \left( {x} \right)}} \ {{\left( -{v12 \ {\sqrt {-1}}}+v11 \right)} \ {\sin \left( {x} \right)}} \end{array} \right] \leqno(8) $$
Type: Matrix Expression Integer solve(C(1,1)=0,v11)
$$ \left[ {v11=-{v12 \over {\sqrt {-1}}}} \right] \leqno(9) $$
Type: List Equation Expression Integer solve(C(2,1)=0,v12)
$$ \left[ {v12={v11 \over {\sqrt {-1}}}} \right] \leqno(10) $$
Type: List Equation Expression Integer V:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]]
$$ \left[ \begin{array}{cc} -{\sqrt {-1}} & 1 \ 1 & {\sqrt {-1}} \end{array} \right] \leqno(11) $$
Type: Matrix AlgebraicNumber Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]]
$$ \left[ \begin{array}{cc} {\sqrt {-1}} & -1 \ -1 & -{\sqrt {-1}} \end{array} \right] \leqno(12) $$
Type: Matrix AlgebraicNumber W:=(V(1,1)V(2,2) - V(1,2)V(2,1))
$$ 0 \leqno(13) $$
Type: AlgebraicNumber (14) -> N:=matrix[[0],[0]]
$$ \left[ \begin{array}{c} 0 \ 0 \end{array} \right] \leqno(14) $$
Type: Matrix Integer L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]]
$$ \left[ {\left[ {{{\sqrt {-1}} \ {\sin \left( {x} \right)}}+{\cos \left( {x} \right)}} \right]}, \: {\left[ {-{{\sqrt {-1}} \ {\sin \left( {x} \right)}}+{\cos \left( {x} \right)}} \right]} \right] \leqno(15) $$
Type: List List Expression Integer A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]]
$$ \left[ \begin{array}{cc} {\cos \left( {x} \right)} & -{\sin \left( {x} \right)} \ {\sin \left( {x} \right)} & {\cos \left( {x} \right)} \end{array} \right] \leqno(16) $$
Type: Matrix Expression Integer v:=matrix[[v11],[v12]]
$$ \left[ \begin{array}{c} v11 \ v12 \end{array} \right] \leqno(17) $$
Type: Matrix Polynomial Integer C:=Av-L(1,1)v
$$ \left[ \begin{array}{c} {{\left( -{v11 \ {\sqrt {-1}}} -v12 \right)} \ {\sin \left( {x} \right)}} \ {{\left( -{v12 \ {\sqrt {-1}}}+v11 \right)} \ {\sin \left( {x} \right)}} \end{array} \right] \leqno(18) $$
Type: Matrix Expression Integer solve(C(1,1)=0,v11)
$$ \left[ {v11=-{v12 \over {\sqrt {-1}}}} \right] \leqno(19) $$
Type: List Equation Expression Integer solve(C(2,1)=0,v12)
$$ \left[ {v12={v11 \over {\sqrt {-1}}}} \right] \leqno(20) $$
Type: List Equation Expression Integer V:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]]
$$ \left[ \begin{array}{cc} -{\sqrt {-1}} & 1 \ 1 & {\sqrt {-1}} \end{array} \right] \leqno(21) $$
Type: Matrix AlgebraicNumber Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]]
$$ \left[ \begin{array}{cc} {\sqrt {-1}} & -1 \ -1 & -{\sqrt {-1}} \end{array} \right] \leqno(22) $$
Type: Matrix AlgebraicNumber V(1,1)*V(2,2)
$$ 1 \leqno(23) $$
Type: AlgebraicNumber V(1,2)*V(2,1)
$$ 1 \leqno(24) $$
Type: AlgebraicNumber (25) -> N:=matrix[[0],[0]]
$$ \left[ \begin{array}{c} 0 \ 0 \end{array} \right] \leqno(25) $$
Type: Matrix Integer L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]]
$$ \left[ {\left[ {{{\sqrt {-1}} \ {\sin \left( {x} \right)}}+{\cos \left( {x} \right)}} \right]}, \: {\left[ {-{{\sqrt {-1}} \ {\sin \left( {x} \right)}}+{\cos \left( {x} \right)}} \right]} \right] \leqno(26) $$
Type: List List Expression Integer A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]]
$$ \left[ \begin{array}{cc} {\cos \left( {x} \right)} & -{\sin \left( {x} \right)} \ {\sin \left( {x} \right)} & {\cos \left( {x} \right)} \end{array} \right] \leqno(27) $$
Type: Matrix Expression Integer v:=matrix[[v11],[v12]]
$$ \left[ \begin{array}{c} v11 \ v12 \end{array} \right] \leqno(28) $$
Type: Matrix Polynomial Integer C:=Av-L(1,1)v
$$ \left[ \begin{array}{c} {{\left( -{v11 \ {\sqrt {-1}}} -v12 \right)} \ {\sin \left( {x} \right)}} \ {{\left( -{v12 \ {\sqrt {-1}}}+v11 \right)} \ {\sin \left( {x} \right)}} \end{array} \right] \leqno(29) $$
Type: Matrix Expression Integer solve(C(1,1)=0,v11)
$$ \left[ {v11=-{v12 \over {\sqrt {-1}}}} \right] \leqno(30) $$
Type: List Equation Expression Integer solve(C(2,1)=0,v12)
$$ \left[ {v12={v11 \over {\sqrt {-1}}}} \right] \leqno(31) $$
Type: List Equation Expression Integer T:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]]
$$ \left[ \begin{array}{cc} -{\sqrt {-1}} & 1 \ 1 & {\sqrt {-1}} \end{array} \right] \leqno(32) $$
Type: Matrix AlgebraicNumber a:=sqrt(T(1,1)^2+T(2,1)^2)
$$ 0 \leqno(33) $$
Type: AlgebraicNumber b=sqrt(T(1,2)^2+T(2,2)^2)
$$ b=0 \leqno(34) $$
Type: Equation Polynomial AlgebraicNumber Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]]
$$ \left[ \begin{array}{cc} {\sqrt {-1}} & -1 \ -1 & -{\sqrt {-1}} \end{array} \right] \leqno(35) $$
Type: Matrix AlgebraicNumber V(1,1)*V(2,2)
$$ 1 \leqno(36) $$
Type: AlgebraicNumber V(1,2)*V(2,1)
$$ 1 \leqno(37) $$
Type: AlgebraicNumber (38) -> N:=matrix[[0],[0]]
$$ \left[ \begin{array}{c} 0 \ 0 \end{array} \right] \leqno(38) $$
Type: Matrix Integer L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*sin(x)+cos(x)]]
$$ \left[ {\left[ {{{\sqrt {-1}} \ {\sin \left( {x} \right)}}+{\cos \left( {x} \right)}} \right]}, \: {\left[ {-{{\sqrt {-1}} \ {\sin \left( {x} \right)}}+{\cos \left( {x} \right)}} \right]} \right] \leqno(39) $$
Type: List List Expression Integer A:=matrix[[cos(x),-sin(x)],[sin(x),cos(x)]]
$$ \left[ \begin{array}{cc} {\cos \left( {x} \right)} & -{\sin \left( {x} \right)} \ {\sin \left( {x} \right)} & {\cos \left( {x} \right)} \end{array} \right] \leqno(40) $$
Type: Matrix Expression Integer v:=matrix[[v11],[v12]]
$$ \left[ \begin{array}{c} v11 \ v12 \end{array} \right] \leqno(41) $$
Type: Matrix Polynomial Integer C:=Av-L(1,1)v
$$ \left[ \begin{array}{c} {{\left( -{v11 \ {\sqrt {-1}}} -v12 \right)} \ {\sin \left( {x} \right)}} \ {{\left( -{v12 \ {\sqrt {-1}}}+v11 \right)} \ {\sin \left( {x} \right)}} \end{array} \right] \leqno(42) $$
Type: Matrix Expression Integer solve(C(1,1)=0,v11)
$$ \left[ {v11=-{v12 \over {\sqrt {-1}}}} \right] \leqno(43) $$
Type: List Equation Expression Integer solve(C(2,1)=0,v12)
$$ \left[ {v12={v11 \over {\sqrt {-1}}}} \right] \leqno(44) $$
Type: List Equation Expression Integer T:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]]
$$ \left[ \begin{array}{cc} -{\sqrt {-1}} & 1 \ 1 & {\sqrt {-1}} \end{array} \right] \leqno(45) $$
Type: Matrix AlgebraicNumber sqrt(T(1,1)^2+T(2,1)^2)
$$ 0 \leqno(46) $$
Type: AlgebraicNumber sqrt(T(1,2)^2+T(2,2)^2)
$$ 0 \leqno(47) $$
Type: AlgebraicNumber Z:=matrix[[V(2,2),-V(1,2)],[-V(2,1),V(1,1)]]
$$ \left[ \begin{array}{cc} {\sqrt {-1}} & -1 \ -1 & -{\sqrt {-1}} \end{array} \right] \leqno(48) $$
Type: Matrix AlgebraicNumber V(1,1)*V(2,2)
$$ 1 \leqno(49) $$
Type: AlgebraicNumber V(1,2)*V(2,1)
$$ 1 \leqno(50) $$
Type: AlgebraicNumber (51) -> inverse([[1,2], [3,4]])
$$ \left[ \begin{array}{cc} -2 & 1 \ {3 \over 2} & -{1 \over 2} \end{array} \right] \leqno(51) $$
Type: Union(Matrix Fraction Integer,...) (52) -> A:=matrix[[1,1,0],[1,0,0],[0,0,1],[0,1,1],[1,1,1]]
$$ \left[ \begin{array}{ccc} 1 & 1 & 0 \ 1 & 0 & 0 \ 0 & 0 & 1 \ 0 & 1 & 1 \ 1 & 1 & 1 \end{array} \right] \leqno(52) $$
Type: Matrix Integer (53) -> v:=matrix[[2],[1],[0],[1],[2]]
$$ \left[ \begin{array}{c} 2 \ 1 \ 0 \ 1 \ 2 \end{array} \right] \leqno(53) $$
Type: Matrix Integer (54) -> msm_test2:=matrix[[a,b,c,d,e],[b,f,g,h,i],[c,g,j,k,l],[d,h,k,m,n],[e,i,l,n,o]]
$$ \left[ \begin{array}{ccccc} 0 & b & c & d & e \ b & f & g & h & i \ c & g & j & k & l \ d & h & k & m & n \ e & i & l & n & o \end{array} \right] \leqno(54) $$
Type: Matrix Polynomial AlgebraicNumber det:=determinant(msm_test2)
$$ {{\left( {{\left( -{{b \sp 2} \ j}+{2 \ b \ c \ g} -{{c \sp 2} \ f} \right)} \ m}+{{b \sp 2} \ {k \sp 2}}+{{\left( -{2 \ b \ c \ h} -{2 \ b \ d \ g}+{2 \ c \ d \ f} \right)} \ k}+{{\left( {2 \ b \ d \ h} -{{d \sp 2} \ f} \right)} \ j}+{{c \sp 2} \ {h \sp 2}} -{2 \ c \ d \ g \ h}+{{d \sp 2} \ {g \sp 2}} \right)} \ o}+{{\left( {{b \sp 2} \ j} -{2 \ b \ c \ g}+{{c \sp 2} \ f} \right)} \ {n \sp 2}}+{{\left( {{\left( -{2 \ {b \sp 2} \ k}+{2 \ b \ c \ h}+{2 \ b \ d \ g} -{2 \ c \ d \ f} \right)} \ l}+{{\left( {2 \ b \ c \ i}+{2 \ b \ e \ g} -{2 \ c \ e \ f} \right)} \ k}+{{\left( -{2 \ b \ d \ i} -{2 \ b \ e \ h}+{2 \ d \ e \ f} \right)} \ j}+{{\left( -{2 \ {c \sp 2} \ h}+{2 \ c \ d \ g} \right)} \ i}+{2 \ c \ e \ g \ h} -{2 \ d \ e \ {g \sp 2}} \right)} \ n}+{{\left( {{b \sp 2} \ {l \sp 2}}+{{\left( -{2 \ b \ c \ i} -{2 \ b \ e \ g}+{2 \ c \ e \ f} \right)} \ l}+{{\left( {2 \ b \ e \ i} -{{e \sp 2} \ f} \right)} \ j}+{{c \sp 2} \ {i \sp 2}} -{2 \ c \ e \ g \ i}+{{e \sp 2} \ {g \sp 2}} \right)} \ m}+{{\left( -{2 \ b \ d \ h}+{{d \sp 2} \ f} \right)} \ {l \sp 2}}+{{\left( {{\left( {2 \ b \ d \ i}+{2 \ b \ e \ h} -{2 \ d \ e \ f} \right)} \ k}+{{\left( {2 \ c \ d \ h} -{2 \ {d \sp 2} \ g} \right)} \ i} -{2 \ c \ e \ {h \sp 2}}+{2 \ d \ e \ g \ h} \right)} \ l}+{{\left( -{2 \ b \ e \ i}+{{e \sp 2} \ f} \right)} \ {k \sp 2}}+{{\left( -{2 \ c \ d \ {i \sp 2}}+{{\left( {2 \ c \ e \ h}+{2 \ d \ e \ g} \right)} \ i} -{2 \ {e \sp 2} \ g \ h} \right)} \ k}+{{\left( {{d \sp 2} \ {i \sp 2}} -{2 \ d \ e \ h \ i}+{{e \sp 2} \ {h \sp 2}} \right)} \ j} \leqno(55) $$
Type: Polynomial AlgebraicNumber inv:=inverse(m)
There are 4 exposed and 3 unexposed library operations named inverse having 1 argument(s) but none was determined to be applicable. Use HyperDoc Browse, or issue )display op inverse to learn more about the available operations. Perhaps package-calling the operation or using coercions on the arguments will allow you to apply the operation.
Cannot find a definition or applicable library operation named inverse with argument type(s) Variable m
Perhaps you should use "@" to indicate the required return type, or "$" to specify which version of the function you need. (56) -> msm_test2:=matrix[[a,b,c,d,e],[b,f,g,h,i],[c,g,j,k,l],[d,h,k,m,n],[e,i,l,n,o]]
$$ \left[ \begin{array}{ccccc} 0 & b & c & d & e \ b & f & g & h & i \ c & g & j & k & l \ d & h & k & m & n \ e & i & l & n & o \end{array} \right] \leqno(56) $$
Type: Matrix Polynomial AlgebraicNumber det:=determinant(msm_test2)
$$ {{\left( {{\left( -{{b \sp 2} \ j}+{2 \ b \ c \ g} -{{c \sp 2} \ f} \right)} \ m}+{{b \sp 2} \ {k \sp 2}}+{{\left( -{2 \ b \ c \ h} -{2 \ b \ d \ g}+{2 \ c \ d \ f} \right)} \ k}+{{\left( {2 \ b \ d \ h} -{{d \sp 2} \ f} \right)} \ j}+{{c \sp 2} \ {h \sp 2}} -{2 \ c \ d \ g \ h}+{{d \sp 2} \ {g \sp 2}} \right)} \ o}+{{\left( {{b \sp 2} \ j} -{2 \ b \ c \ g}+{{c \sp 2} \ f} \right)} \ {n \sp 2}}+{{\left( {{\left( -{2 \ {b \sp 2} \ k}+{2 \ b \ c \ h}+{2 \ b \ d \ g} -{2 \ c \ d \ f} \right)} \ l}+{{\left( {2 \ b \ c \ i}+{2 \ b \ e \ g} -{2 \ c \ e \ f} \right)} \ k}+{{\left( -{2 \ b \ d \ i} -{2 \ b \ e \ h}+{2 \ d \ e \ f} \right)} \ j}+{{\left( -{2 \ {c \sp 2} \ h}+{2 \ c \ d \ g} \right)} \ i}+{2 \ c \ e \ g \ h} -{2 \ d \ e \ {g \sp 2}} \right)} \ n}+{{\left( {{b \sp 2} \ {l \sp 2}}+{{\left( -{2 \ b \ c \ i} -{2 \ b \ e \ g}+{2 \ c \ e \ f} \right)} \ l}+{{\left( {2 \ b \ e \ i} -{{e \sp 2} \ f} \right)} \ j}+{{c \sp 2} \ {i \sp 2}} -{2 \ c \ e \ g \ i}+{{e \sp 2} \ {g \sp 2}} \right)} \ m}+{{\left( -{2 \ b \ d \ h}+{{d \sp 2} \ f} \right)} \ {l \sp 2}}+{{\left( {{\left( {2 \ b \ d \ i}+{2 \ b \ e \ h} -{2 \ d \ e \ f} \right)} \ k}+{{\left( {2 \ c \ d \ h} -{2 \ {d \sp 2} \ g} \right)} \ i} -{2 \ c \ e \ {h \sp 2}}+{2 \ d \ e \ g \ h} \right)} \ l}+{{\left( -{2 \ b \ e \ i}+{{e \sp 2} \ f} \right)} \ {k \sp 2}}+{{\left( -{2 \ c \ d \ {i \sp 2}}+{{\left( {2 \ c \ e \ h}+{2 \ d \ e \ g} \right)} \ i} -{2 \ {e \sp 2} \ g \ h} \right)} \ k}+{{\left( {{d \sp 2} \ {i \sp 2}} -{2 \ d \ e \ h \ i}+{{e \sp 2} \ {h \sp 2}} \right)} \ j} \leqno(57) $$
Type: Polynomial AlgebraicNumber inv:=inverse(msm_test2)
This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) \write18 enabled. entering extended mode (./3445083600087221138-18px.tex LaTeX2e <2003/12/01> Babel <v3.8d> and hyphenation patterns for american, french, german, ngerman, b ahasa, basque, bulgarian, catalan, croatian, czech, danish, dutch, esperanto, e stonian, finnish, greek, icelandic, irish, italian, latin, magyar, norsk, polis h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur kish, ukrainian, nohyphenation, loaded. (/usr/share/texmf-tetex/tex/latex/base/article.cls Document Class: article 2004/02/16 v1.4f Standard LaTeX document class (/usr/share/texmf-tetex/tex/latex/base/size10.clo)) (/usr/share/texmf-tetex/tex/latex/amsmath/amsmath.sty For additional information on amsmath, use the `?' option. (/usr/share/texmf-tetex/tex/latex/amsmath/amstext.sty (/usr/share/texmf-tetex/tex/latex/amsmath/amsgen.sty)) (/usr/share/texmf-tetex/tex/latex/amsmath/amsbsy.sty) (/usr/share/texmf-tetex/tex/latex/amsmath/amsopn.sty)) (/usr/share/texmf-tetex/tex/latex/amsfonts/amsfonts.sty) (/usr/share/texmf-tetex/tex/generic/xypic/xy.sty (/usr/share/texmf-tetex/tex/generic/xypic/xy.tex Bootstrap'ing: catcodes, docmode, (/usr/share/texmf-tetex/tex/generic/xypic/xyrecat.tex) (/usr/share/texmf-tetex/tex/generic/xypic/xyidioms.tex)Xy-pic version 3.7 <1999/02/16> Copyright (c) 1991-1998 by Kristoffer H. Rose <krisrose@ens-lyon.fr> Xy-pic is free software: see the User's Guide for details.
Loading kernel: messages; fonts; allocations: state, direction, utility macros; pictures: \xy, positions, objects, decorations; kernel objects: directionals, circles, text; options; algorithms: directions, edges, connections; Xy-pic loaded) (/usr/share/texmf-tetex/tex/generic/xypic/xyall.tex Xy-pic option: All features v.3.3 (/usr/share/texmf-tetex/tex/generic/xypic/xycurve.tex Xy-pic option: Curve and Spline extension v.3.7 curve, circles, loaded) (/usr/share/texmf-tetex/tex/generic/xypic/xyframe.tex Xy-pic option: Frame and Bracket extension v.3.7 loaded) (/usr/share/texmf-tetex/tex/generic/xypic/xycmtip.tex Xy-pic option: Computer Modern tip extension v.3.3 (/usr/share/texmf-tetex/tex/generic/xypic/xytips.tex Xy-pic option: More Tips extension v.3.3 loaded) loaded) (/usr/share/texmf-tetex/tex/generic/xypic/xyline.tex Xy-pic option: Line styles extension v.3.6 loaded) (/usr/share/texmf-tetex/tex/generic/xypic/xyrotate.tex Xy-pic option: Rotate and Scale extension v.3.3 loaded) (/usr/share/texmf-tetex/tex/generic/xypic/xycolor.tex Xy-pic option: Colour extension v.3.3 loaded) (/usr/share/texmf-tetex/tex/generic/xypic/xymatrix.tex Xy-pic option: Matrix feature v.3.4 loaded) (/usr/share/texmf-tetex/tex/generic/xypic/xyarrow.tex Xy-pic option: Arrow and Path feature v.3.5 path, \ar, loaded) (/usr/share/texmf-tetex/tex/generic/xypic/xygraph.tex Xy-pic option: Graph feature v.3.7 loaded) loaded)) (./3445083600087221138-18px.aux)
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.9 \begin{axiom}
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.12 \end{axiom}
[1]
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.14 \begin{axiom}
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.16 \end{axiom}
[2]
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.18 \begin{axiom}
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.29 \end{axiom}
Overfull \hbox (71.4732pt too wide) in paragraph at lines 19--30 []\OT1/cmr/m/n/10 N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*si n(x)+cos(x)]] A:=matrix[[cos(x),-
Overfull \hbox (14.00098pt too wide) in paragraph at lines 19--30 \OT1/cmr/m/n/10 sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=Av-L(1,1)v solve(C(1,1)=0,v11)
Overfull \hbox (4.4453pt too wide) in paragraph at lines 19--30 \OT1/cmr/m/n/10 solve(C(2,1)=0,v12) V:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] Z :=matrix[[V(2,2),- [3]
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.31 \begin{axiom}
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.43 \end{axiom}
Overfull \hbox (71.4732pt too wide) in paragraph at lines 32--44 []\OT1/cmr/m/n/10 N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*si n(x)+cos(x)]] A:=matrix[[cos(x),-
Overfull \hbox (14.00098pt too wide) in paragraph at lines 32--44 \OT1/cmr/m/n/10 sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=Av-L(1,1)v solve(C(1,1)=0,v11)
Overfull \hbox (4.4453pt too wide) in paragraph at lines 32--44 \OT1/cmr/m/n/10 solve(C(2,1)=0,v12) V:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] Z :=matrix[[V(2,2),- [4]
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.45 \begin{axiom}
Missing $ inserted. <inserted text> $ l.54 a:=sqrt(T(1,1)^ 2+T(2,1)^2) (/usr/share/texmf-tetex/tex/latex/amsfonts/umsa.fd) (/usr/share/texmf-tetex/tex/latex/amsfonts/umsb.fd)
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.59 \end{axiom}
Missing $ inserted. <inserted text> $ l.59 \end{axiom}
Overfull \hbox (71.4732pt too wide) in paragraph at lines 46--60 []\OT1/cmr/m/n/10 N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*si n(x)+cos(x)]] A:=matrix[[cos(x),-
Overfull \hbox (14.00098pt too wide) in paragraph at lines 46--60 \OT1/cmr/m/n/10 sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=Av-L(1,1)v solve(C(1,1)=0,v11)
Overfull \hbox (69.02751pt too wide) in paragraph at lines 46--60 \OML/cmm/m/it/10 T\OT1/cmr/m/n/10 (2\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 1)[])\OM L/cmm/m/it/10 b \OT1/cmr/m/n/10 = \OML/cmm/m/it/10 sqrt\OT1/cmr/m/n/10 (\OML/cm m/m/it/10 T\OT1/cmr/m/n/10 (1\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 2)[] + \OML/cmm /m/it/10 T\OT1/cmr/m/n/10 (2\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 2)[])\OML/cmm/m/ it/10 Z \OT1/cmr/m/n/10 := \OML/cmm/m/it/10 matrix\OT1/cmr/m/n/10 [[\OML/cmm/m/ it/10 V\OT1/cmr/m/n/10 (2\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 2)\OML/cmm/m/it/10 ; \OMS/cmsy/m/n/10 ^^@\OML/cmm/m/it/10 V\OT1/cmr/m/n/10 (1\OML/cmm/m/it/10 ; \O T1/cmr/m/n/10 2)]\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 [\OMS/cmsy/m/n/10 ^^@\OML/c mm/m/it/10 V\OT1/cmr/m/n/10 (2\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 1)\OML/cmm/m/i t/10 ; V\OT1/cmr/m/n/10 (1\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 1)]]\OML/cmm/m/it/ 10 V\OT1/cmr/m/n/10 (1\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 1) \OMS/cmsy/m/n/10 ^^ C [5]
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.61 \begin{axiom}
Missing $ inserted. <inserted text> $ l.70 sqrt(T(1,1)^ 2+T(2,1)^2)
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.75 \end{axiom}
Missing $ inserted. <inserted text> $ l.75 \end{axiom}
Overfull \hbox (71.4732pt too wide) in paragraph at lines 62--76 []\OT1/cmr/m/n/10 N:=matrix[[0],[0]] L:=[[sqrt(-1)*sin(x)+cos(x)],[-sqrt(-1)*si n(x)+cos(x)]] A:=matrix[[cos(x),-
Overfull \hbox (14.00098pt too wide) in paragraph at lines 62--76 \OT1/cmr/m/n/10 sin(x)],[sin(x),cos(x)]] v:=matrix[[v11],[v12]] C:=Av-L(1,1)v solve(C(1,1)=0,v11)
Overfull \hbox (80.89098pt too wide) in paragraph at lines 62--76 \OT1/cmr/m/n/10 solve(C(2,1)=0,v12) T:=matrix[[1/sqrt(-1),1],[1,-1/sqrt(-1)]] s qrt(T(1,1)$[] + \OML/cmm/m/it/10 T\OT1/cmr/m/n/10 (2\OML/cmm/m/it/10 ; \OT1/cmr /m/n/10 1)[])\OML/cmm/m/it/10 sqrt\OT1/cmr/m/n/10 (\OML/cmm/m/it/10 T\OT1/cmr/m /n/10 (1\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 2)[] +
Overfull \hbox (15.60971pt too wide) in paragraph at lines 62--76 \OML/cmm/m/it/10 T\OT1/cmr/m/n/10 (2\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 2)[])\OM L/cmm/m/it/10 Z \OT1/cmr/m/n/10 := \OML/cmm/m/it/10 matrix\OT1/cmr/m/n/10 [[\OM L/cmm/m/it/10 V\OT1/cmr/m/n/10 (2\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 2)\OML/cmm/ m/it/10 ; \OMS/cmsy/m/n/10 ^^@\OML/cmm/m/it/10 V\OT1/cmr/m/n/10 (1\OML/cmm/m/it /10 ; \OT1/cmr/m/n/10 2)]\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 [\OMS/cmsy/m/n/10 ^ ^@\OML/cmm/m/it/10 V\OT1/cmr/m/n/10 (2\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 1)\OML /cmm/m/it/10 ; V\OT1/cmr/m/n/10 (1\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 1)]]\OML/c mm/m/it/10 V\OT1/cmr/m/n/10 (1\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 1) \OMS/cmsy/m /n/10 ^^C \OML/cmm/m/it/10 V\OT1/cmr/m/n/10 (2\OML/cmm/m/it/10 ; \OT1/cmr/m/n/1 0 2)\OML/cmm/m/it/10 V\OT1/cmr/m/n/10 (1\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 2) \ OMS/cmsy/m/n/10 ^^C [6]
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.77 \begin{axiom}
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.79 \end{axiom}
[7]
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.81 \begin{axiom}
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.83 \end{axiom}
[8]
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.85 \begin{axiom}
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.87 \end{axiom}
[9]
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.89 \begin{axiom}
Missing $ inserted. <inserted text> $ l.90 msm_ test2:=matrix[[a,b,c,d,e],[b,f,g,h,i],[c,g,j,k,l],[d,h,k,m,n],[e,i,...
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.93 \end{axiom}
Missing $ inserted. <inserted text> $ l.93 \end{axiom}
Overfull \hbox (50.13315pt too wide) in paragraph at lines 90--94 []\OT1/cmr/m/n/10 msm$[]\OML/cmm/m/it/10 est\OT1/cmr/m/n/10 2 := \OML/cmm/m/it/ 10 matrix\OT1/cmr/m/n/10 [[\OML/cmm/m/it/10 a; b; c; d; e\OT1/cmr/m/n/10 ]\OML/ cmm/m/it/10 ; \OT1/cmr/m/n/10 [\OML/cmm/m/it/10 b; f; g; h; i\OT1/cmr/m/n/10 ]\ OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 [\OML/cmm/m/it/10 c; g; j; k; l\OT1/cmr/m/n/1 0 ]\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 [\OML/cmm/m/it/10 d; h; k; m; n\OT1/cmr/m /n/10 ]\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 [\OML/cmm/m/it/10 e; i; l; n; o\OT1/c mr/m/n/10 ]]\OML/cmm/m/it/10 det \OT1/cmr/m/n/10 := [10]
LaTeX Error: Environment axiom undefined.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.95 \begin{axiom}
Missing $ inserted. <inserted text> $ l.96 msm_ test2:=matrix[[a,b,c,d,e],[b,f,g,h,i],[c,g,j,k,l],[d,h,k,m,n],[e,i,...
LaTeX Error: \begin{document} ended by \end{axiom}.
See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ...
l.99 \end{axiom}
Missing $ inserted. <inserted text> $ l.99 \end{axiom}
Overfull \hbox (50.13315pt too wide) in paragraph at lines 96--100 []\OT1/cmr/m/n/10 msm$[]\OML/cmm/m/it/10 est\OT1/cmr/m/n/10 2 := \OML/cmm/m/it/ 10 matrix\OT1/cmr/m/n/10 [[\OML/cmm/m/it/10 a; b; c; d; e\OT1/cmr/m/n/10 ]\OML/ cmm/m/it/10 ; \OT1/cmr/m/n/10 [\OML/cmm/m/it/10 b; f; g; h; i\OT1/cmr/m/n/10 ]\ OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 [\OML/cmm/m/it/10 c; g; j; k; l\OT1/cmr/m/n/1 0 ]\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 [\OML/cmm/m/it/10 d; h; k; m; n\OT1/cmr/m /n/10 ]\OML/cmm/m/it/10 ; \OT1/cmr/m/n/10 [\OML/cmm/m/it/10 e; i; l; n; o\OT1/c mr/m/n/10 ]]\OML/cmm/m/it/10 det \OT1/cmr/m/n/10 := [11] [12] [13] [14] [15] [16] [17] [18] [19] [20]
Package amsmath Warning: Foreign command \over; (amsmath) \frac or \genfrac should be used instead (amsmath) on input line 223.
[21] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] [37] [38] [39] [40] [41] [42] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66] Overfull \hbox (2275.54045pt too wide) detected at line 778 [] \OT1/cmr/m/n/10 + [] + [] + [] + [] + [] + [] + [] + [] [67] [68] Overfull \hbox (2275.54045pt too wide) detected at line 846 [] \OT1/cmr/m/n/10 + [] + [] + [] + [] + [] + [] + [] + [] [69] (./3445083600087221138-18px.aux) ) (see the transcript file for additional information) Output written on 3445083600087221138-18px.dvi (69 pages, 22312 bytes). Transcript written on 3445083600087221138-18px.log.