Matrix Fundamentals Operations – ECE Board Exam | PinoyBIX

Matrix Fundamentals and Operations — PinoyBIX ECE EE CE ME Board Exam Reviewer

Matrices show up in every engineering board exam in the Philippines, and they always start the same way: a notation question, a multiplication problem, or a dimension check that separates students who actually studied from those who guessed. Matrix operations are the entry point for the entire Matrices and Determinants topic. If you cannot add, subtract, and multiply matrices correctly, and know when multiplication is even possible, every downstream application collapses. Circuit mesh analysis, Cramer’s rule, structural force systems: all of it starts here. This post covers every matrix operation tested on the board exam for ECE, EE, ME, CE, and ChE, with 10 fully worked problems in the same step-by-step format you will use on exam day. This is Part 1 of the Matrices and Determinants Series.


📋 BOARD EXAM RELEVANCE

  • ECE (Electronics Engineer) — Tested in Engineering Mathematics. Matrix operations underpin signal flow graphs, state-space analysis, and filter design problems.
  • EE (Electrical Engineer) — High frequency. Mesh and nodal analysis require matrix setup and multiplication. The [Z][I]=[V] system appears directly on the board exam.
  • ME (Mechanical Engineer) — Tested in Engineering Mathematics. Stiffness matrices in structural analysis use matrix multiplication and transpose operations.
  • CE (Civil Engineer) — Tested in Engineering Mathematics. Truss analysis and force resolution problems set up as matrix systems.
  • ChE (Chemical Engineer) — Tested in Engineering Mathematics. Mass balance systems in multi-component mixing require matrix operations.
  • GeE (Geodetic Engineer) — Moderate frequency. Coordinate transformations use matrix multiplication.
  • MetE and MinE — Low to moderate frequency. Basic matrix operations appear in Engineering Mathematics.
  • Naval Architect and Marine Engineer — Moderate frequency. Structural load analysis and stability calculations use matrix methods.

Bottom line: ECE, EE, ME, and CE examinees should master every operation in this post cold, since mesh analysis and stiffness matrices depend on them directly. ChE, GeE, MetE, MinE, and Naval Architecture examinees need the notation, addition, and multiplication rules solid — that is what carries into the systems-of-equations problems later in this series.


What is a Matrix

A matrix is a rectangular array of numbers arranged in rows and columns. You write it inside brackets and describe its size by stating rows first, then columns. A matrix with m rows and n columns is called an m \times n matrix.

KEY FORMULA — ELEMENT NOTATION

    \[A = [a_{ij}]_{m \times n}\]

i is the row position, j is the column position. The element a_{23} sits in row 2, column 3. Row index always comes first.


Matrix Types You Must Recognize

The board exam tests matrix types through identification questions. These are not difficult, but students who never memorize the definitions lose easy points.

Square matrix: number of rows equals number of columns. All determinant problems use square matrices.

Identity matrix I: a square matrix with 1’s on the main diagonal and 0’s everywhere else. Multiplying any matrix by I gives the original matrix back: AI = IA = A.

Zero matrix: every entry is 0.

Diagonal matrix: square matrix with nonzero entries only on the main diagonal. All other entries are 0.

Symmetric matrix: a square matrix equal to its own transpose. A = A^T. Every entry a_{ij} = a_{ji}.

Transpose A^T: swap rows and columns. Row i of A becomes column i of A^T.


Addition and Subtraction

You can only add or subtract two matrices when they have exactly the same size — same number of rows and same number of columns. When the sizes match, add or subtract the corresponding elements. There is no shortcut here and no polar-form equivalent. You go entry by entry.

KEY FORMULA — Matrix Addition

    \[[A + B]_{ij} = a_{ij} + b_{ij} \qquad \text{(same size only)}\]

Add the element in row i, column j of matrix A to the element in the same position of matrix B.

Addition is commutative: A + B = B + A. Subtraction is not — always check which matrix comes first.

Scalar Multiplication

