What are compatible matrices? Two matrices are said to be compatible for a given operation if their orders satisfy the conditions required for that operation. Compatibility depends on what operation we want to perform.
For addition and subtraction: Matrices must have the same order. You can only add or subtract matrices when they have exactly the same number of rows AND the same number of columns.
For multiplication (for your information — not in Grade 10 syllabus typically): The number of columns in the first matrix must equal the number of rows in the second matrix.
Real-life analogy: You can only add two tables if they have the same number of rows and columns (same layout). You can't add a 2×3 table to a 3×2 table because the positions don't match!
Examples of compatible matrices for addition:
| Matrix A | Matrix B | Compatible? | Why? |
|---|---|---|---|
| 2 × 3 | 2 × 3 | ✓ Yes | Same order |
| 3 × 2 | 3 × 2 | ✓ Yes | Same order |
| 2 × 3 | 3 × 2 | ✗ No | Different orders |
| 1 × 4 | 1 × 4 | ✓ Yes | Same order |
| 2 × 2 | 2 × 3 | ✗ No | Columns don't match |