Affan Adyatma Putra Hadi - 21051214078 - SI2022B

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

In[18]:=

#matrixtranspose
MatrixFormx = {{1, 2, 3}, {4, 5, 6}}
Out[18]=

#matrixtranspose
Out[19]//MatrixForm=

1 2 3
4 5 6

In[2]:= MatrixForm[Transpose[x]]
Out[2]//MatrixForm=
1 4
2 5
3 6

In[20]:=

#matrixsimetris
MatrixFormy = {{1, 2, 3}, {2, 4, 5}, {3, 5, 6}}
Out[20]=

#matrixsimetris
Out[21]//MatrixForm=
1 2 3
2 4 5
3 5 6

In[10]:=

MatrixForm [y] ⩵ MatrixForm[Transpose[y]]


Out[10]=

True

In[11]:=

SymmetricMatrixQ[y]
Out[11]=

True

In[22]:=

#matrixantiSimetris
MatrixFormz = {{0, 1, 2}, {- 1, 0, 3}, {- 2, - 3, 0}}
Out[22]=

#matrixantiSimetris
Out[23]//MatrixForm=
0 1 2
-1 0 3
-2 -3 0
2

In[14]:=

MatrixForm [z] ⩵ MatrixForm[- Transpose[z]]


Out[14]=

True

In[15]:=

AntisymmetricMatrixQ[z]
Out[15]=

True

In[24]:=

#matrixSkalar
MatrixFormv = {{3, 0, 0}, {0, 3, 0}, {0, 0, 3}}
Out[24]=

#matrixSkalar
Out[25]//MatrixForm=
3 0 0
0 3 0
0 0 3

You might also like