|
|||||||||||||||||
![]() |
![]() |
![]() |
|||||||||||||||
Matrix Size & Validation
Vector Algebra What is Vector? Vector Norm Unit Vector Vector Addition Vector Subtraction Vector Scalar Multiple Vector Multiplication Vector Inner Product Vector Outer Product Vector Cross Product Vector Triple Cross Product Vector Triple Dot Product Scalar Triple Product Orthogonal & Orthonormal Vector Cos Angle of Vectors Scalar and Vector Projection Matrix Algebra What is a matrix? Special Matrices Matrix One Null Matrix Matrix Diagonal Is Diagonal Matrix? Identity Matrix Matrix Determinant Matrix Sum Matrix Trace Matrix Basic Operation Is Equal Matrix? Matrix Transpose Matrix Addition Matrix Subtraction Matrix Multiplication Matrix Scalar Multiple Hadamard Product Horizontal Concatenation Vertical Concatenation Elementary Row Operations Matrix RREF Finding inverse using RREF (Gauss-Jordan) Finding Matrix Rank using RREF Matrix Inverse Is Singular Matrix? Linear Transformation Matrix Generalized Inverse Solving System of Linear Equations Linear combination, Span & Basis Vector Linearly Dependent & Linearly Independent Change of basis Matrix Rank Matrix Range Matrix Nullity & Null Space Eigen System Matrix Eigen Value & Eigen Vector Symmetric Matrix Matrix Eigen Value & Eigen Vector for Symmetric Matrix Similarity Transformation and Matrix Diagonalization Matrix Power Orthogonal Matrix Spectral Decomposition Singular Value Decomposition Resources on Linear Algebra |
What is Vector? When you measure a physical quantity, you may get a number or a sequence of numbers in particular order. A single number quantity to represent only the magnitude or the value of your measurement is called a scalar. Example: when you measure mass, work, speed, energy, temperature, density, and time and so on you will get a single number. Scalars can be compared only if they have the same units. For instance, you can compare a speed in km/hour with another speed in km/hour but you cannot compare a speed with a density. A sequence of scalar numbers in certain order is called an array. Example: when you repeat your measurement in a day and record them in a sequence, you get an array of measurements. An array of arrays that you arrange the scalar numbers into a rectangular table is called a matrix. Example: you repeat your measurements on different day and each day you measure exactly the same number of measurements, then you can put them into a table, that table is called a matrix. Thus, a matrix consists of m rows and n columns. You will learn more about matrix in later section of this linear algebra tutorial. A special case of a matrix where it has only one row or one column is called a vector. Thus, from the arrangement point of view, a vector is just an array. But why don’t we just call it an array instead of a vector? There is something special about vector. What is so distinctive about vector? You will find out more about vector in this section of the tutorial. Before we go to the definition of a vector, let us take a look from how we distinct an array and a vector from computational point of view. In a computer program, an array is represented as a sequence of numbers in one dimensional array such as arr = [1, 2, 3, 4, 5]. We can take the first element (usually elements of array start counting from zero) is arr[0] = 1, the second element is arr[1] = 2 and the last element is arr[4] = 5. A vector is represented as two-dimensional array and element of vector is start counting from 1 (at least from the theory). The same array above if represented as a vector becomes vec = [1, 2, 3, 4, 5] and we should show the vector as
Having distinguished an array from a vector, now we are ready to define what vector is. A vector is defined as a quantity that requires both magnitude and direction in space. Examples of vector are displacement, velocity, acceleration, force, momentum, electric field and so on. Vectors can be compared if they have the same physical units and geometrical dimensions. For instance, you can compare 2-dimensional force with another 2-dimensional force but you cannot compare 2-dimensional force with 3-dimensional force. Similarly, you cannot compare force with velocity because they have different physical units. The total number of elements in a vector is called the dimension or the size of the vector. Since a vector can have The magnitude of a vector is sometimes called the length of a vector, or norm of a vector. The direction of a vector in space is measured from another vector (i.e. standard basis vector), represented by the cosine angle between the two vectors. The very simple interactive program below is designed to answer question whether your input is a vector or not according to the specified format of the program. Try to type your own input or use random example. Unlike ordinary arrays, vectors are special that we can be viewed vectors in both algebra and geometric point of view. Algebraically, a vector is just array of scalar elements. From computational point of view, a vector is represented as 2-dimensional array while ordinary array is represented as 1 dimensional array, as I have explained above.
There is more about vector in geometry. A vector can also be represented a point in space. When a vector is represented as a point in space, we can also view that vector as an arrow starting at the origin of a coordinate system pointing toward the point. Because the coordinate system does not change, we only need to draw the points without the arrows.
See Also: What is Matrix?, Resources on Linear Algebra Rate this tutorial or give your comments about this tutorial Preferable reference for this tutorial is Teknomo, Kardi (2011) Linear Algebra tutorial. http:\\people.revoledu.com\kardi\ tutorial\LinearAlgebra\ |
|||||||||||||
|
||||||||||||||
|
||||||||||||||