Multiplying a matrix by a scalar (a single number) means multiplying every element of the matrix by that number. No size restriction applies — scalar multiplication works on any matrix.

KEY FORMULA — Scalar Multiplication

    \[kA = [k \cdot a_{ij}]\]

Every element gets multiplied by k, including the negative and zero entries.

Matrix Multiplication

This is the operation that trips up the most students. Matrix multiplication is not element-by-element multiplication. You take the dot product of rows from the first matrix with columns of the second matrix.

KEY FORMULA — Matrix Multiplication

Compatibility condition: (m \times n)(n \times p) = (m \times p)

The inner dimensions must match. The result has the outer dimensions.

    \[[AB]_{ij} = \sum_{k=1}^{n} a_{ik} \cdot b_{kj}\]

Element in row i, column j of the result equals the dot product of row i of A with column j of B.

The single most important fact about matrix multiplication: AB \neq BA in general. Order matters. On the board exam, always check which order the problem specifies, and never assume you can flip it to make the arithmetic easier.

Transpose

The transpose of a matrix flips its rows and columns. Row 1 becomes column 1, row 2 becomes column 2, and so on. If A is m \times n, then A^T is n \times m.

KEY FORMULAS — TRANSPOSE RULES

    \[[A^T]_{ij} = [A]_{ji}\]

    \[(A^T)^T = A \qquad (A+B)^T = A^T + B^T\]

    \[(kA)^T = kA^T \qquad (AB)^T = B^T A^T\]

A symmetric matrix satisfies A^T = A — its transpose equals itself.

The last rule catches most students: the transpose of a product reverses the order. (AB)^T = B^T A^T, not A^T B^T. Same reversal pattern as the inverse of a product, which you will see again in Part 2.


Special Matrix Types

The board exam tests recognition of special matrix types. Know these by name and property.

The identity matrix I is a square matrix with 1s on the main diagonal and 0s everywhere else. It acts like the number 1 in multiplication: AI = IA = A for any compatible matrix A.

A zero matrix has all elements equal to zero. Adding the zero matrix to any matrix A returns A.

A square matrix has equal numbers of rows and columns (n \times n). Only square matrices can be symmetric, have determinants, or be invertible.

A diagonal matrix has nonzero entries only on the main diagonal. Multiplying two diagonal matrices is particularly fast — you only multiply the diagonal entries.


10 Worked Problems — Board Exam Type

Problem 1. Read the matrix element.

Given: A = \begin{bmatrix} 4 & 7 & 2 \\ 1 & 9 & 5 \\ 3 & 6 & 8 \end{bmatrix}

Find: a_{23} and a_{31}.

Solution:

Step 1: For a_{23}, go to row 2, column 3.

    \[a_{23} = 5\]

Step 2: For a_{31}, go to row 3, column 1.

    \[a_{31} = 3\]

✓ ANSWER: a_{23} = 5, a_{31} = 3

Examiner note: The subscript order is always row then column, never column then row. a_{23} is row 2, column 3. Reversing that gives you a different element entirely.


Problem 2. Determine which additions are defined.

Given: A is 2 \times 3, B is 2 \times 3, C is 3 \times 2.

Find: Which of A + B, A + C, B + C are defined?

Solution:

Step 1: Check size match for A + B. Both are 2 \times 3.

    \[A + B \text{ is defined} \quad \checkmark\]

Step 2: Check size match for A + C. A is 2 \times 3, C is 3 \times 2. Sizes differ.

    \[A + C \text{ is undefined} \quad \times\]

Step 3: Check size match for B + C. Same issue as above.

    \[B + C \text{ is undefined} \quad \times\]

✓ ANSWER: Only A + B is defined.

Examiner note: A 2 \times 3 and a 3 \times 2 matrix look related but they are not the same size. Rows by columns, in that order, always.


Problem 3. Add two matrices.

Given: A = \begin{bmatrix} 3 & -1 \\ 2 & 4 \end{bmatrix}, B = \begin{bmatrix} -2 & 5 \\ 1 & -3 \end{bmatrix}

