Matrix Calculator | Matrix Solver (2023)

Welcome to Omni's matrix calculator! This humongous matrix solver serves as a hub to connect and coordinate all of Omni's calculators that involve various matrix operations in math. Here, you can get a bird's eye view of the wide matrix landscape:

  • Learn (or recall) what a matrix is in math;
  • What the most important matrix types are, and
  • Find a large collection of links to (almost) all of our matrix calculators.

Enjoy!

What is a matrix in math?

A matrix is a fancy name for an array of numbers. An example of a matrix would be

A=[1234]\smallA = \begin{bmatrix}1 & 2 \\ 3 & 4\end{bmatrix}A=[1324]

Matrices have rows and columns. In matrix AAA above, the 1st row is [12][1\ 2][12] and the 2nd row is [34][3\ 4][34]. Its 1st column and 2nd columns read respectively

[13]and[24].\small\begin{bmatrix}1 \\ 3 \end{bmatrix} \text{ \scriptsize and } \begin{bmatrix}2 \\ 4 \end{bmatrix}.[13]and[24].

The number of rows and columns gives the dimensions of the matrix. In our example, AAA is a 2×22 \times 22×2 matrix with two rows by two columns.

Based on this dimension, we distinguish several types of matrices:

  • For a square matrix, the number of rows equals the number of columns.
  • A row matrix has only one row (hence the name) and several columns.
  • A column matrix has only one column and several rows.

❓ What type of matrix is AAA which we defined above?

Moreover, we say that a matrix has cells in which we write the elements of our array. For example, the cell in the 2nd row and the 1st column of AAA contains the value 333: the coordinates of this cell is (2,1)(2,1)(2,1) and we would notate it as a2,1=3a_{2,1} = 3a2,1=3.

Matrices are a convenient way to store and manipulate more data than just an individual number. And so now the question arises: what operations can we perform on matrices? Can we for instance add or multiply them like ordinary numbers?

Well, almost. Since lots of numbers are involved simultaneously, calculations with matrices are more tricky than with individual numbers. For instance, if we want to add them, we first have to make sure that we can — only matrices with the same dimensions can be added. And for multiplication, the dimension requirement is even trickier.

(Video) Matrix Multiplication Casio Fx 991ES PLUS

How to use this matrix calculator?

This matrix calculator is very straightforward to use. Here's how:

  1. The first few fields at the top of our matrix calculator help you pick the matrix operation you need. They are sorted logically, but don't worry — the whole list is next in the following section.
  2. Choose the matrix size. In this matrix solver only the dimensions 2×22\times22×2 and 3×33\times33×3 are available. More sizes are available in the calculators dedicated to the selected matrix operation — the specific link is displayed at the bottom.
  3. Enter the coefficients of your matrix and enjoy the result that appears immediately.
  4. For more info on the matrix operation you've just performed, visit the dedicated tool.

Matrix operations in math

Here we list all the matrix math operations available in our matrix solver. To discover more about them, follow the links to the dedicated calculators.

Math operations that act on one matrix (unary matrix operations)

  • Operations that return a number:

    • Trace;
    • Determinant;
    • Rank; and
    • Matrix norms.
  • Operations that return a matrix:

    • Inverse matrix;
    • Pseudoinverse (Moore Penrose inverse) matrix;
    • Adjoint (adjugate) matrix;
    • Cofactor matrix;
    • Power of a matrix;
    • Transpose;
    • Multiplication by a number;
    • Diagonalization.
  • Decompositions:

    • LU decomposition;
    • Singular values decomposition (SVD);
    • QR decomposition;
    • Cholesky decomposition; and
    • Polar decomposition.
  • Other:

    (Video) How to find determinant of 3x3 Matrix Using calculator _#engineersacademy #calculatortricks

    • Eigenvalues and eigenvectors;
    • Characteristic polynomial;
    • Singular values; and
    • Detecting matrix type (see the next section).

Math operations that act on two matrices (binary matrix operations)

  • Addition and subtraction;
  • Multiplication (matrix by matrix);
  • Kronecker (tensor) product; and
  • Hadamard (entrywise) product.

What are the types of matrices in math?

The most popular special types of matrices are the following:

  • Diagonal;
  • Identity;
  • Triangular (upper or lower);
  • Symmetric;
  • Skew-symmetric;
  • Invertible;
  • Orthogonal;
  • Positive/negative definite; and
  • Positive/negative semi-definite.

