Calculadora de matrices

🌐 Español
A (3×3)
Filas: 3
Columnas: 3
B (3×3)
Filas: 3
Columnas: 3
Supports: fractions (1/2), decimals (0.5), constants (pi, e). Empty cells are treated as 0.

Resultados del cálculo

1. ¿Qué es la traspuesta de una matriz?

The transpose of a matrix \(A\), denoted \(A^T\), is formed by flipping \(A\) over its main diagonal. Rows become columns and columns become rows.

$$A=[a_{ij}]\quad\Rightarrow\quad A^T=[a_{ji}]$$

If \(A\) is an \(m\times n\) matrix, then \(A^T\) is an \(n\times m\) matrix.

2. Fórmula y reglas rápidas

  • Definition: \( (A^T)_{ij} = A_{ji} \).
  • Dimension rule: if \(A\) is \(m\times n\), then \(A^T\) is \(n\times m\).
  • Transpose of a product: \( (AB)^T = B^T A^T \).
  • Transpose of a transpose: \( (A^T)^T = A \).
  • Transpose of a scalar multiple: \( (cA)^T = c A^T \).
  • Symmetric matrices: \( A = A^T \) (only in this case the transpose equals the original matrix).

3. Ejemplos resueltos

Example 1 — 2×2 matrix

$$A=\begin{bmatrix}1 & 4 \\ 2 & 5\end{bmatrix}$$

Traspuesta:

$$A^T=\begin{bmatrix}1 & 2 \\ 4 & 5\end{bmatrix}$$

Example 2 — 3×2 matrix

$$B=\begin{bmatrix}3 & -1 \\ 0 & 2 \\ 5 & 4\end{bmatrix}$$

Traspuesta:

$$B^T=\begin{bmatrix}3 & 0 & 5 \\ -1 & 2 & 4\end{bmatrix}$$

4. Errores comunes

  • Confundir la traspuesta con la inversa: Transpose flips indices; inverse undoes multiplication.
  • No cambiar las dimensiones: Remember \(m\times n\rightarrow n\times m\).
  • Olvidar los signos: Negative entries keep their sign when transposed.
  • Suponer que todas las matrices son simétricas: Only symmetric matrices satisfy \(A=A^T\).

5. Problemas de práctica

Prueba los siguientes ejercicios. Haz clic en "Mostrar respuesta" para ver la traspuesta.

Ejercicio 1

$$\begin{bmatrix}1 & 3 \\ 4 & 2\end{bmatrix}$$
Mostrar respuesta
$$\begin{bmatrix}1 & 4 \\ 3 & 2\end{bmatrix}$$

Ejercicio 2

$$\begin{bmatrix}0 & -2 & 5\end{bmatrix}$$
Mostrar respuesta
$$\begin{bmatrix}0 \\ -2 \\ 5\end{bmatrix}$$

Ejercicio 3

$$\begin{bmatrix}7 \\ -1 \\ 4\end{bmatrix}$$
Mostrar respuesta
$$\begin{bmatrix}7 & -1 & 4\end{bmatrix}$$

Ejercicio 4

$$\begin{bmatrix}2 & 0 \\ -3 & 5 \\ 4 & 1\end{bmatrix}$$
Mostrar respuesta
$$\begin{bmatrix}2 & -3 & 4 \\ 0 & 5 & 1\end{bmatrix}$$

Copyright Notice: This article is original content from the Matrix Calculator website. Please credit the source when sharing or reproducing it. For more matrix computation tools, visit matrixcalcu.com.

Aprende multiplicación de matrices más fácilmente en solo 2 minutes with this juego gratuito.

Juego de multiplicación de matrices