Difference between revisions of "Matrices"

From Robotics
Jump to: navigation, search
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
{{Navigation|before=[[Cross product]]|overview=[[Matrices]]|next=[[Multiplication with a scalar]]}}
 +
 
This article deals with some fundamental matrix features and the basic arithmetic operations.
 
This article deals with some fundamental matrix features and the basic arithmetic operations.
  
 
Matrices can have arbitrary dimensions. A matrix with m rows and n colums is denoted as an m-by-n matrix. In the context of robotics mainly 3-by-3 or 4-by-4 matrices are used. An example of a 3-by-3 matrix is:
 
Matrices can have arbitrary dimensions. A matrix with m rows and n colums is denoted as an m-by-n matrix. In the context of robotics mainly 3-by-3 or 4-by-4 matrices are used. An example of a 3-by-3 matrix is:
 
:<math>
 
:<math>
\mathbf{M}=\left[
+
\mathbf{A}=\left[
 
\begin{array}{ccc}
 
\begin{array}{ccc}
 
a_{11} & a_{12} & a_{13}\\
 
a_{11} & a_{12} & a_{13}\\
Line 10: Line 12:
 
\end{array}\right]
 
\end{array}\right]
 
</math>
 
</math>
Individual colums and rows are often denoted as column vectors and row vectors. For the example matrix the column vectors are
+
Individual colums and rows are often denoted as column vectors and row vectors. For the example matrix <math>\mathbf{A}</math> the column vectors are
 
:<math>
 
:<math>
 
\left[
 
\left[
Line 48: Line 50:
 
In the following subarticles some basic arithmetic operations for matrices are described.
 
In the following subarticles some basic arithmetic operations for matrices are described.
  
 +
# [[Multiplication with a scalar]]
 
# [[The transpose of a matrix]]
 
# [[The transpose of a matrix]]
 
# [[Addition of matrices]]
 
# [[Addition of matrices]]
# [[Multiplication with a scalar]]
 
# [[Multiplication with a vector]]
 
 
# [[Multiplication of matrices]]
 
# [[Multiplication of matrices]]
 +
# [[Determinant of a matrix]]
 +
# [[Minors and cofactors]]
 +
 +
[[Category:Article]]
 +
[[Category:Matrices]]

Latest revision as of 14:35, 23 May 2014

← Back: Cross product Overview: Matrices Next: Multiplication with a scalar

This article deals with some fundamental matrix features and the basic arithmetic operations.

Matrices can have arbitrary dimensions. A matrix with m rows and n colums is denoted as an m-by-n matrix. In the context of robotics mainly 3-by-3 or 4-by-4 matrices are used. An example of a 3-by-3 matrix is:


\mathbf{A}=\left[
\begin{array}{ccc}
a_{11} & a_{12} & a_{13}\\
a_{21} & a_{22} & a_{23}\\
a_{31} & a_{32} & a_{33}
\end{array}\right]

Individual colums and rows are often denoted as column vectors and row vectors. For the example matrix \mathbf{A} the column vectors are


\left[
\begin{array}{c}
a_{11}\\
a_{21}\\
a_{31}
\end{array}\right], 
\left[
\begin{array}{c}
a_{12}\\
a_{22}\\
a_{32}
\end{array}\right],\text{and }
\left[
\begin{array}{c}
a_{13}\\
a_{23}\\
a_{33}
\end{array}\right]

and the row vectors are


\left[
\begin{array}{ccc}
a_{11} & a_{12} & a_{13}
\end{array}\right], 
\left[
\begin{array}{ccc}
a_{21} & a_{22} & a_{23}
\end{array}\right],\text{and }
\left[
\begin{array}{ccc}
a_{31} & a_{32} & a_{33}
\end{array}\right]

In the following subarticles some basic arithmetic operations for matrices are described.

  1. Multiplication with a scalar
  2. The transpose of a matrix
  3. Addition of matrices
  4. Multiplication of matrices
  5. Determinant of a matrix
  6. Minors and cofactors