MateriasÁlgebra09-11

Matrices

Las matrices se describen como:

aija_{ij}

donde ii es la fija y jj es la columna.

Matrices cuadradas

Una matriz es cuadrada cuando i=ji=j

Operaciones

Producto por un escalar

Dada una matriz como:

A=(123041)A= \begin{pmatrix} 1&-2&3\\ 0&4&1 \end{pmatrix}

El producto por 3 se define de la siguiente manera:

3A=(313(2)33303431)3\cdot A= \begin{pmatrix} 3\cdot 1&3\cdot (-2)&3\cdot 3\\ 3\cdot 0&3\cdot 4&3\cdot 1 \end{pmatrix}
Suma y resta

La suma y resta son posibles únicamente cuando AA y BB tienen las mismas dimensiones. Se define de la siguiente manera:

A=(123041),B=(241101)A= \begin{pmatrix} 1&-2&3\\ 0&4&1 \end{pmatrix}, B= \begin{pmatrix} 2&4&-1\\ 1&0&1 \end{pmatrix} A+B=(A11+B11A12+B12A13+B13A21+B21A22+B22A23+B23A31+B31A32+B32A33+B33)A+B= \begin{pmatrix} A_{11}+B_{11}&A_{12}+B_{12}&A_{13}+B_{13}\\ A_{21}+B_{21}&A_{22}+B_{22}&A_{23}+B_{23}\\ A_{31}+B_{31}&A_{32}+B_{32}&A_{33}+B_{33} \end{pmatrix}
Matriz nula

Siendo A R2x2A\in \mathbb{R}^{2x2}, se define la matriz nula como:

A+(A)=(0000)A+(-A)=\begin{pmatrix} 0&0\\ 0&0 \end{pmatrix}
Producto entre matrices

El producto entre matrices es posible únicamente en el siguiente caso.

Tip

Dada una matriz AA con dimensiones 2x3 y una matriz BB con dimensiones 3x3, se compara asi: 2x[3=3]x3 Como 3 = 3, entonces es posible.

Se multiplica toda la primer fila de AA, por toda la primer columna de BB. El resultado va en C11C_{11}. Luego, se multiplica a toda la primer fila de AA, por toda la segunda columna de BB. El resultado va en C12C_{12}.

A=(A11A12A13A21A22A23),B=(B11B12B13B21B22B23B31B32B33),C=A+BA = \begin{pmatrix} A_{11} & A_{12} & A_{13} \\ A_{21} & A_{22} & A_{23} \end{pmatrix}, \quad B = \begin{pmatrix} B_{11} & B_{12} & B_{13} \\ B_{21} & B_{22} & B_{23} \\ B_{31} & B_{32} & B_{33} \end{pmatrix},\quad C=A+B C=(A11B11+A12B21+A13B31A11B12+A12B22+A13B32A11B13+A12B23+A13B33A21B11+A22B21+A23B31A21B12+A22B22+A23B32A21B13+A22B23+A23B33)C = \begin{pmatrix} A_{11}B_{11} + A_{12}B_{21} + A_{13}B_{31} & A_{11}B_{12} + A_{12}B_{22} + A_{13}B_{32} & A_{11}B_{13} + A_{12}B_{23} + A_{13}B_{33} \\ A_{21}B_{11} + A_{22}B_{21} + A_{23}B_{31} & A_{21}B_{12} + A_{22}B_{22} + A_{23}B_{32} & A_{21}B_{13} + A_{22}B_{23} + A_{23}B_{33} \end{pmatrix}
Matriz identidad

Siendo A R2x2A\in \mathbb{R}^{2x2}, se define la matriz identidad como:

AA1=(1001)A\cdot A^{-1}=\begin{pmatrix} 1&0\\ 0&1 \end{pmatrix}
Matrices espejo

Aquella matriz AA donde las diagonales principales funcionan como espejo, y los otros valores están espejados.

Aij=Aji;(ij)A_{ij} = A_{ji};(i\neq j)
Built with LogoFlowershow