Difference between revisions of "Manuals/calci/SYMMETRIC"

From ZCubes Wiki
Jump to navigation Jump to search
 
(4 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
==Description==
 
==Description==
 
*This function returns the symmetric matrix of order 3.
 
*This function returns the symmetric matrix of order 3.
*A symmetric matrix is a square matrix that satisfies <math>A^(T)=A</math>,where <math>A^(T)</math> denotes the transpose.  
+
*A symmetric matrix is a square matrix that satisfies <math>A^T=A</math>,where <math>A^T</math> denotes the transpose.  
 
*i.e., A square matrix which is equal to its transpose is called symmetric matrix.  
 
*i.e., A square matrix which is equal to its transpose is called symmetric matrix.  
*So <math>a_(ij)=a_(ji)</math>.  
+
*So <math>a_{ij}=a_{ji}</math>.  
*This also implies <math>A^(-1)A^(T)=I</math>,  where I is the identity matrix.
+
*This also implies <math>A^{-1}A^T=I</math>,  where I is the identity matrix.
 
*Because equal matrices have equal dimensions, only square matrices can be symmetric.  
 
*Because equal matrices have equal dimensions, only square matrices can be symmetric.  
 
*An example for the symmetric matrix is   
 
*An example for the symmetric matrix is   
Line 14: Line 14:
 
-5 & -11 & -75 \\
 
-5 & -11 & -75 \\
 
-93 & -75 & -7 \\  
 
-93 & -75 & -7 \\  
\end{pmatrix}  
+
\end{pmatrix} </math>
 
*The properties of symmetric matrices are:
 
*The properties of symmetric matrices are:
 
*1.Every square diagonal matrix is symmetric, since all off-diagonal entries are zero.  
 
*1.Every square diagonal matrix is symmetric, since all off-diagonal entries are zero.  
Line 20: Line 20:
 
*3.Hermitian matrices are a useful generalization of symmetric matrices for complex matrices.
 
*3.Hermitian matrices are a useful generalization of symmetric matrices for complex matrices.
 
*In Calci, MATRIX("symmetric") gives the symmetric matrix with the integer numbers.  
 
*In Calci, MATRIX("symmetric") gives the symmetric matrix with the integer numbers.  
*The other way to give the syntax is MATRIX("symmetric:integer).The syntax is  to get the positive numbers symmetric matrix  is MATRIX("symmetric:positive integer").  
+
*The other way to give the syntax is MATRIX("symmetric:integer).
 +
*The syntax is  to get the positive numbers symmetric matrix  is MATRIX("symmetric:positive integer").  
 
*To get a negative numbers symmetric matrix is MATRIX("symmetric:negative integer").  
 
*To get a negative numbers symmetric matrix is MATRIX("symmetric:negative integer").  
 
*Also to get the symmetric matrix with the elements 0 and 1(boolean numbers) users give syntax as MATRIX("symmetric:boolean").  
 
*Also to get the symmetric matrix with the elements 0 and 1(boolean numbers) users give syntax as MATRIX("symmetric:boolean").  
 
*So using Calci users can get a different types of symmetric matrices.
 
*So using Calci users can get a different types of symmetric matrices.
 +
 +
==Examples==
 +
*1.MATRIX("symmetric") =84
 +
*2.MATRIX("symmetric",3)
 +
{| class="wikitable"
 +
|-
 +
| -10 || 88 || 92
 +
|-
 +
| 88 || 14 || -21
 +
|-
 +
| 92 || -21 || -29
 +
|}
 +
*3.MATRIX("symmetric:boolean",4)
 +
{| class="wikitable"
 +
|-
 +
| 1 || 0 || 1 || 1
 +
|-
 +
| 0 || 0 || 1 || 0
 +
|-
 +
| 1 || 1 || 0 || 1
 +
|-
 +
| 1 || 0 || 1 || 1
 +
|}
 +
*4.MATRIX("symmetric:integer",5)
 +
{| class="wikitable"
 +
|-
 +
| -76 || -15 || 7 || -100 || -28
 +
|-
 +
| -15 || -32 || -98 || -100 || -87
 +
|-
 +
| 7 || -98 || 47 || 52 || -72
 +
|-
 +
| -100 || -100 || 52 || -63 || 8
 +
|-
 +
| -28 || -87 || -72 || 8 || 76
 +
|}
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|JCT3EaVLUeo|280|center|Symmetric Matrices}}
 +
 +
==See Also==
 +
*[[Manuals/calci/PERSYMMETRIC| PERSYMMETRIC]]
 +
*[[Manuals/calci/PASCAL| PASCAL]]
 +
*[[Manuals/calci/TRIANGULAR| TRIANGULAR]]
 +
 +
==References==
 +
*[http://en.wikipedia.org/wiki/Symmetric_matrix Symmetric Matrix]

Latest revision as of 02:41, 26 October 2015

MATRIX("SYMMETRIC",order)


  • is the size of the Symmetric matrix.

Description

  • This function returns the symmetric matrix of order 3.
  • A symmetric matrix is a square matrix that satisfies ,where denotes the transpose.
  • i.e., A square matrix which is equal to its transpose is called symmetric matrix.
  • So .
  • This also implies , where I is the identity matrix.
  • Because equal matrices have equal dimensions, only square matrices can be symmetric.
  • An example for the symmetric matrix is

  • The properties of symmetric matrices are:
  • 1.Every square diagonal matrix is symmetric, since all off-diagonal entries are zero.
  • 2.Similarly, each diagonal element of a skew-symmetric matrix must be zero, since each is its own negative.
  • 3.Hermitian matrices are a useful generalization of symmetric matrices for complex matrices.
  • In Calci, MATRIX("symmetric") gives the symmetric matrix with the integer numbers.
  • The other way to give the syntax is MATRIX("symmetric:integer).
  • The syntax is to get the positive numbers symmetric matrix is MATRIX("symmetric:positive integer").
  • To get a negative numbers symmetric matrix is MATRIX("symmetric:negative integer").
  • Also to get the symmetric matrix with the elements 0 and 1(boolean numbers) users give syntax as MATRIX("symmetric:boolean").
  • So using Calci users can get a different types of symmetric matrices.

Examples

  • 1.MATRIX("symmetric") =84
  • 2.MATRIX("symmetric",3)
-10 88 92
88 14 -21
92 -21 -29
  • 3.MATRIX("symmetric:boolean",4)
1 0 1 1
0 0 1 0
1 1 0 1
1 0 1 1
  • 4.MATRIX("symmetric:integer",5)
-76 -15 7 -100 -28
-15 -32 -98 -100 -87
7 -98 47 52 -72
-100 -100 52 -63 8
-28 -87 -72 8 76

Related Videos

Symmetric Matrices

See Also

References