Let's briefly define each of the matrix types that we mentioned above.

  • Diagonal matrix

    Square matrices that have non-zero coefficients only in the diagonal cells. It's very easy to compute its powers.

  • Identity matrix

    This is a diagonal matrix that has only ones on its diagonal and zeroes everywhere else. It's everyone's favorite matrix when it comes to matrix multiplication, because it leaves the other matrix unchanged — much like multiplying a number with 111!

  • Triangular matrix (upper or lower)

    A square matrix with non-zero coefficients on the diagonal and above the diagonal (if it's upper triangular) or below the diagonal (if lower triangular).

    Its determinant coincides with the product of the diagonal values. Often appears in matrix decompositions and numerical methods.

    (Video) Ti 84 Tutorial, Solve 3 by 3 System of Equations by Matrix (rref!)

  • Symmetric matrix

    A square matrix that is symmetric with respect to its diagonal, i.e., aj,i=ai,ja_{j,i}=a_{i,j}aj,i=ai,j for all i,j=1,,ni,j=1, \ldots, ni,j=1,,n. In words: the coefficient in iii-th row and jjj-th column equals the coefficient of jjj-th row and iii-th column. Such a matrix has real eigenvalues and an orthonormal eigenbasis.

  • Skew-symmetric (antisymmetric) matrix

    A square matrix whose entries satisfy aji=aija_{ji}=-a_{ij}aji=aij. It follows that the diagonal elements are all equal to zero, because only ai,i=0a_{i,i}=0ai,i=0 can satisfy ai,i=ai,ia_{i,i} = -a_{i,i}ai,i=ai,i. The trace of an antisymmetric matrix is therefore always equals zero.

  • Invertible matrix

    A square matrix that has an inverse, i.e., AAA is invertible if there exists BBB such that AB=BA=IAB = BA = IAB=BA=I, where III is the identity matrix. The determinant of an invertible matrix is always non-zero.

  • Orthogonal matrix

    This is a square matrix whose columns constitute a set of orthonormal vectors (and its vectors form such a set as well). Equivalently we can say that a matrix is orthogonal if its transpose coincides with its inverse. The determinant of an orthogonal matrix is equal to 111 or 1-11.

  • Definite matrices

    All the matrices we consider below are symmetric (or Hermitian). xTx^{T}xT denotes the (Hermitian) transpose of xxx (whether xxx is a vector or a matrix).

    • Positive semi-definite matrix
      A matrix AAA is positive semi-definite if xTAx0x^{{T}}Ax\geq 0xTAx0 for every vector xxx.

      Only positive semi-definite matrices have real and non-negative eigenvalues, and all positive semi-definite matrices have such eigenvalues.

    • Positive definite matrix
      A matrix AAA is positive definite if xTAx>0x^{ {T}}Ax > 0xTAx>0 for every non-zero vector xxx.

      (Video) Solve Matrix - Manual for TI-84 Plus CE Graphing Calculator

      Only positive definite matrices have real and positive eigenvalues, and all positive definite matrices have such eigenvalues.

    • Negative semi-definite matrix
      A matrix AAA is positive semi-definite if xTAx0x^{ {T}}Ax\leq 0xTAx0 for every vector xxx.

      Negative semi-definite matrices are exactly those matrices whose eigenvalues are all real and non-positive.

    • Negative-definite matrix
      A matrix AAA is negative definite if xTAx<0x^{ {T}}Ax < 0xTAx<0 for every non-zero vector xxx.

      Negative definite matrices are exactly those matrices whose eigenvalues are all real and negative.

FAQ

How do I determine the type of matrix in math?

Certain types of matrices in maths are easy to detect, while other types are more intricate. Here are a few tips on how to detect matrix type:

  1. Start by just looking at the matrix structure: Is it diagonal? Symmetric? Triangular?
  2. Other types depend on deeper properties — check the eigenvalues, inverse, transpose, product of transpose and the initial matrix, etc.
  3. Use advanced math software, e.g., Omni's matrix solver, to help you detect the type of your matrix.

How many matrix operations are there in math?

No one really knows, but there's a lot of them. Scientists come up with new matrix operations which help them deal with different problems related to matrices and their applications in real life. Remember that matrix operations can act on one or more matrices, and they can return another matrix, multiple matrices, or a single number/vector, or a set of numbers/vectors or a polynomial, etc. The possibilities are endless!

What are the real life applications of a matrix?

Because matrices are a perfect way to deal with lots of numbers simultaneously, they are extremely useful in many domains of our modern, data-laden life. Real-life matrix applications include:

(Video) Matrix multiplication #casio #shorts #calculator #matrix

  • 3D graphics, e.g. in games;
  • Cryptography and data science;
  • Economics and econometrics;
  • Engineering and construction;
  • Electronics, and
  • Physics in general.

Videos

1. MATRICES USING CASIO FX- 991 EX CALCULATOR | FEM | ALTERNATIVE METHOD WITH SIMULTANEOUS EQUATIONS
(Joy in Everything)
2. Multiplication of a matrix using fx-991 MS calculator
(gnana saath)
3. How to multiply matrix in Casio fx -991EX calculator
(NERDY Is the name)
4. Calculator Hacks - পর্ব ১ || Matrix & Determinant - ম্যাট্রিক্স || Fx 991 Ex and Es Plus
(Math & Science Nerds)
5. Matrix: Solution Of System Of Linear Equations By Adjoint Method Using Calculator
(Your Engineer Friend)
6. 3*3 Matrix Multiplication Using calculator Casio fx 991Es plus
(Ezoom Academy)

References

Top Articles
Latest Posts
Article information

Author: Kimberely Baumbach CPA

Last Updated: 09/06/2023

Views: 5567

Rating: 4 / 5 (41 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Kimberely Baumbach CPA

Birthday: 1996-01-14

Address: 8381 Boyce Course, Imeldachester, ND 74681

Phone: +3571286597580

Job: Product Banking Analyst

Hobby: Cosplaying, Inline skating, Amateur radio, Baton twirling, Mountaineering, Flying, Archery

Introduction: My name is Kimberely Baumbach CPA, I am a gorgeous, bright, charming, encouraging, zealous, lively, good person who loves writing and wants to share my knowledge and understanding with you.