How this instrument works
Scalar multiplication takes one matrix and one ordinary number and multiplies every single entry by that number: R₁₁ = k × A₁₁, R₁₂ = k × A₁₂, and so on for all four cells. It is the plainest operation in the whole family of matrix operations, because unlike matrix addition or the Hadamard product, only one matrix is involved — there is no second grid of numbers to line up against, just a matrix meeting a single multiplier the way an ordinary number meets a multiplier.
Geometrically, kA is the same linear transformation as A, stretched by a factor of k. Every eigenvector A owns, kA owns too, unchanged in direction — only the eigenvalue attached to it gets multiplied by k. That is why doubling a scaling matrix or a rotation matrix changes how strongly it acts without changing what it fundamentally does: a negative k adds a flip to the mix, reversing direction, and k = 0 crushes every vector in sight to the origin, since the whole matrix becomes zero.
One detail catches people off guard: the determinant does not scale by k, it scales by kⁿ, where n is the matrix size. For the 2×2 grids this sheet handles, tripling every entry multiplies the determinant by 3² = 9, not by 3 — area scales with both dimensions of a flat grid, not just one, and the determinant is exactly that area.
- Enter the number you want to scale by into Scalar, k.
- Enter the matrix's four entries into A: row1,col1, A: row1,col2, A: row2,col1, and A: row2,col2.
- Read the four Result fields — Result: row1,col1 through Result: row2,col2 — each one simply k times its matching A cell.
- Try a negative k and watch every entry flip sign at once, or set k = 0 and watch the whole matrix collapse to zero.
Worked example — 3 times [[1,2],[3,4]]
Set Scalar, k = 3 and A: row1,col1 = 1, A: row1,col2 = 2, A: row2,col1 = 3, A: row2,col2 = 4. Every entry is multiplied by the same 3, independently of every other entry: Result: row1,col1 = 3 × 1 = 3, Result: row1,col2 = 3 × 2 = 6, Result: row2,col1 = 3 × 3 = 9, and Result: row2,col2 = 3 × 4 = 12.
The full result reads R = [[3,6],[9,12]] — three times bigger in every position, exactly as multiplying an ordinary number by 3 would triple it. Notice what did not happen: this is one matrix meeting one plain number, not two matrices meeting position by position the way matrix addition or the Hadamard product would combine A with a second grid of entries. And because a determinant measures area, it does not simply triple — det(A) = 1×4 − 2×3 = −2, while det(R) = 3×12 − 6×9 = −18, nine times as large, since det(kA) = k² · det(A) for a 2×2 matrix.
Questions
What is the formula for multiplying a matrix by a scalar?
Multiply every entry of the matrix by the same number k: R_ij = k × A_ij for each position. There is no row-to-column combining the way ordinary matrix multiplication works — for A = [[1,2],[3,4]] and k = 3, that gives R = [[3,6],[9,12]], each cell simply tripled independently of every other cell.
How is scalar multiplication different from matrix addition?
Matrix addition combines two matrices, pairing each cell of A with the matching cell of B. Scalar multiplication combines one matrix with a single ordinary number, so every entry meets the same k rather than a second grid of values — kA scales the whole matrix uniformly, while A + B blends two independent matrices cell by cell.
Does multiplying by a scalar change the direction a matrix transforms in?
For k > 0, no — kA is the exact same linear transformation as A, just stretched by a factor of k in every direction, and every eigenvector of A stays an eigenvector of kA with its eigenvalue multiplied by k. A negative k performs the same stretch and also reverses direction, which is why doubling a scaling matrix changes its strength but never what it fundamentally does.
What is the most common mistake with scalar multiplication of a matrix?
Assuming the determinant scales by k the same way the matrix does. It does not: for an n×n matrix, det(kA) = kⁿ × det(A). Tripling the example matrix above multiplies its determinant by 3² = 9, not by 3 — det(A) = −2 becomes det(R) = −18, a factor students frequently get wrong on the first try.
What happens when the scalar is 0 or 1?
A scalar of 1 leaves the matrix completely unchanged — the multiplicative identity, just as multiplying an ordinary number by 1 does nothing. A scalar of 0 collapses every entry to 0 regardless of what the matrix originally held, producing the all-zero matrix no matter which numbers you started with.
Does scalar multiplication distribute over matrix addition?
Yes — k(A + B) = kA + kB, and (k + m)A = kA + mA, the same distributive laws ordinary numbers obey. This is part of why matrices form what mathematicians call a vector space: scalar multiplication and matrix addition interact by the same rules as scaling and adding ordinary coordinate vectors.