Find: A + B

Solution:

Step 1: Add corresponding entries.

    \[A + B = \begin{bmatrix} 3+(-2) & -1+5 \\ 2+1 & 4+(-3) \end{bmatrix}\]

Step 2: Simplify.

    \[A + B = \begin{bmatrix} 1 & 4 \\ 3 & 1 \end{bmatrix}\]

✓ ANSWER: A + B = \begin{bmatrix} 1 & 4 \\ 3 & 1 \end{bmatrix}

Examiner note: Watch the signs when a negative entry is involved. -1 + 5 = 4, not -6. Size must match before you start — check that first, every time.


Problem 4. Subtract two matrices.

Given: A = \begin{bmatrix} 6 & 2 & -1 \\ 0 & 3 & 5 \end{bmatrix}, B = \begin{bmatrix} 1 & -2 & 4 \\ 3 & 1 & -2 \end{bmatrix}

Find: A - B

Solution:

Step 1: Subtract corresponding elements.

    \[A - B = \begin{bmatrix} 6-1 & 2-(-2) & -1-4 \\ 0-3 & 3-1 & 5-(-2) \end{bmatrix}\]

Step 2: Simplify.

    \[A - B = \begin{bmatrix} 5 & 4 & -5 \\ -3 & 2 & 7 \end{bmatrix}\]

✓ ANSWER: A - B = \begin{bmatrix} 5 & 4 & -5 \\ -3 & 2 & 7 \end{bmatrix}

Examiner note: Watch the signs when subtracting negative numbers. 2 - (-2) = 4, not 0. This is where careless errors stack up, especially under exam time pressure.


Problem 5. Scalar multiplication with a negative scalar.

Given: A = \begin{bmatrix} 2 & -4 & 1 \\ 0 & 3 & -5 \end{bmatrix}, scalar k = -3

Find: kA

Solution:

Step 1: Multiply every entry by -3.

    \[-3A = \begin{bmatrix} -3(2) & -3(-4) & -3(1) \\ -3(0) & -3(3) & -3(-5) \end{bmatrix}\]

Step 2: Simplify.

    \[-3A = \begin{bmatrix} -6 & 12 & -3 \\ 0 & -9 & 15 \end{bmatrix}\]

✓ ANSWER: -3A = \begin{bmatrix} -6 & 12 & -3 \\ 0 & -9 & 15 \end{bmatrix}

Examiner note: A negative scalar multiplied by a negative entry gives a positive result. -3 \times -4 = +12, not -12. Double check every sign when the scalar is negative.


Problem 6. Determine which products are defined, and their size.

Given: A is 3 \times 2, B is 2 \times 4, C is 4 \times 3.

Find: Which of (a) AB, (b) BA, (c) BC, (d) CA are defined, and what size is each?

Solution:

Step 1: Check AB. (3 \times 2)(2 \times 4) — inner dimensions 2 = 2 ✓ — result is 3 \times 4.

Step 2: Check BA. (2 \times 4)(3 \times 2) — inner dimensions 4 \neq 3 ✗ — not defined.

Step 3: Check BC. (2 \times 4)(4 \times 3) — inner dimensions 4 = 4 ✓ — result is 2 \times 3.

Step 4: Check CA. (4 \times 3)(3 \times 2) — inner dimensions 3 = 3 ✓ — result is 4 \times 2.

✓ ANSWER: AB, BC, and CA are defined. BA is not defined.

Examiner note: Check compatibility before any computation. This type of item appears as a pure conceptual question with no arithmetic required — one of the fastest marks on the exam if you know the rule cold.


Problem 7. Multiply two 2 \times 2 matrices.

Given: A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}, B = \begin{bmatrix} 5 & 6 \\ 7 & 8 \end{bmatrix}

Find: AB

Solution:

