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

Calculadora de matriz triangular superior con pasos

Convierte matrices a forma triangular superior con pasos detallados.

1. ¿Qué es una matriz triangular superior?

An upper-triangular matrix is a special type of square matrix where all elements below the main diagonal are equal to zero. If a matrix \( A = [a_{ij}] \), then it is upper-triangular when:

$$ a_{ij} = 0 \quad \text{for all } i > j $$

Una forma general de una matriz triangular superior es:

$$ U = \begin{bmatrix} u_{11} & u_{12} & \cdots & u_{1n} \\ 0 & u_{22} & \cdots & u_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ 0 & 0 & \cdots & u_{nn} \end{bmatrix} $$

Any square matrix can be converted into this form using Gaussian elimination. Our Upper-Triangular Matrix Calculator automates the entire process.

2. Cómo convertir una matriz en forma triangular superior

La transformación utiliza la eliminación gaussiana y sigue estos pasos:

Paso 1: seleccionar el pivote

Choose the first non-zero element in the column as the pivot. If the pivot is zero, swap it with a row below that contains a non-zero element.

Paso 2: eliminar los elementos debajo del pivote

Usa operaciones por filas:

$$ R_i := R_i - k R_j $$ $$ k = \frac{a_{ij}}{a_{jj}} $$

Paso 3: repetir para las columnas restantes

Continue eliminating values below each pivot until all elements below the main diagonal are zero.

3. Ejemplos resueltos

Ejemplo 1

Convierte la siguiente matriz en una matriz triangular superior:

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

Elimina los elementos debajo del primer pivote:

$$ R_2 := R_2 - 2R_1 = [0,\, 3,\, 4] $$ $$ R_3 := R_3 - 3R_1 = [0,\, 0,\, 4] $$

La forma triangular superior es:

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

Ejemplo 2

$$ A = \begin{bmatrix} 1 & 2 & 3 \\ 2 & 4 & 7 \\ 1 & 1 & 0 \end{bmatrix} $$

Aplica la eliminación:

$$ R_2 := R_2 - 2R_1 = [0,\, 0,\, 1] $$ $$ R_3 := R_3 - R_1 = [0,\,-1,\,-3] $$ $$ R_3 := R_3 + R_2 = [0,\,-1,\,-2] $$

Matriz triangular superior final:

$$ U = \begin{bmatrix} 1 & 2 & 3 \\ 0 & 0 & 1 \\ 0 & -1 & -2 \end{bmatrix} $$

4. Errores comunes

  • Incorrect pivot selection: Using a zero pivot without swapping rows.
  • Wrong row operations: Forgetting to apply operations across the entire row.
  • Non-square matrices: Only square matrices can be triangular.
  • Sign mistakes: Incorrect computation of the elimination factor \( k = a_{ij} / a_{jj} \).

5. Problemas de práctica

Try converting the following matrices into upper-triangular form. Answers are hidden in collapsible sections.

Ejercicio 1

$$ \begin{bmatrix} 3 & 1 & -2 \\ 6 & -3 & 2 \\ 9 & 0 & 1 \end{bmatrix} $$
Mostrar respuesta

$$ \begin{bmatrix} 3 & 1 & -2 \\ 0 & -5 & 6 \\ 0 & -3 & 7 \end{bmatrix} $$

Ejercicio 2

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

$$ \begin{bmatrix} 1 & 4 & 2 \\ 0 & 0 & 2 \\ 0 & -2 & 1 \end{bmatrix} $$

Ejercicio 3

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

$$ \begin{bmatrix} 2 & 2 & 1 \\ 0 & 2 & 1.5 \\ 0 & -3 & 3 \end{bmatrix} $$

Ejercicio 4

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

$$ \begin{bmatrix} 5 & 2 & 4 \\ 0 & 2.6 & 1.2 \\ 0 & -2.8 & -4.6 \end{bmatrix} $$

Preguntas Frecuentes (FAQ)

¿Qué es una matriz triangular superior?

Es una matriz donde todos los elementos debajo de la diagonal principal son cero.

¿La calculadora muestra los pasos?

Sí, muestra cada paso del proceso de eliminación.


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