A Review Paper On Matrices and Its Applications
A Review Paper On Matrices and Its Applications
---------------------------------------------------------------------------------------------------------------------------------------
Submitted: 01-02-2022 Revised: 07-02-2022 Accepted: 10-02-2022
---------------------------------------------------------------------------------------------------------------------------------------
ABSTRACT: -Vector algebra, differential
calculus, integration, discrete mathematics, 1 3
2*2
matrices, and determinants are the future 7 5
classifications for mathematics. Matrix 1 2 3
mathematics is used in a variety of scientific fields 2 3 6 3*3
as well as in differential mathematics. In matrix, we 4 11 2
Transpose of a matrix: The transpose of a matrix is
must learn about matrix addition, subtraction, and
A= (aij)m*n and is denoted as aT that is, aT =
multiplication. Matrices theory is used to answer
(aij)n*m. [2]
economic challenges involving the most
Example:
economical technique of producing commodities. 1 4
Very sensitive information must be encoded and 1 2 3 T
A= 2*3A = 2 5 3*2
decoded. We also covered the 3*3 linear system of 4 5 6
3 6
equations utilising the row deduction approach in
the matrix equation. This paper also discusses II. OPERATION WITH MATRICES
matrices and how they are used. Matrix theories are SUM:If A and B have the same dimension, the
used to discover economic challenges involving the sum, A+B, can be calculated by adding the
technique by which things can be produced respective entries. (A+B) = aij + bij in symbols. [3]
effectively and correctly. The influence of matrices A =
in the mathematical world is wide because it a b p q
provides an important foundation for many of the B =
c d
2*2
r s 2*2
principles and practises. To unravel the history of a+ p b+q
A+B = 2*2
matrices and their applications, the influence of c+r d+s
matrices in the mathematical world is wide because Example: -
it provides an important base for many of the 7 8 9
A=
principles and practises. This paper also discusses 6 8 9 2*3
about future development and we use this concept 5 4 8
B=
in our everyday life. In this paper we solve matrix 3 2 9 2*3
A+B=
problem by using software which is MATLAB to 12 12 17
show this by programming method. This paper also 9 10 18 2*3
discusses in field of physics, zoology, and MATLAB coding: -
animation. >> clear all
Keywords: matrix, determinant, linear system, >> close all
matrix algebra, MATLAB. >> x1 = [7 8 9; 6 8 9]
x1 =
I. INTRODUCTION 7 8 9
Matrices is a rectangular arrangement of any 6 8 9
number of elements in certain number of rows and >> x2 = [ 5 4 8;3 2 9]
columns within a parenthesis or square bracket.[1] x2 =
Matrix order: If a matrix has 'n' columns and 'm' 5 4 8
rows, its order is m*n. 3 2 9
Example >> x3 = x1+x2
DOI: 10.35629/5252-0402535539 Impact Factor value 7.429 | ISO 9001: 2008 Certified Journal Page 535
International Journal of Advances in Engineering and Management (IJAEM)
Volume 4, Issue 2 Feb 2022, pp: 535-539 www.ijaem.net ISSN: 2395-5252
x3 = 2 3 4 5
12 12 17 4 5 6 6
9 10 18 -6 0 -1 -2
>> 5*matrix1
DIFFERENCE: If A and B have the same Ans =
dimensions, the difference between them, A-B, is 10 15 20 25
calculated by subtracting the corresponding entries. 20 25 30 30
(A-B)ij = aij - bij in symbols. [4] -30 0 -5 -10
a b
A = B =
c d 2*2 PRODUCT: If A has dimension k*m and B has
p q
dimension m*n, then the product AB is defined,
r s 2*2
A−B and has dimensions k*n. The entry (AB)ijis
a− p b−q obtained by multiplying corresponding entries
= 2*2 together and then adding the result i.e.,[5]
c−r d−s
2 4 6 (ai1 ai2 ………… aim) b1j
Example: - A= B=
3 4 5
2*3
b2j = ai1b1j + ai2b2j + ……. + aimbmj
2 3 4 M
1 2 3 2*3 Bmj
A−B=
0 1 2 5 3 2 1 4
2 2 2 2*3 Example: -A = 4 6 8 = 2 5
3*3 B 3*2
MATLAB coding: -
>> clear all 7 2 1 3 6
>> close all A*B =
>> X1 = [2 4 6; 3 4 5] 54 67
X1 = 116 140 3*2
2 4 6 48 60
3 4 5 MATLAB Coding: -
>> X2 = [2 3 4; 1 2 3] >> clear all
X2 = >> close all
2 3 4 >> X1 = [5 3 2; 4 6 8; 7 2 1]
1 2 3 X1 =
>> X3 = X1-X2 5 3 2
X3 = 4 6 8
0 1 2 7 2 1
2 2 2 >> X2 = [4 5; 6 8; 8 9]
X2 =
SCALAR MULTIPLICATION: If A = (aij)m*n 4 5
be any matrix and ‘r’ be any scalar then scalar 6 8
multiplication of ‘A’ is denoted as A = r[aij]m*n. 8 9
A = >> X3 = X1*X2
a b X3 =
c d 2*2 54 67
ra rb
rA = 116 140
rc rd 2*2
2 3 4 5 48 60
Example: - A= 4 5 6 6 3*4
−6 0 −1 −2 III. LAWS OF MATRIX ALGEBRA
r=5 The matrix addition, subtraction, scalar
multiplication and matrix multiplication, have the
10 15 20 25 following properties. [6]
rA = 20 25 30 30 3*4 ASSOCIATIVE LAWS:
−30 0 −5 −10 P + (Q + R) = (P+ Q) + R
MATLAB Coding: - (PQ) R = P (QR)
>> clear all
>> close all COMMUTATIVE LAW FOR
>> matrix1 = [2 3 4 5; 4 5 6 6; -6 0 -1 -2] ADDITION:
matrix1 =
DOI: 10.35629/5252-0402535539 Impact Factor value 7.429 | ISO 9001: 2008 Certified Journal Page 536
International Journal of Advances in Engineering and Management (IJAEM)
Volume 4, Issue 2 Feb 2022, pp: 535-539 www.ijaem.net ISSN: 2395-5252
DOI: 10.35629/5252-0402535539 Impact Factor value 7.429 | ISO 9001: 2008 Certified Journal Page 537
International Journal of Advances in Engineering and Management (IJAEM)
Volume 4, Issue 2 Feb 2022, pp: 535-539 www.ijaem.net ISSN: 2395-5252
of data, medical imaging is becoming a popular use of the Department Dr. Himami Goyal Sharma for
matrix in hospitals and research institutes. [12] providing excellent atmosphere throughout the
In programming for coding and session for completing this paper successfully. We
scrambling different messages is a key device s. in would like to take this opportunity to thank all
mechanical technology and in mechanization those who gave directly or indirectly their support
networks are the essential parts for our robot in completion of this work.
development. [13] The contributions for controlling
robots are gotten dependent on computation REFRENCES
through networks and they are exceptionally exact [1]. Anton, Howard (1987), Elementary Linear
minutes and it likewise utilized in different IT Algebra (5th ed.), New
organizations for information construction to York: Wiley, ISBN 0-471-84819-0
follow client data and it additionally perform such [2]. Arnold, Vladimir I.; Cooke,
questions and deal with the databases. [14] Roger (1992), Ordinary differential
In the universe of data security numerous equations, Berlin, DE; New York,
frameworks are intended to work with lattices and NY: Springer-Verlag, ISBN 978-3-540-
it additionally utilized in the pressure of electronic 54813-3
data for instance in an account of biometric [3]. Artin, Michael (1991), Algebra, Prentice
information in some countries.[15] Hall, ISBN 978-0-89871-510-1
In geography grids are utilized for making [4]. Association for Computing Machinery
the seismic overviews there utilized for plotting (1979), Computer Graphics, Tata McGraw–
charts measurements and to do logical Hill, ISBN 978-0-07-059376-3
investigations and examination in nearly [5]. Baker, Andrew J. (2003), Matrix Groups: An
characterize fields. Frameworks are likewise Introduction to Lie Group Theory, Berlin,
utilized in addressing this present reality DE; New York, NY: Springer-
information like the number of inhabitants in Verlag, ISBN 978-1-85233-470-3
individuals, baby death rate. For plotting the [6]. Bau III, David; Trefethen, Lloyd
diagram or review it is exceptionally helpful N. (1997), Numerical linear algebra,
technique to tackle the issue. [16] In economics Philadelphia, PA: Society for Industrial and
very large matrices are used for optimization Applied Mathematics, ISBN 978-0-89871-
problems for example in making the best use of 361-9
such Veda labor, traits, survey or capital in the [7]. Beauregard, Raymond A.; Fraleigh, John B.
manufacturing of a product and managing very (1973), A First Course In Linear Algebra:
large supply and it also used for calculating the with Optional Introduction to Groups, Rings,
GDP in best way.[17] and Fields, Boston: Houghton Mifflin
In the field of animation matrices are used to Co., ISBN 0-395-14017-X
design the 3D software and operation tools. [18] [8]. Bretscher, Otto (2005), Linear Algebra with
Applications (3rd ed.), Prentice Hall
VIII. CONCLUSIONS [9]. Bronson, Richard (1970), Matrix Methods:
Matrices is valuable and integral asset in An Introduction, New York: Academic
the numerical examination and gathering Press, LCCN 70097490
information. Other than the concurrent conditions, [10]. Bronson, Richard (1989), Schaum's outline
the qualities of the lattices are helpful in the of theory and problems of matrix operations,
programming where we placing in cluster that is a New York: McGraw–Hill, ISBN 978-0-07-
grid additionally to store the information. Finally, 007978-6
the frameworks are assuming vital part in the [11]. Brown, William C. (1991), Matrices and
software engineering, applied science, quantum vector spaces, New York, NY: Marcel
physical science and mechanical technology. So, Dekker, ISBN 978-0-8247-8419-5
we can oversee well of grid, then, at that point, we [12]. Coburn, Nathaniel (1955), Vector and tensor
can play simple in software engineering however analysis, New York, NY:
the network isn't straightforward. Macmillan, OCLC 1029828
[13]. Conrey, J. Brian (2007), Ranks of elliptic
IX. ACKNOWLEDGEMENT curves and random matrix
I would like to express our sincere theory, Cambridge University
gratitude and indebtedness to guide Er. Harvinder Press, ISBN 978-0-521-69964-8
Singh for his valuable suggestion throughout the [14]. Fraleigh, John B. (1976), A First Course In
course of this paper. We also thankful to the Head Abstract Algebra (2nd ed.),
DOI: 10.35629/5252-0402535539 Impact Factor value 7.429 | ISO 9001: 2008 Certified Journal Page 538
International Journal of Advances in Engineering and Management (IJAEM)
Volume 4, Issue 2 Feb 2022, pp: 535-539 www.ijaem.net ISSN: 2395-5252
Reading: Addison-Wesley, ISBN 0-201- Mathematics, 19 (2nd ed.), Berlin, DE; New
01984-1 York, NY: Springer-Verlag, ISBN 978-0-
[15]. Fudenberg, Drew; Tirole, Jean (1983), Game 387-90685-0, MR 0675952
Theory, MIT Press [21]. Horn, Roger A.; Johnson, Charles
[16]. Gilbarg, David; Trudinger, Neil R. (1985), Matrix Analysis, Cambridge
S. (2001), Elliptic partial differential University Press, ISBN 978-0-521-38632-6
equations of second order (2nd ed.), Berlin, [22]. Householder, Alston S. (1975), The theory
DE; New York, NY: Springer- of matrices in numerical analysis, New
Verlag, ISBN 978-3-540-41160-4 York, NY: Dover Publications, MR 0378371
[17]. Godsil, Chris; Royle, [23]. Kreyszig, Erwin (1972), Advanced
Gordon (2004), Algebraic Graph Theory, Engineering Mathematics (3rd ed.), New
Graduate Texts in Mathematics, 207, Berlin, York: Wiley, ISBN 0-471-50728-8.
DE; New York, NY: Springer- [24]. Krzanowski, Wojtek J. (1988), Principles of
Verlag, ISBN 978-0-387-95220-8 multivariate analysis, Oxford Statistical
[18]. Golub, Gene H.; Van Loan, Charles Science Series, 3, The Clarendon Press
F. (1996), Matrix Computations (3rd ed.), Oxford University Press, ISBN 978-0-19-
Johns Hopkins, ISBN 978-0-8018-5414-9 852211-9, MR 0969370
[19]. Greub, Werner Hildbert (1975), Linear [25]. Itô, Kiyosi, ed. (1987), Encyclopedic
algebra, Graduate Texts in Mathematics, dictionary of mathematics. Vol. I-
Berlin, DE; New York, NY: Springer- IV (2nd ed.), MIT Press, ISBN 978-0-262-
Verlag, ISBN 978-0-387-90110-7 09026-1, MR 0901762
[20]. Halmos, Paul Richard (1982), A Hilbert
space problem book, Graduate Texts in
DOI: 10.35629/5252-0402535539 Impact Factor value 7.429 | ISO 9001: 2008 Certified Journal Page 539