Matrices are powerful mathematical tools that organize numbers into rows...
Understanding Matrices: Basics and Operations




Matrix Basics and Operations
Matrices organize numbers in a rectangular array of rows and columns. A matrix's dimensions are written as rows × columns, such as 2×3 (2 rows, 3 columns). Each element is labeled with subscripts that show its position (row, column).
The identity matrix is a special square matrix with 1s down the diagonal and 0s everywhere else. It functions like the number 1 in multiplication. For example, a 2×2 identity matrix looks like:
[1 0]
[0 1]
Matrix addition and subtraction work by combining corresponding elements, but only matrices with identical dimensions can be added or subtracted. For example:
[3 -8] [6 2] [9 -6]
[0 12] + [3 -9] = [3 3]
💡 Unlike multiplication, matrix addition is commutative, meaning A + B = B + A.
Scalar multiplication happens when you multiply every element in a matrix by a number. For "division," you multiply by a fraction . Matrix multiplication is trickier—you must match the inner dimensions and use dot products of rows and columns. Remember that matrix multiplication is not commutative—the order matters!

Linear Systems Using Matrices
A linear system contains equations where variables appear only to the first power, without multiplying or dividing other variables, and without radicals. These systems can have one solution, no solutions, or infinitely many solutions.
To solve linear systems, we can convert them into augmented matrices that contain just the coefficients and constants. For example, the system
ax + by = c
dx + ey = f
becomes the matrix
[a b | c]
[d e | f]
We use row operations to transform these matrices:
- Interchange rows
- Multiply a row by a non-zero number
- Replace a row by adding/subtracting another row
- Combine operations to replace a row with itself plus a multiple of another row
💡 The goal is to reach reduced row echelon form, where the left side is an identity matrix, giving you the solution directly.
When solving, you might encounter a row of all zeros. If this row has a non-zero value on the right side, the system has no solutions. If the row is completely zeros, the system has infinitely many solutions, which you'll express in terms of a parameter.
For example, if your final matrix shows x = 4, y = -3, z = 1, that's your unique solution. If you end up with a relationship between variables, you'll have infinitely many solutions.

Inverse Matrices and Determinants
Only square matrices can have inverses. A matrix A and its inverse A⁻¹ multiply to give the identity matrix: A·A⁻¹ = I. To find an inverse:
- Create an augmented matrix with your original matrix on the left and the identity matrix on the right
- Use row operations to transform the left side into the identity matrix
- The right side becomes your inverse matrix
Not all matrices have inverses. If you get a row of zeros during this process, the matrix is singular and has no inverse.
💡 For 2×2 matrices, there's a shortcut: if A = [a b; c d], then A⁻¹ = 1/det(A) · (swap the diagonal elements, negate the others, and divide by the determinant).
The determinant of a matrix (written as det A or |A|) is a special number that tells us important properties about the matrix:
- For 2×2 matrices: det [a b; c d] = ad - bc
- For 3×3 matrices: you can use diagonal products or expansion by minors
If a matrix's determinant equals zero, the matrix is singular and has no inverse. This is incredibly useful for quickly determining whether a linear system has a unique solution.
We thought you’d never ask...
Similar Content
Most popular content in Pre-Calculus
9Solutions of Oblique Triangles
This is a note about solutions of oblique triangles with examples.
Mathematics (Solid Mensuration)
This note is all about solid mensuration, angles, and polygons. It includes formulas and sample problems with solution.
Derivation
Calculus
AP Precalculus Notes: Unit 1 CRAM
I used a couple abbreviations in these notes, so I'll quickly define them! VA: Vertical Asymptote, HA: Horizontal Asymptote, UND: Undefined, LC: Leading Coefficient, ROC: Rate of change. Good luck! :)
The remainder theorem and factor theorem
Notes about the topic
Trigonometry (Polygons)
This note is all about trigonometry, discussing the concept of polygons and how to solve problems involving polygons. It also includes formulas and sample problems.
Introduction to Limits and Limit Techniques
Gives an introduction to Limits and Limit techniques through graphs, explanations, and example work.
Solid Mensuration
Basic concepts on solid mensuration
Pythagorean Theorem
Precalculus Graphing basics, Distance Formula, Midpoint Formula
Most popular content
9Origins and Dynamics of the Columbian Exchange
Analyze the ecological and economic motivations behind the initial transfer of goods, people, and diseases between the Old and New Worlds.
Introduction to Early Cultural Interactions
Analyze the initial social and religious encounters between Europeans, Africans, and Indigenous peoples in the colonial Americas.
Origins of Ancient River Civilizations
Analyze the environmental factors and technological innovations that led to the rise of early states in Mesopotamia, Egypt, and the Indus Valley.
Motivations for European Exploration
Analyze the economic, religious, and political factors that drove European powers to the Americas during the 15th and 16th centuries.
Foundations of Ethical Guidelines in Research
Practice the core principles of the APA ethical code including informed consent, debriefing, and the role of Institutional Review Boards.
Introduction to Native American Societies
Examine the diverse social, political, and economic structures of North American indigenous groups prior to European contact.
Introduction to the Spanish Encomienda System
Explore the fundamental economic and social structures of the Spanish colonial system, focusing on the encomienda and the casta social hierarchy.
Introduction to Biological Elements of Life
Practice identifying the essential elements including carbon, nitrogen, phosphorus, and sulfur that compose biological macromolecules.
Origins of the Articles of Confederation
Practice identifying the motivations for a weak central government and the specific powers granted to the states under the first U.S. constitution.
Students love us — and so will you.
The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.
This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.
Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.
Understanding Matrices: Basics and Operations
Matrices are powerful mathematical tools that organize numbers into rows and columns, allowing us to solve complex problems efficiently. This guide covers the fundamentals of matrices, including basic operations, solving linear systems, and working with inverse matrices and determinants.