Step 1: Compute entry c_{11} — row 1 of A times column 1 of B.

    \[c_{11} = (1)(5) + (2)(7) = 5 + 14 = 19\]

Step 2: Compute c_{12} — row 1 of A times column 2 of B.

    \[c_{12} = (1)(6) + (2)(8) = 6 + 16 = 22\]

Step 3: Compute c_{21} — row 2 of A times column 1 of B.

    \[c_{21} = (3)(5) + (4)(7) = 15 + 28 = 43\]

Step 4: Compute c_{22} — row 2 of A times column 2 of B.

    \[c_{22} = (3)(6) + (4)(8) = 18 + 32 = 50\]

Step 5: Assemble the result.

    \[AB = \begin{bmatrix} 19 & 22 \\ 43 & 50 \end{bmatrix}\]

✓ ANSWER: AB = \begin{bmatrix} 19 & 22 \\ 43 & 50 \end{bmatrix}

Examiner note: Each entry needs a full dot product, not a single multiplication. Work one element at a time and write out every term before you add — do not try to combine steps in your head under exam pressure.


Problem 8. Demonstrate that AB \neq BA.

Given: A = \begin{bmatrix} 1 & 2 \\ 0 & 1 \end{bmatrix}, B = \begin{bmatrix} 1 & 0 \\ 3 & 1 \end{bmatrix}

Find: AB and BA, then compare.

Solution:

Step 1: Compute AB.

    \[AB = \begin{bmatrix}(1)(1)+(2)(3) & (1)(0)+(2)(1) \\ (0)(1)+(1)(3) & (0)(0)+(1)(1)\end{bmatrix} = \begin{bmatrix} 7 & 2 \\ 3 & 1 \end{bmatrix}\]

Step 2: Compute BA.

    \[BA = \begin{bmatrix}(1)(1)+(0)(0) & (1)(2)+(0)(1) \\ (3)(1)+(1)(0) & (3)(2)+(1)(1)\end{bmatrix} = \begin{bmatrix} 1 & 2 \\ 3 & 7 \end{bmatrix}\]

Step 3: Compare. AB \neq BA.

✓ ANSWER: AB = \begin{bmatrix} 7 & 2 \\ 3 & 1 \end{bmatrix} \neq BA = \begin{bmatrix} 1 & 2 \\ 3 & 7 \end{bmatrix}

Examiner note: Even when both AB and BA are defined and the same size, they are usually not equal. The only guaranteed case where AB = BA is when one of the matrices is the identity I.


Problem 9. Find the transpose of a matrix.

Given: A = \begin{bmatrix} 1 & 4 & 7 \\ 2 & 5 & 8 \\ 3 & 6 & 9 \end{bmatrix}

Find: A^T

Solution:

Step 1: Swap rows and columns. Row 1 of A becomes column 1 of A^T.

    \[A^T = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{bmatrix}\]

✓ ANSWER: A^T = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{bmatrix}

Examiner note: Element a_{ij} moves to position a_{ji}. The main diagonal stays fixed during a transpose — the elements 1, 5, 9 never move.


Problem 10. Verify (AB)^T = B^T A^T.

Given: A = \begin{bmatrix} 2 & 1 \\ 3 & 0 \end{bmatrix}, B = \begin{bmatrix} 1 & 4 \\ 2 & 3 \end{bmatrix}

Find: (AB)^T and B^T A^T, then verify they are equal.

Solution:

Step 1: Compute AB.

    \[AB = \begin{bmatrix}(2)(1)+(1)(2) & (2)(4)+(1)(3) \\ (3)(1)+(0)(2) & (3)(4)+(0)(3)\end{bmatrix} = \begin{bmatrix} 4 & 11 \\ 3 & 12 \end{bmatrix}\]

Step 2: Transpose the result.

    \[(AB)^T = \begin{bmatrix} 4 & 3 \\ 11 & 12 \end{bmatrix}\]

