definition
let M be
Matrix of
REAL;
existence
ex b1 being Matrix of REAL st
( len b1 = len M & width b1 = width M & ( for i, j being Nat st [i,j] in Indices M holds
b1 * (i,j) = |.(M * (i,j)).| ) )
uniqueness
for b1, b2 being Matrix of REAL st len b1 = len M & width b1 = width M & ( for i, j being Nat st [i,j] in Indices M holds
b1 * (i,j) = |.(M * (i,j)).| ) & len b2 = len M & width b2 = width M & ( for i, j being Nat st [i,j] in Indices M holds
b2 * (i,j) = |.(M * (i,j)).| ) holds
b1 = b2
end;
Lm1:
1 in REAL
by XREAL_0:def 1;
Lm2:
- 1 in REAL
by XREAL_0:def 1;
registration
let n be
Nat;
coherence
for b1 being Matrix of n,REAL st b1 = (n,n) --> 1 holds
b1 is Positive
by MATRIX_0:46, Lm1;
coherence
for b1 being Matrix of n,REAL st b1 = (n,n) --> (- 1) holds
b1 is Negative
coherence
for b1 being Matrix of n,REAL st b1 = (n,n) --> (- 1) holds
b1 is Nonpositive
by MATRIX_0:46, Lm2;
coherence
for b1 being Matrix of n,REAL st b1 = (n,n) --> 1 holds
b1 is Nonnegative
by MATRIX_0:46, Lm1;
end;
Lm3:
for n being Nat
for M1, M2 being Matrix of n,REAL holds
( len M1 = len M2 & width M1 = width M2 )