Matrix Basics and Operations
Matrices organize numbers in a rectangular array of rows and columns. A matrix's dimensions are written as rows × columns, such as 2×3 (2 rows, 3 columns). Each element is labeled with subscripts that show its position (row, column).
The identity matrix is a special square matrix with 1s down the diagonal and 0s everywhere else. It functions like the number 1 in multiplication. For example, a 2×2 identity matrix looks like:
[1 0]
[0 1]
Matrix addition and subtraction work by combining corresponding elements, but only matrices with identical dimensions can be added or subtracted. For example:
[3 -8] [6 2] [9 -6]
[0 12] + [3 -9] = [3 3]
💡 Unlike multiplication, matrix addition is commutative, meaning A + B = B + A.
Scalar multiplication happens when you multiply every element in a matrix by a number. For "division," you multiply by a fraction . Matrix multiplication is trickier—you must match the inner dimensions and use dot products of rows and columns. Remember that matrix multiplication is not commutative—the order matters!

Linear Systems Using Matrices
A linear system contains equations where variables appear only to the first power, without multiplying or dividing other variables, and without radicals. These systems can have one solution, no solutions, or infinitely many solutions.
To solve linear systems, we can convert them into augmented matrices that contain just the coefficients and constants. For example, the system
ax + by = c
dx + ey = f
becomes the matrix
[a b | c]
[d e | f]
We use row operations to transform these matrices:
- Interchange rows
- Multiply a row by a non-zero number
- Replace a row by adding/subtracting another row
- Combine operations to replace a row with itself plus a multiple of another row
💡 The goal is to reach reduced row echelon form, where the left side is an identity matrix, giving you the solution directly.
When solving, you might encounter a row of all zeros. If this row has a non-zero value on the right side, the system has no solutions. If the row is completely zeros, the system has infinitely many solutions, which you'll express in terms of a parameter.
For example, if your final matrix shows x = 4, y = -3, z = 1, that's your unique solution. If you end up with a relationship between variables, you'll have infinitely many solutions.

Inverse Matrices and Determinants
Only square matrices can have inverses. A matrix A and its inverse A⁻¹ multiply to give the identity matrix: A·A⁻¹ = I. To find an inverse:
- Create an augmented matrix with your original matrix on the left and the identity matrix on the right
- Use row operations to transform the left side into the identity matrix
- The right side becomes your inverse matrix
Not all matrices have inverses. If you get a row of zeros during this process, the matrix is singular and has no inverse.
💡 For 2×2 matrices, there's a shortcut: if A = [a b; c d], then A⁻¹ = 1/det(A) · (swap the diagonal elements, negate the others, and divide by the determinant).
The determinant of a matrix (written as det A or |A|) is a special number that tells us important properties about the matrix:
- For 2×2 matrices: det [a b; c d] = ad - bc
- For 3×3 matrices: you can use diagonal products or expansion by minors
If a matrix's determinant equals zero, the matrix is singular and has no inverse. This is incredibly useful for quickly determining whether a linear system has a unique solution.
We thought you’d never ask...
Similar Content
Most popular content in Pre-Calculus
9Solutions of Oblique Triangles
This is a note about solutions of oblique triangles with examples.
Mathematics (Solid Mensuration)
This note is all about solid mensuration, angles, and polygons. It includes formulas and sample problems with solution.
Derivation
Calculus
AP Precalculus Notes: Unit 1 CRAM
I used a couple abbreviations in these notes, so I'll quickly define them! VA: Vertical Asymptote, HA: Horizontal Asymptote, UND: Undefined, LC: Leading Coefficient, ROC: Rate of change. Good luck! :)
The remainder theorem and factor theorem
Notes about the topic
Trigonometry (Polygons)
This note is all about trigonometry, discussing the concept of polygons and how to solve problems involving polygons. It also includes formulas and sample problems.
Introduction to Limits and Limit Techniques
Gives an introduction to Limits and Limit techniques through graphs, explanations, and example work.
Solid Mensuration
Basic concepts on solid mensuration
Pythagorean Theorem
Precalculus Graphing basics, Distance Formula, Midpoint Formula
Most popular content
9Origins and Dynamics of the Columbian Exchange
Analyze the ecological and economic motivations behind the initial transfer of goods, people, and diseases between the Old and New Worlds.
Introduction to Early Cultural Interactions
Analyze the initial social and religious encounters between Europeans, Africans, and Indigenous peoples in the colonial Americas.
Origins of Ancient River Civilizations
Analyze the environmental factors and technological innovations that led to the rise of early states in Mesopotamia, Egypt, and the Indus Valley.
Motivations for European Exploration
Analyze the economic, religious, and political factors that drove European powers to the Americas during the 15th and 16th centuries.
Foundations of Ethical Guidelines in Research
Practice the core principles of the APA ethical code including informed consent, debriefing, and the role of Institutional Review Boards.
Introduction to Native American Societies
Examine the diverse social, political, and economic structures of North American indigenous groups prior to European contact.
Introduction to the Spanish Encomienda System
Explore the fundamental economic and social structures of the Spanish colonial system, focusing on the encomienda and the casta social hierarchy.
Introduction to Biological Elements of Life
Practice identifying the essential elements including carbon, nitrogen, phosphorus, and sulfur that compose biological macromolecules.
Origins of the Articles of Confederation
Practice identifying the motivations for a weak central government and the specific powers granted to the states under the first U.S. constitution.
Students love us — and so will you.
The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.
This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.
Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.