-
Notifications
You must be signed in to change notification settings - Fork 0
Introduction to Matrix
In mathematics, a matrix is a rectangular array or table of numbers, arranged in rows and columns, and enclosed by brackets ( )
or square brackets [ ]
, which is used to represent a mathematical object or a property of such an object. Numbers arranged in a matrix are called matrix's elements or entries.
Matrices are usually symbolized using upper-case letters, while the corresponding lower-case letters, with two subscript indices. Matrices are widely used in various fields, including mathematics, computer science, physics, and engineering, to represent and manipulate data.
Upper-case letters (
$A$ -$Z$ ) is to represent the matrix itself.
Lower-case letters with subscripts ($a_{m,n}$ or$a_{mn}$ ) is to represent the entry indices.
Matrix algebra is frequently implemented in geometry to express and represent geometric transformations (such as rotations as well as coordinate changes. Plenty of computational issues in numerical analysis are tackled by simplifying them to matrix computations, which frequently involve calculating with matrices of enormous scale. Matrices are employed in almost every branch of mathematics and science, either directly or indirectly through geometry and numerical analysis.
Row matrix is arrangement of numbers (elements) that are arranged in a horizontally manner. A row matrix has only one row with multiple columns.
The row matrix order is
- A row matrix consists of numerous columns.
- A row matrix also acts as a rectangular matrix.
- A column matrix is the transpose of a row matrix.
- Only row matrices of similar order or size are allowed to operate addition or subtraction.
- A row matrix is only capable of being multiplied by a column matrix.
- The numerous columns are according to how many elements there are in the matrix.
Column matrix is an arrangement of numbers (elements) that are arranged in a vertically manner. A column matrix has only one column with multiple rows.
The order of a column is
- A column matrix consists of numerous rows.
- A column matrix also acts as a rectangular matrix.
- A row matrix is the transpose of a column matrix.
- Only column matrices of similar order or size are allowed to operate addition or subtraction.
- A column matrix is only capable of being multiplied by a row matrix.
- The numerous rows are according to how many elements there are in the matrix.
The order of a matrix refers to the arrangement of elements in terms of the number of rows and columns present in the matrix, also known as the dimensions of the matrix.
If a matrix has
For example, let's consider matrix below:
The matrix above can be written as
For any questions or feedback about this wiki, please reach out to the project maintainer(s) or create a new issue.
- Ryuu Mitsuki (Author)
This project is licensed under the Apache License 2.0. Please review the license file for more details.
- JMatrix v1.3.0 (Latest)
- JMatrix v1.2.0
- JMatrix v1.1.0
- JMatrix v1.0.0
- JMatrix v0.2.0 (Outdated)
- JMatrix v0.1.0 (Outdated)