Step 3: Find A^T and B^T.

    \[A^T = \begin{bmatrix} 2 & 3 \\ 1 & 0 \end{bmatrix} \qquad B^T = \begin{bmatrix} 1 & 2 \\ 4 & 3 \end{bmatrix}\]

Step 4: Compute B^T A^T.

    \[B^T A^T = \begin{bmatrix}(1)(2)+(2)(1) & (1)(3)+(2)(0) \\ (4)(2)+(3)(1) & (4)(3)+(3)(0)\end{bmatrix} = \begin{bmatrix} 4 & 3 \\ 11 & 12 \end{bmatrix}\]

Step 5: Compare. Both give \begin{bmatrix} 4 & 3 \\ 11 & 12 \end{bmatrix}.

✓ ANSWER: (AB)^T = B^T A^T = \begin{bmatrix} 4 & 3 \\ 11 & 12 \end{bmatrix} ✓ Verified.

Examiner note: The order reverses when you transpose a product. (AB)^T = B^T A^T, never A^T B^T. This same reversal applies to inverses: (AB)^{-1} = B^{-1}A^{-1}. One rule, two applications — you will see it again in Part 2.


Common Mistakes and Examiner Traps

These are the most consistent error patterns seen in board exam solutions for this topic. Read each one carefully.

❌ Common Mistake ✅ Correct Approach
Adding matrices of different sizes, e.g. adding a 2 \times 3 to a 3 \times 2. Check sizes first. Addition requires identical dimensions. A 2 \times 3 and a 3 \times 2 cannot be added, even though the numbers look related.
Multiplying element by element (the Hadamard product) instead of row by column. Matrix multiplication is a dot product of rows with columns. [AB]_{ij} = \sum a_{ik} b_{kj}. Never just multiply matching positions.
Assuming AB = BA and computing only one product. Always treat AB and BA as separate computations. They are equal only in special cases, such as when one matrix is the identity.
Getting the result size wrong, e.g. multiplying (2 \times 3)(3 \times 4) and expecting a 3 \times 3 result. Result size comes from the outer dimensions: (2 \times 3)(3 \times 4) = 2 \times 4. The inner dimensions cancel out, they do not appear in the answer.
Forgetting to reverse the order in (AB)^T, writing A^T B^T instead of B^T A^T. (AB)^T = B^T A^T. The reversal rule. The same pattern applies to inverses: (AB)^{-1} = B^{-1}A^{-1}.
Reading a_{23} as row 3, column 2 instead of row 2, column 3. a_{ij} always means row i, column j. Row index first, column index second, no exceptions.

Board Exam Quick Tips

  1. Check compatibility before computing. Write the sizes side by side: (m \times n)(n \times p). If the inner numbers don’t match, the product does not exist. This takes 3 seconds and saves you from working a problem that has no answer.
  2. The result size comes from the outer dimensions. (3 \times 2)(2 \times 5) gives a 3 \times 5 result. If the problem asks for the order of the result, this is your answer — no computation needed.
  3. AB \neq BA in general. If a problem asks whether the product is commutative, the answer is almost always no. The only common exceptions are when one of the matrices is the identity matrix or when both are diagonal matrices of the same size.
  4. For (AB)^T, reverse the order. (AB)^T = B^T A^T. This comes up in proof-type questions and mirrors the exact same reversal rule for inverses, which you will use constantly starting in Part 2.
  5. A symmetric matrix satisfies A^T = A. If the problem gives you a matrix and asks whether it is symmetric, transpose it and check if you get the same matrix back. The main diagonal is always symmetric with itself.

Frequently Asked Questions

Q1. Is matrix multiplication the same as scalar multiplication?

No. Scalar multiplication means multiplying every element of the matrix by a single number. Matrix multiplication means taking the dot product of rows of the first matrix with columns of the second. The two operations are completely different. Scalar multiplication has no size restriction. Matrix multiplication requires the inner dimensions to match.

Q2. Can I add a 2 \times 3 matrix to a 3 \times 2 matrix?

