Mathematics Exam  >  Mathematics Notes  >  Mathematics for IIT JAM, GATE, CSIR NET, UGC NET  >  Matrices & Determinants: Matrix Algebra - 1

Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET PDF Download

Matrices - Introduction

A matrix A over a field K or, simply, a matrix A (when K is implicit) is a rectangular array of scalars usually presented in the following form:

Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET

  • The rows of such a matrix A are the m horizontal lists of scalars: (a11, a12, ..., a1n), (a21, a22, ..., a2n), ..., (am1, am2, ..., amn).
    and the columns of A are the n vertical lists of scalars:
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
  • Note that the element aij, called the ij-entry or ij-element, appears in row i and column j.
    We frequently denote such a matrix by simply writing A = [aij].
  • A matrix with m rows and n columns is called an m by n matrix, written m * n. The pair of numbers m and n is called the size of the matrix. 
  • Two matrices A and B are equal, written A = B, if they have the same size and if corresponding elements are equal. Thus the equality of two m * n matrices is equivalent to a system of mn equalities, one for each corresponding pair of elements.
  • A matrix with only one row is called a row matrix or row vector and a matrix with only one column is called a column matrix or column vector. 
  • A matrix whose entries are all zero is called a zero matrix and will usually be denoted by 0.
  • Matrices whose entries are all real numbers are called real matrices and are said to be matrices over R. 
  • Analogously, matrices whose entries are all complex numbers are called complex matrices and are said to be matrices over ℂ.

Example:

  1. The rectangular array Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET is a 2 x 3 matrix. Its rows are (1, - 4 , 5)  and (0,3, 2), and its columns are Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
  2. The 2 x 4 zero matrix is the matrix Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET.

Question for Matrices & Determinants: Matrix Algebra - 1
Try yourself:The order of matrix [2 3] is 
View Solution

Algebra of matrix

Matrix Addition and Scalar Multiplication

