Hadamard Division Calculator

Divide each element of matrix A by the corresponding element of matrix B. Both matrices must be the same size and B must have no zero entries.

Loading calculator…

Notes

What is Hadamard Division?

Hadamard division is the element-wise counterpart to the Hadamard product. Each entry of the result equals the corresponding entry of A divided by the corresponding entry of B. Both matrices must have the same dimensions.

Worked Example

A:

68
1012

B:

24
53

A ⊘ B (divide each entry of A by the corresponding entry of B):

32
24
Division by zero: if any element of B is zero, the operation is undefined at that position.

Frequently Asked Questions

Is Hadamard division the same as multiplying by the inverse?

Element-wise, yes: A ⊘ B = A ⊙ (1/B), where 1/B means taking the reciprocal of each element. This is different from multiplying by the matrix inverse B⁻¹.

What happens if B has a zero entry?

The operation is undefined at that position (division by zero). This calculator will show an error if any element of B is zero.

Is Hadamard division commutative?

No. A ⊘ B ≠ B ⊘ A in general, just like scalar division a/b ≠ b/a.