No. Addition requires identical sizes. A 2 \times 3 matrix has 2 rows and 3 columns. A 3 \times 2 matrix has 3 rows and 2 columns. They are not the same size, so addition is not defined. You can, however, compute the product (2 \times 3)(3 \times 2), because the inner dimensions match — the result would be a 2 \times 2 matrix.

Q3. What does it mean when two matrices commute?

Two matrices A and B commute when AB = BA. This is the exception, not the rule. It happens when both matrices are diagonal and the same size, when one matrix is a scalar multiple of the identity, or in a few other structured cases. On the board exam, assume matrices do not commute unless the problem gives you specific information proving they do.

Q4. Why does the transpose reverse the order in (AB)^T = B^T A^T?

Think of it this way: if you put on your socks then your shoes, you have to take off your shoes before your socks. Operations that stack in one direction reverse when you undo them. The same reversal shows up in the inverse rule (AB)^{-1} = B^{-1}A^{-1}. It is a fundamental property of linear algebra that you will run into again in Laplace transforms and signal analysis.

Q5. What is the difference between a zero matrix and a zero determinant?

A zero matrix has every entry equal to zero. A zero determinant means the matrix is singular, but the matrix itself may still have nonzero entries. These are two different concepts that show up in different types of board exam problems. A zero matrix always has a zero determinant, but a zero determinant does not mean the matrix is a zero matrix. Part 2 covers this in full.


What is Next

Part 1 gave you the vocabulary and the operation rules. Part 2 builds directly on that foundation, covering how to evaluate determinants for 2 \times 2 and 3 \times 3 matrices, expand using cofactors, and find the inverse using two different methods. Determinants appear in almost every board exam problem involving linear systems, so Part 2 is the pivot point of the whole series.

→ Continue to Part 2 — Determinants and the Inverse Matrix

→ Back to the Matrices and Determinants Series Index


Published by PinoyBIX.org — Engineering Education for Every Filipino Student. Electronics · Mathematics · Board Exam Review · Free for Everyone.

Please do Subscribe on YouTube!

P inoyBIX educates thousands of reviewers and students a day in preparation for their board examinations. Also provides professionals with materials for their lectures and practice exams. Help me go forward with the same spirit.

“Will you subscribe today via YOUTUBE?”

Subscribe
What You Also Get: FREE ACCESS & DOWNLOAD via GDRIVE

TIRED OF ADS?

  • Become Premium Member and experienced complete ads-free content browsing.
  • Full Content Access to Premium Solutions Exclusive for Premium members
  • Access to PINOYBIX FREEBIES folder
  • Download Reviewers and Learning Materials Free
  • Download Content: You can see download/print button at the bottom of each post.

PINOYBIX FREEBIES FOR PREMIUM MEMBERSHIP:

  • CIVIL ENGINEERING REVIEWER
  • CIVIL SERVICE EXAM REVIEWER
  • CRIMINOLOGY REVIEWER
  • ELECTRONICS ENGINEERING REVIEWER (ECE/ECT)
  • ELECTRICAL ENGINEERING & RME REVIEWER
  • FIRE OFFICER EXAMINATION REVIEWER
  • LET REVIEWER
  • MASTER PLUMBER REVIEWER
  • MECHANICAL ENGINEERING REVIEWER
  • NAPOLCOM REVIEWER
  • Additional upload reviewers and learning materials are also FREE

FOR A LIMITED TIME

If you subscribe for PREMIUM today!

You will receive an additional 1 month of Premium Membership FREE.

For Bronze Membership an additional 2 months of Premium Membership FREE.

For Silver Membership an additional 3 months of Premium Membership FREE.

For Gold Membership an additional 5 months of Premium Membership FREE.

Join the PinoyBIX community.

DaysHoursMinSec
This offer has expired!

Add Comment

THE ULTIMATE ONLINE REVIEW HUB: PINOYBIX . © 2014-2026 All Rights Reserved | DMCA.com Protection Status
This content is protected. Subscribe to Premium to unlock full access.