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

Multiplicación escalar de matrices

This article explains scalar multiplication for matrices, provides formulas, worked examples, common pitfalls, and practice problems with hidden answers. Designed as companion content for a Matrix Scalar Multiplication Calculator.


Definición y fórmula

Scalar multiplication is the operation of multiplying every entry of a matrix by a scalar (a real or complex number). If $k$ is a scalar and $A$ is an $m\times n$ matrix with entries $a_{ij}$, then the scalar multiple $kA$ is the $m\times n$ matrix whose $(i,j)$ entry is $k a_{ij}$.

Formally, if

$$ A = [a_{ij}]_{m\times n} = \begin{pmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{pmatrix}, $$

then

$$ kA = [k a_{ij}]_{m\times n} = \begin{pmatrix} k a_{11} & k a_{12} & \cdots & k a_{1n} \\ k a_{21} & k a_{22} & \cdots & k a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ k a_{m1} & k a_{m2} & \cdots & k a_{mn} \end{pmatrix}. $$

Propiedades (útiles para la experiencia de uso y el SEO de la calculadora)

  • Distributive over matrix addition: $k(A + B) = kA + kB$.
  • Associative with scalar multiplication: $(kl)A = k(lA)$ for scalars $k,l$.
  • Multiplying by 1 leaves the matrix unchanged: $1 \cdot A = A$.
  • Multiplying by 0 yields the zero matrix: $0 \cdot A = 0_{m\times n}$.

Ejemplo resuelto 1 (2×2)

Compute $3A$ for

$$ A=\begin{pmatrix} 1 & -2 \\ 4 & 0 \end{pmatrix}. $$

Solución:

$$ 3A = 3 \begin{pmatrix} 1 & -2 \\ 4 & 0 \end{pmatrix} = \begin{pmatrix} 3\cdot 1 & 3\cdot(-2) \\ 3\cdot 4 & 3\cdot 0 \end{pmatrix} = \begin{pmatrix} 3 & -6 \\ 12 & 0 \end{pmatrix}. $$

Ejemplo resuelto 2 (3×3, escalar cero y negativo)

Compute $-2B$ for

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

Solución:

$$ -2B = -2\begin{pmatrix} 0 & 1 & 2 \\ -1 & 3 & 0 \\ 4 & -2 & 5 \end{pmatrix} = \begin{pmatrix} 0 & -2 & -4 \\ 2 & -6 & 0 \\ -8 & 4 & -10 \end{pmatrix}. $$

Errores comunes y consejos

Error común Consejo / enfoque correcto
Tratar la multiplicación escalar como si fuera multiplicación de matrices El escalar multiplica cada entrada de forma independiente; no hay restricción de dimensiones.
Olvidar multiplicar los signos negativos Distribute scalar sign to each entry carefully (e.g., $-2\cdot(-3)=6$).
Intentar multiplicar el escalar solo por una fila o una columna Clarify whether intended operation is scalar multiplication (whole matrix) or scaling a specific row/column.
Confundir el escalar 0 con la matriz nula $0\cdot A$ yields the zero matrix of same size; $0_{m\times n}$ is not the scalar 0.

Problemas de práctica (calcula y muestra el resultado final)

Each exercise asks for the scalar multiple. Answers are hidden; click "Show Answer" to reveal.

Ejercicio 1 — Multiply by a positive integer:

$$A = \begin{pmatrix} 2 & -1 \\ 5 & 3 \end{pmatrix}, \quad \text{compute } 4A.$$
Mostrar respuesta

Calcula cada entrada: multiplica por 4

$$ 4A = \begin{pmatrix} 8 & -4 \\ 20 & 12 \end{pmatrix}. $$

Ejercicio 2 — Multiply by zero:

$$B = \begin{pmatrix} 1 & 2 & 3 \\ -1 & 0 & 4 \end{pmatrix}, \quad \text{compute } 0\cdot B.$$
Mostrar respuesta

Cada entrada se vuelve cero (con el mismo tamaño que B):

$$ 0\cdot B = \begin{pmatrix} 0 & 0 & 0 \\ 0 & 0 & 0 \end{pmatrix}. $$

Ejercicio 3 — Multiply by a negative scalar:

$$C = \begin{pmatrix} 0 & -3 \\ 2 & 1 \\ -4 & 5 \end{pmatrix}, \quad \text{compute } -3C.$$
Mostrar respuesta

Multiplica cada entrada por -3:

$$ -3C = \begin{pmatrix} 0 & 9 \\ -6 & -3 \\ 12 & -15 \end{pmatrix}. $$

Ejercicio 4 — Fractional scalar:

$$D = \begin{pmatrix} 6 & 2 & -3 \\ 0 & 4 & 8 \\ 1 & -1 & 5 \end{pmatrix}, \quad \text{compute } \tfrac{1}{2}D.$$
Mostrar respuesta

Multiplica cada entrada por 1/2 (divide las entradas entre 2):

$$ \tfrac{1}{2}D = \begin{pmatrix} 3 & 1 & -\tfrac{3}{2} \\ 0 & 2 & 4 \\ \tfrac{1}{2} & -\tfrac{1}{2} & \tfrac{5}{2} \end{pmatrix}. $$

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

Juego de multiplicación de matrices