Multiply any matrix by a scalar value to get the resulting matrix
Enter a matrix and a scalar value to calculate their product. Scalar multiplication multiplies each element of the matrix by the scalar value.
The scalar value that will multiply each element of the matrix
Try these sample matrices to see how scalar multiplication works
Basic example with positive scalar
Matrix: [[1,2],[3,4]]
Scalar: 3
Multiplication by negative scalar changes signs
Matrix: [[1,0,-1],[2,3,1],[0,-2,4]]
Scalar: -2
Fractional scaling of matrix elements
Matrix: [[4,6,8],[2,10,12],[14,16,18]]
Scalar: 0.5
Scaling an identity matrix creates a scalar matrix
Matrix: [[1,0,0],[0,1,0],[0,0,1]]
Scalar: 5