Let A = [ aij and B = [bij] be two matrices with the same size , say m * n matrices. The sum of A and B, written A + B, is the matrix obtained by adding corresponding elements from A and B. That is,

Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET

The product of the matrix A by a scalar k, written k • A or simply kA, is the matrix obtained by multiplying each element of A by k. That is,
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
Observe that A + B and kA are also m * n matrices. We also define-A= (-1) A and A - B = A + (-B)
The matrix - A is called the negative of matrix A, and the matrix A - B is called the difference of A and B. The sum of matrices with different sizes is not defined.

Example:

Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET

The matrix 2A - 3B is called a linear combination of A and B.
The basic properties of matrices under the operations of matrix addition and scalar multiplication are as follows:
Consider any matrices A, B, and C (with the same size) and any scalars k and k’. Then:
(i) (A + B) + C = A + (B + C ),
(ii) A + 0 = 0 + A = A,
(iii) A + (- A) = (- A) + A = 0,
(iv) A + B = B + A,
(v) k(A + B) = kA + kB,
(vi) (k + k’)A = kA + k’A,
(vii) (k k’)A = k (k’A),
(viii) 1· A = A.

Matrix Multiplication

The product of matrices A and B, written AB, is somewhat complicated. For this reason, we first begin with a special case.
The product AB of a row matrix A = [an] and a column matrix B = [bn] with the same number of elements is defined to be the scalar (or 1 * 1 matrix) obtained by multiplying corresponding entries and adding; that is,
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
We emphasize that AB is a scalar (or a 1 x 1 matrix). Product AB is not defined when A and B have different numbers of elements.
Example of product AB of a row matrix and a column matrix:
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET

Method of multiplication of two matrices

Suppose A = [aik] and B = [bkj] are matrices such that the number of columns of A is equal to the number of rows of B; say, A is an m * p matrix and B is a p * n matrix. Then the product AB is the m x n matrix whose ij-entry is obtained by multiplying the ith row of A by the jth column of B. That is,
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET

where
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
The product AB is not defined if A is an m * p matrix and B is a q * n matrix.
Theorem: Let A, B, and C be matrices. Then, whenever the products and sums are defined:
(i) (AB)C = A(BC) (associative law),
(ii) A(B + C) = AB + AC (left distributive law),
(iii) (B + C)A = BA + CA (right distributive law),
(iv) k(AB) = (kA)B = A(kB), where k is a scalar.
We note that OA = 0 and BO = 0, where 0 is the zero matrix.

Transpose of a Matrix

The transpose of a matrix A, written AT, is the matrix obtained by writing the columns of A, in order, as rows. For example,
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET

  • In other words, if A = [aij] is an m * n matrix, then AT = [bij] is the n * m matrix where bij = aji.
  • Observe that the transpose of a row vector is a column vector. 
  • Similarly, the transpose of a column vector is a row vector.

The next theorem lists the basic properties of the transpose operation.
Theorem: Let A and B be matrices and let k be a scalar. Then, whenever the sum and product are defined:
(i) (A + B)T = AT + BT,
(ii) (AT)T = A,
(iii) (kA)T = kAT,
(iv) (AB)T = BTAT.

Square Matrices

A square matrix is a matrix with the same number of rows as columns. An n * n square matrix is said to be of order n and is sometimes called an n-square matrix.

Example: The following are square matrices of order 3.
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
The following are also matrices of order 3:Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NETMatrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET

Question for Matrices & Determinants: Matrix Algebra - 1
Try yourself: The matrix Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET is a
View Solution

Diagonal and Trace

Let A = [ aij] be an n-square matrix. The diagonal or main diagonal of A consists of the elements with the same subscripts, that is, a11, a22, a33, ... ann.
The trace of A, written tr(A), is the sum of the diagonal elements. Namely, tr(A) = a11+ a22+ a33+ ...+ ann
The following theorem applies.
Theorem: Suppose A = [aij] and B = [bij] are n-square matrices and k is a scalar. Then:
(i) tr(A + B) = tr(A) + tr(B),
(ii) tr(kA) = k tr(A),
(iii) tr(AT) = tr(A),
(iv) tr(AB) = tr(BA).

Example:
Let
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
Diagonal of A = {1, -4, 7} and tr(A) = 1 - 4 + 7 = 4. Diagonal of B = {2, 3, -4} and tr(B) = 2 + 3 - 4 = 1
Moreover,
tr(A + B ) = 3 - 1 + 3 = 5.
tr(2A) = 2 - 8 + 14 = 8.
tr(AT) = 1 -4 + 7 = 4
tr(AB) = 5 + 0 - 35 = -30,
tr(BA) = 27 - 24 - 33 = -30
As expected from Theorem,
tr(A + B) = tr(A) + tr(B),
tr(AT) = tr(A), tr(2A) = 2 tr(A)  
Furthermore, although AB * BA, the trace are equal.

Power of Matrices, Polynomials in Matrices

Let A be an n-square matrix over a field K. Powers of A are defined as follows:
A2 = AA,  A3 = A2A,  ... , An+1 = An A, ....,  and A= I
Polynomials in matrix A are also defined. Specifically, for any polynomial
f(x) = a0 + a1x + a2x2 +...+ anxn
where the ai are scalars in K, f(A) is defined to be the following matrix:
f(x) = a0I + a1A + a2A2 +...+ anAn

Note - f(A) is obtained from f(x) by substituting the matrix A for the variable x and substituting the scalar matrix a0l for the scalar a0. If f(A) is the zero matrix, then A is called a zero or root of f(x).

Example: Suppose Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET Then

Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET

Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
Suppose f(x) = 2x2 - 3x + 5 and g(x) = x2 + 3x - 10. Then
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
Thus A is a zero of the polynomial g(x).

Types of Matrices

  • Row Matrix: If a matrix has only one row and any number of columns, is called a Row matrix, or a row vector. Example - [2 7 3 9] is a row matrix.
  • Column Matrix: A matrix having one column and any number of rows is called a column matrix or a column vector. Example: Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET is a column matrix.
  • Null Matrix or Zero Matrix: Any matrix in which all the elements are zeros is called a Zero matrix or Null matrix, i.e., Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET. In general, an m * n matrix in which each element is zero is called a null matrix of the type m * n and is denoted by Om*n.
  • Square Matrix: A matrix in which the number of rows is equal to the number of columns is called a square matrix i.e. A = (aij)m*n is a square matrix if and only if m=n.
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET  are square matrices.
  • Diagonal Matrix: A square matrix is called a diagonal matrix if all its non-diagonal elements are zero i.e. in general a matrix A = (aij)mxn is called a diagonal matrix if aij = 0 for i ≠ j;
    for example Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET is a diagonal matrix of order 3 * 3.
  • Unit or Identity Matrix: A square matrix is called a unit matrix if all the diagonal elements are unity and non-diagonal elements are zero.
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET are Identity matrices of order 3 x 3 and 2 * 2 respectively.
    The identity matrix I is similar to the scalar 1 in that, for any n-square matrix A,
    Al = IA = A.More generally, if B is an m x n matrix, then Bln = lmB = B.
  • Symmetric Matrix: A square matrix is called symmetric if for all values of i and j, aij = aji .
    ⇒ A’ = A i.e. transpose of the matrix A = A ;
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET is a symmetric matrix of order 3 * 3.
  • Skew Symmetric Matrix: A square matrix is called a skew-symmetric matrix if aij = -aji, for all values of i and j and all its diagonal elements are zero.
    ⇒ A’ = - A i.e. transpose of the matrix A = -A;
    example. Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET is a skew-symmetric matrix of order 3 x 3.
  • Triangular Matrix: A square matrix, in which all its elements below the leading diagonal are zero, is called an upper triangular matrix while a square matrix, all of whose elements above the leading diagonal are zero, is called a lower triangular matrix.
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
  • Transpose of Matrix: As discussed above if in a given matrix, we interchange the rows and the corresponding columns, the new matrix obtained is called the transpose of the matrix A and is denoted by A or At or AT.
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NETMatrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
  • Orthogonal Matrix: A square matrix A is called an orthogonal matrix if the product of matrix A with its transpose matrix A’ is an identity matrix.
    i.e. AA’ = I.
    Question for Matrices & Determinants: Matrix Algebra - 1
    Try yourself:The matrix Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET is a
    View Solution
  • Conjugate of a Matrix: A conjugate matrix of a matrix is obtained by replacing each term with its complex conjugate. Complex conjugate means that the sign of the imaginary part of all its complex numbers has been changed. The Conjugate of a matrix is denoted by the bar over the name of the matrix as Ā.
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
    ∴ Conjugate of matrix
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NETMatrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
  • Conjugate Transpose of a Matrix, Aθ: Transpose of the conjugate of a matrix A is denoted by Aθ.
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NETwe haveMatrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NETandMatrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
  • Unitary Matrix: A square matrix A is said to be unitary if we have AθA =1
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NETRemarks
    • A real matrix is unitary if and only if it is orthogonal.
    • If P is unitary so Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET are also unitary.
    • If P and Q are unitary so PQ is unitary multiple.
    • If P is unitary, then I P I  is of unit modulus.
    • Any two Eigen vectors corresponding to the distinct Eigen values of a unitary matrix are orthogonal.
    • If P is orthogonal so PT and P-1 are also orthogonal.
    • If P and Q are orthogonal so PQ is also orthogonal.
    • If P is orthogonal, then IPI = ± 1.
  • Hermitian Matrix: A square matrix A = (aij) is said to be Hermitian Matrix if every i - jth element of A is equal to the conjugate complex of j - ith element of A, or in order words Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NETMatrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
    The necessary and sufficient condition for the matrix A to be Hermitian is that A = Aθ i.e. conjugate transpose of Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET.
  • Skew Hermitian Matrix: A square A = (aij) is said to be a Skew Hermitian matrix if every i-jth element of A is equal to the negative conjugate complex of j-ith element of A; i.e Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET All the elements of the principal diagonal are of the formMatrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET.
    Hence aij is purely imaginary i.e. aij = 0 + ib or aij = 0.
    i.e. all the diagonal element of a Skew Hermitian Matrix are either zeros or pure imaginary.
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
    Thus the necessary and sufficient condition for a matrix A to be Skew Hermitian is thatMatrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
    Properties
    • If A is a Skew-Hermitian matrix, then kA is also Skew-Hermitian for any real number k.
    • If A and B are Skew-Hermitian matrices of same order, then λ1A +λ2B is also Skew Hermitian for real number λ1,λ2.
    • If A and B are Hermitian matrices of same order, then AB-BA is Skew-Hermitian.
    • If A is any square matrix, then A - A* is Skew-Hermitian matrices.
    • Every square matrix can be uniquely represented as the sum of a Hermitian and a Skew Hermitian matrices.
    • If A is a skew-Hermitian (Hermitian) matrix, then iA is a Hermitian matrix, then Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET also Skew-Hermitian (Hermitian).
  • Idempotent Matrix: A matrix such that A2 = A is called Idempotent Matrix.
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
  • Periodic Matrix: A matrix A is said to be a Periodic Matrix if Ak+1 = A, where k is a +ve integer. If k is the least +ve integer for which Ak +1 = A, then k is said to be the period of A. If we choose k = 1, then A2 = A and we call it to be an idempotent matrix.
  • Involutory Matrix: A matrix A is said to an involutory matrix if A2 = I (unit matrix). Since A2 = I always for unit matrix, we conclude that the unit matrix is always involutory.
  • Nilpotent Matrix: A matrix is said to be a Nilpotent matrix if Ak = 0 (null matrix) where k is +ve integer; if however k is the least +ve integer of which Ak = 0, then k is called the index of the nilpotent matrix.
    The matrix Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET is nilpotent and its index is 2.
  • Submatrix: A matrix obtained from a given matrix, say A = (aij)mxn by deleting some rows or columns or both is called a submatrix of A.
  • Principal diagonal: The elements a11, a33, ..., amn of a square matrix of order m*m are called diagonal elements and the diagonal containing these elements is called the principal diagonal.  In a square matrix (aij)m x m, aij is the diagonal element if i = j.
  • Scalar Matrix: For any scalar k, the matrix kl that contains k’s on the diagonal and 0's elsewhere is called the scalar matrix corresponding to the scalar k. Observe that
    (kl)A = k(IA) = kA. That is, multiplying a matrix A by the scalar matrix kl is equivalent to multiplying A by the scalar k.
    Example : The following are the identity matrices of orders 3 and 4 and the corresponding scalar matrices for k = 5;
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET
    Remark 1: It is common practice to omit blocks or patterns of 0's when there is no ambiguity, as in the above second and fourth matrices.
    Remark 2: The Kronecker delta function δij is defined by
    Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NETThus the identity matrix may be defined by I = [δij]

Equal Matrices

Two matrices are equal if 

  1. They are of the same order.
  2. The elements in the corresponding positions are equal.

Thus if Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET Here A = B.

In general if A = (aij)m x d and B = (bij)m x n are matrices each of order m * n and aij = bij for all i and j then A = B.

Note: 

  1. An orthogonal matrix P is said to be proper if IPI = 1, improper if IPI = - 1.
    Clearly, P-1 is proper of both improper, the PQ is proper if PQ is improper then one of P, Q is improper.
  2. A square matrix is unitary if and only if its columns (rows) form an orthogonal set of unit vectors.
  3. A square matrix is orthogonal if and only if its columns (rows) form an orthogonal set of unit vectors.
  4. Let x, be any unit n-vector. Then there exists a unitary matrix U having x1 as its first column.
The document Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM, GATE, CSIR NET, UGC NET is a part of the Mathematics Course Mathematics for IIT JAM, GATE, CSIR NET, UGC NET.
All you need of Mathematics at this link: Mathematics
556 videos|198 docs

FAQs on Matrices & Determinants: Matrix Algebra - 1 - Mathematics for IIT JAM, GATE, CSIR NET, UGC NET

1. What is the algebra of matrices?
Ans. The algebra of matrices refers to the set of operations and rules that can be applied to matrices, such as addition, subtraction, multiplication, and scalar multiplication. These operations follow specific properties and rules, allowing for calculations and manipulations of matrices.
2. What are the types of matrices?
Ans. There are several types of matrices, including: - Square matrices: Matrices with an equal number of rows and columns. - Rectangular matrices: Matrices with a different number of rows and columns. - Row matrices: Matrices with only one row. - Column matrices: Matrices with only one column. - Diagonal matrices: Matrices where all non-diagonal elements are zero. - Identity matrices: Square matrices where all diagonal elements are one and all non-diagonal elements are zero. - Zero matrices: Matrices where all elements are zero.
3. How are matrices and determinants related?
Ans. Matrices and determinants are related because the determinant of a square matrix can be calculated using its elements. The determinant is a scalar value that provides information about the matrix, such as whether it is invertible or singular. The determinant is often used in various applications, such as solving systems of linear equations and finding the area/volume of geometric shapes.
4. What are some common operations in matrix algebra?
Ans. Some common operations in matrix algebra include: - Matrix addition: Adding corresponding elements of two matrices with the same dimensions. - Matrix subtraction: Subtracting corresponding elements of two matrices with the same dimensions. - Scalar multiplication: Multiplying every element of a matrix by a scalar (a constant). - Matrix multiplication: Multiplying two matrices to produce a new matrix with specific rules for element calculation. - Transposition: Interchanging rows and columns of a matrix. - Inverse: Finding the inverse of a square matrix, if it exists.
5. What is the significance of matrix algebra in mathematics?
Ans. Matrix algebra is significant in mathematics as it provides a powerful tool for solving systems of linear equations, representing and manipulating data, and solving problems in various fields such as physics, computer science, and engineering. Matrices allow for efficient computations and transformations, making them essential in diverse areas of mathematics and its applications.
556 videos|198 docs
Download as PDF
Explore Courses for Mathematics exam
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Previous Year Questions with Solutions

,

Free

,

Semester Notes

,

Extra Questions

,

Sample Paper

,

CSIR NET

,

study material

,

Summary

,

Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM

,

UGC NET

,

video lectures

,

Exam

,

CSIR NET

,

Important questions

,

pdf

,

GATE

,

mock tests for examination

,

Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM

,

UGC NET

,

GATE

,

MCQs

,

Viva Questions

,

practice quizzes

,

GATE

,

ppt

,

shortcuts and tricks

,

UGC NET

,

CSIR NET

,

Objective type Questions

,

Matrices & Determinants: Matrix Algebra - 1 | Mathematics for IIT JAM

,

past year papers

;