SlideShare ist ein Scribd-Unternehmen logo
1 von 9
BASIC CONCEPT OF MATRIX
DEFINITION OF MATRIX
 A matrix is an ordered rectangular array of numbers
that representation some data.
 A matrix on its own has no value – it is just a
representation of data.
 Forms the basis of computer programming.
TYPES OF MATRIX
 Row matrix : it having only one row. Ex- [ 1 4 5 ]
 Column matrix : it having only one column. Ex-
 Zero matrix : A matrix is called a zero matrix if all the
entries are 0. Ex-
 Square matrix: if number of rows is equal to number of
columns. Ex-
 Diagonal matrix: A square matrix is called diagonal matrix,
if all of its non-diagonal elements are zero.
Ex-
 Scalar matrix: A square matrix is called scalar matrix if
diagonal elements are same and other are “0”.
Ex-
TYPES OF MATRIX
 Identity/ unit matrix: A square matrix is identity if
diagonal entries are 1 and other are 0. Ex-
REPRESENTATION OF MATRIX
 A=[aij]M×N
 aij= element in row ‘i’ and column ‘j’ ,where ‘a’ is
an element in the matrix.
ADDITION OF TWO MATRICES
 When two matrices of same order are added, their
corresponding entries are added.
 Type equation here.,
 A =
𝟐 𝟒𝟓 𝟕𝟐
𝟔 𝟑 𝟎
𝟕 𝟗 𝟏𝟎
𝟑 × 𝟑 𝐁 =
𝟒𝟎 𝟕 𝟗
𝟔 𝟏 𝟐
𝟕 𝟐 𝟖
3×3
 A+B=
𝟐 𝟒𝟓 𝟕𝟐
𝟔 𝟑 𝟎
𝟕 𝟗 𝟏𝟎
+
𝟒𝟎 𝟕 𝟗
𝟔 𝟏 𝟐
𝟕 𝟐 𝟖
=
(𝟐 + 𝟒𝟎) (𝟒𝟓 + 𝟕) (𝟕𝟐 + 𝟗)
(𝟔 + 𝟔) (𝟑 + 𝟏) (𝟎 + 𝟐)
(𝟕 + 𝟕) (𝟗 + 𝟐) (𝟏𝟎 + 𝟖)
=
𝟒𝟐 𝟓𝟐 𝟖𝟏
𝟏𝟐 𝟒 𝟐
𝟏𝟒 𝟏𝟏 𝟏𝟖
3×3
 Only matrices of the same order can be added.
 Rule 1: A+B=B+A
SUBTRACTION OF TWO MATRICES
 When two matrices of same order are subtracted, their
corresponding entries are subtracted.
 A=
𝟏𝟖 𝟐𝟔 𝟏𝟐
𝟏𝟎 𝟏𝟏 𝟏𝟐
𝟖 𝟏𝟎 𝟏𝟔
𝟑 × 𝟑 𝐁 =
𝟕 𝟐 𝟏𝟓
𝟏𝟑 𝟑 𝟓
𝟓 𝟖 𝟗
3×3
 A-B=
𝟏𝟖 𝟐𝟔 𝟏𝟐
𝟏𝟎 𝟏𝟏 𝟏𝟐
𝟖 𝟏𝟎 𝟏𝟔
−
𝟕 𝟐 𝟏𝟓
𝟏𝟑 𝟑 𝟓
𝟓 𝟖 𝟗
=
(𝟏𝟖 − 𝟕) (𝟐𝟔 − 𝟐) (𝟏𝟐 − 𝟏𝟓)
(𝟏𝟎 − 𝟏𝟑) (𝟏𝟏 − 𝟑) (𝟏𝟐 − 𝟓)
(𝟖 − 𝟓) (𝟏𝟎 − 𝟖) (𝟏𝟔 − 𝟗)
=
𝟏𝟏 𝟐𝟒 −𝟑
−𝟑 𝟖 𝟕
𝟑 𝟐 𝟕
 B-A=
𝟕 𝟐 𝟏𝟓
𝟏𝟑 𝟑 𝟓
𝟓 𝟖 𝟗
−
𝟏𝟖 𝟐𝟔 𝟏𝟐
𝟏𝟎 𝟏𝟏 𝟏𝟐
𝟖 𝟏𝟎 𝟏𝟔
=
−𝟏𝟏 −𝟐𝟒 𝟑
𝟑 −𝟖 −𝟕
−𝟑 −𝟐 −𝟕
𝟑 × 𝟑
 Role 2: A-B ≠ B-A
MULTIPLICATION OF MATRICES
 In matrix multiplication, the production of m×n matrix. for,
example, matrix A is a 2×3 matrix and matrix B is a 3×4
matrix, then AB is a 2×4 matrices.
 A=
𝟎 𝟐
𝟐 𝟏
𝟑
𝟒
𝟐 × 𝟑 𝐁=
𝟏 𝟓 𝟖
𝟐 𝟔 𝟑
𝟏 𝟐𝟐 𝟏𝟏
𝟗
𝟏𝟎
𝟕
3× 𝟒
 AB= (𝟎 × 𝟏 + 𝟐 × 𝟐 + 𝟑 × 𝟏) (𝟎 × 𝟓 + 𝟐 × 𝟔 + 𝟑 × 𝟐𝟐)
(𝟐 × 𝟏 + 𝟏 × 𝟐 + 𝟒 × 𝟏) (𝟐 × 𝟓 + 𝟏 × 𝟔 + 𝟒 × 𝟐𝟐)
(𝟎 × 𝟖 + 𝟐 × 𝟑 + 𝟑 × 𝟏𝟏)
(𝟐 × 𝟖 + 𝟏 × 𝟑 + 𝟒 × 𝟏𝟏)
(𝟎 × 𝟗 + 𝟐 × 𝟏𝟎 + 𝟑 × 𝟕)
(𝟐 × 𝟗 + 𝟏 × 𝟏𝟎 + 𝟒 × 𝟕)
=
𝟕 𝟕𝟖
𝟖 𝟏𝟎𝟒
𝟑𝟗
𝟔𝟑
𝟒𝟏
𝟓𝟔
2× 𝟒
TRANSPOSE OF MATRIX
 Matrix formed by interchanging rows and columns of A
is called A transpose(A’).
THANKING YOU

Weitere ähnliche Inhalte

Ähnlich wie BASIC CONCEPT OF MATRIX.pptx

Matrices and Determinants
Matrices and DeterminantsMatrices and Determinants
Matrices and DeterminantsSOMASUNDARAM T
 
Operation on Matrices.pptx
Operation on Matrices.pptxOperation on Matrices.pptx
Operation on Matrices.pptxTsheringTashi23
 
Matrices and their applications
Matrices and their applicationsMatrices and their applications
Matrices and their applicationsZarghaam Abbas
 
Matrix and It's Applications
Matrix and It's ApplicationsMatrix and It's Applications
Matrix and It's ApplicationsPritom Chaki
 
Lesson 1 - Introduction to Matrices
Lesson 1 - Introduction to MatricesLesson 1 - Introduction to Matrices
Lesson 1 - Introduction to MatricesJonathan Templin
 
IB Maths SL Matrices
IB Maths SL Matrices IB Maths SL Matrices
IB Maths SL Matrices estelav
 
Project business maths
Project business mathsProject business maths
Project business mathsareea
 
introduction-MATRIX-algebramathematics .pptx
introduction-MATRIX-algebramathematics .pptxintroduction-MATRIX-algebramathematics .pptx
introduction-MATRIX-algebramathematics .pptxAngeliqueVicente3
 
Matrices
MatricesMatrices
Matriceskja29
 
systems of linear equations & matrices
systems of linear equations & matricessystems of linear equations & matrices
systems of linear equations & matricesStudent
 
Matlab ch1 (4)
Matlab ch1 (4)Matlab ch1 (4)
Matlab ch1 (4)mohsinggg
 
Rosalina Apriana - Math Compulsory Grade XI - Matriks
Rosalina Apriana - Math Compulsory Grade XI - MatriksRosalina Apriana - Math Compulsory Grade XI - Matriks
Rosalina Apriana - Math Compulsory Grade XI - MatriksRosalinaApriana
 
Matematika kelas XI semester 2 - Matriks fun mathematics
Matematika kelas XI semester 2 - Matriks fun mathematicsMatematika kelas XI semester 2 - Matriks fun mathematics
Matematika kelas XI semester 2 - Matriks fun mathematicsRosalinaApriana
 
Matrices y determinants
Matrices y determinantsMatrices y determinants
Matrices y determinantsJeannie
 
Matrix presentation By DHEERAJ KATARIA
Matrix presentation By DHEERAJ KATARIAMatrix presentation By DHEERAJ KATARIA
Matrix presentation By DHEERAJ KATARIADheeraj Kataria
 

Ähnlich wie BASIC CONCEPT OF MATRIX.pptx (20)

Unit i
Unit iUnit i
Unit i
 
Matrices and Determinants
Matrices and DeterminantsMatrices and Determinants
Matrices and Determinants
 
Matrices
MatricesMatrices
Matrices
 
Operation on Matrices.pptx
Operation on Matrices.pptxOperation on Matrices.pptx
Operation on Matrices.pptx
 
Matrices and their applications
Matrices and their applicationsMatrices and their applications
Matrices and their applications
 
Matrices 1.pdf
Matrices 1.pdfMatrices 1.pdf
Matrices 1.pdf
 
matrices and function ( matrix)
matrices and function ( matrix)matrices and function ( matrix)
matrices and function ( matrix)
 
Matrix and It's Applications
Matrix and It's ApplicationsMatrix and It's Applications
Matrix and It's Applications
 
M a t r i k s
M a t r i k sM a t r i k s
M a t r i k s
 
Lesson 1 - Introduction to Matrices
Lesson 1 - Introduction to MatricesLesson 1 - Introduction to Matrices
Lesson 1 - Introduction to Matrices
 
IB Maths SL Matrices
IB Maths SL Matrices IB Maths SL Matrices
IB Maths SL Matrices
 
Project business maths
Project business mathsProject business maths
Project business maths
 
introduction-MATRIX-algebramathematics .pptx
introduction-MATRIX-algebramathematics .pptxintroduction-MATRIX-algebramathematics .pptx
introduction-MATRIX-algebramathematics .pptx
 
Matrices
MatricesMatrices
Matrices
 
systems of linear equations & matrices
systems of linear equations & matricessystems of linear equations & matrices
systems of linear equations & matrices
 
Matlab ch1 (4)
Matlab ch1 (4)Matlab ch1 (4)
Matlab ch1 (4)
 
Rosalina Apriana - Math Compulsory Grade XI - Matriks
Rosalina Apriana - Math Compulsory Grade XI - MatriksRosalina Apriana - Math Compulsory Grade XI - Matriks
Rosalina Apriana - Math Compulsory Grade XI - Matriks
 
Matematika kelas XI semester 2 - Matriks fun mathematics
Matematika kelas XI semester 2 - Matriks fun mathematicsMatematika kelas XI semester 2 - Matriks fun mathematics
Matematika kelas XI semester 2 - Matriks fun mathematics
 
Matrices y determinants
Matrices y determinantsMatrices y determinants
Matrices y determinants
 
Matrix presentation By DHEERAJ KATARIA
Matrix presentation By DHEERAJ KATARIAMatrix presentation By DHEERAJ KATARIA
Matrix presentation By DHEERAJ KATARIA
 

Mehr von CHIRANTANMONDAL2

eukaryotik dna elongation.pptx
eukaryotik dna elongation.pptxeukaryotik dna elongation.pptx
eukaryotik dna elongation.pptxCHIRANTANMONDAL2
 
DNA IS GENETIC METERIAL.pptx
DNA IS GENETIC METERIAL.pptxDNA IS GENETIC METERIAL.pptx
DNA IS GENETIC METERIAL.pptxCHIRANTANMONDAL2
 
DNA IS GENETIC MATERIAL(Experimental Proof).pptx
DNA IS GENETIC MATERIAL(Experimental Proof).pptxDNA IS GENETIC MATERIAL(Experimental Proof).pptx
DNA IS GENETIC MATERIAL(Experimental Proof).pptxCHIRANTANMONDAL2
 
DNA Repair Mechanism And Their Types .pptx
DNA Repair Mechanism And Their Types .pptxDNA Repair Mechanism And Their Types .pptx
DNA Repair Mechanism And Their Types .pptxCHIRANTANMONDAL2
 
DNA REPAIR MECHANISM AND THEIR TYPES.pptx
DNA REPAIR MECHANISM AND THEIR TYPES.pptxDNA REPAIR MECHANISM AND THEIR TYPES.pptx
DNA REPAIR MECHANISM AND THEIR TYPES.pptxCHIRANTANMONDAL2
 
DNA STRUCTURE AND TYPES .pptx
DNA STRUCTURE AND TYPES .pptxDNA STRUCTURE AND TYPES .pptx
DNA STRUCTURE AND TYPES .pptxCHIRANTANMONDAL2
 
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptxTOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptxCHIRANTANMONDAL2
 
PROKARYOTS DNA REPLICATION.pptx
PROKARYOTS DNA REPLICATION.pptxPROKARYOTS DNA REPLICATION.pptx
PROKARYOTS DNA REPLICATION.pptxCHIRANTANMONDAL2
 
Lac Operon System(Catabolite Repression).pptx
Lac Operon System(Catabolite Repression).pptxLac Operon System(Catabolite Repression).pptx
Lac Operon System(Catabolite Repression).pptxCHIRANTANMONDAL2
 
DNA POLYMERASE AND RNA POLYMERASE.pptx
DNA POLYMERASE AND RNA POLYMERASE.pptxDNA POLYMERASE AND RNA POLYMERASE.pptx
DNA POLYMERASE AND RNA POLYMERASE.pptxCHIRANTANMONDAL2
 
PROKARYOTES DNA RPLICATION.pptx
PROKARYOTES DNA RPLICATION.pptxPROKARYOTES DNA RPLICATION.pptx
PROKARYOTES DNA RPLICATION.pptxCHIRANTANMONDAL2
 
PROKARYOTIC DNA REPLICATION .pptx
PROKARYOTIC DNA REPLICATION .pptxPROKARYOTIC DNA REPLICATION .pptx
PROKARYOTIC DNA REPLICATION .pptxCHIRANTANMONDAL2
 
Prokaryotic DNA replication.pptx
Prokaryotic DNA replication.pptxProkaryotic DNA replication.pptx
Prokaryotic DNA replication.pptxCHIRANTANMONDAL2
 
DNA repair mechanism and their types.pptx
DNA repair mechanism and their types.pptxDNA repair mechanism and their types.pptx
DNA repair mechanism and their types.pptxCHIRANTANMONDAL2
 
TOPIC NAME Structure of DNA and their Type.pptx
TOPIC NAME  Structure of DNA and their Type.pptxTOPIC NAME  Structure of DNA and their Type.pptx
TOPIC NAME Structure of DNA and their Type.pptxCHIRANTANMONDAL2
 
DNA STRUCTURE AND TYPES.pptx
DNA STRUCTURE AND TYPES.pptxDNA STRUCTURE AND TYPES.pptx
DNA STRUCTURE AND TYPES.pptxCHIRANTANMONDAL2
 
TOPIC-DNA repair mechanism and their types.pptx
TOPIC-DNA repair mechanism and their types.pptxTOPIC-DNA repair mechanism and their types.pptx
TOPIC-DNA repair mechanism and their types.pptxCHIRANTANMONDAL2
 

Mehr von CHIRANTANMONDAL2 (20)

eukaryotik dna elongation.pptx
eukaryotik dna elongation.pptxeukaryotik dna elongation.pptx
eukaryotik dna elongation.pptx
 
DNA IS GENETIC METERIAL.pptx
DNA IS GENETIC METERIAL.pptxDNA IS GENETIC METERIAL.pptx
DNA IS GENETIC METERIAL.pptx
 
DNA IS GENETIC MATERIAL(Experimental Proof).pptx
DNA IS GENETIC MATERIAL(Experimental Proof).pptxDNA IS GENETIC MATERIAL(Experimental Proof).pptx
DNA IS GENETIC MATERIAL(Experimental Proof).pptx
 
DNA Repair Mechanism And Their Types .pptx
DNA Repair Mechanism And Their Types .pptxDNA Repair Mechanism And Their Types .pptx
DNA Repair Mechanism And Their Types .pptx
 
DNA REPAIR MECHANISM AND THEIR TYPES.pptx
DNA REPAIR MECHANISM AND THEIR TYPES.pptxDNA REPAIR MECHANISM AND THEIR TYPES.pptx
DNA REPAIR MECHANISM AND THEIR TYPES.pptx
 
DNA STRUCTURE AND TYPES .pptx
DNA STRUCTURE AND TYPES .pptxDNA STRUCTURE AND TYPES .pptx
DNA STRUCTURE AND TYPES .pptx
 
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptxTOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
 
PROKARYOTS DNA REPLICATION.pptx
PROKARYOTS DNA REPLICATION.pptxPROKARYOTS DNA REPLICATION.pptx
PROKARYOTS DNA REPLICATION.pptx
 
Lac Operon System(Catabolite Repression).pptx
Lac Operon System(Catabolite Repression).pptxLac Operon System(Catabolite Repression).pptx
Lac Operon System(Catabolite Repression).pptx
 
DNA POLYMERASE.pptx
DNA POLYMERASE.pptxDNA POLYMERASE.pptx
DNA POLYMERASE.pptx
 
DNA POLYMERASE AND RNA POLYMERASE.pptx
DNA POLYMERASE AND RNA POLYMERASE.pptxDNA POLYMERASE AND RNA POLYMERASE.pptx
DNA POLYMERASE AND RNA POLYMERASE.pptx
 
PROKARYOTES DNA RPLICATION.pptx
PROKARYOTES DNA RPLICATION.pptxPROKARYOTES DNA RPLICATION.pptx
PROKARYOTES DNA RPLICATION.pptx
 
PROKARYOTIC DNA REPLICATION .pptx
PROKARYOTIC DNA REPLICATION .pptxPROKARYOTIC DNA REPLICATION .pptx
PROKARYOTIC DNA REPLICATION .pptx
 
Prokaryotic DNA replication.pptx
Prokaryotic DNA replication.pptxProkaryotic DNA replication.pptx
Prokaryotic DNA replication.pptx
 
DNA repair mechanism and their types.pptx
DNA repair mechanism and their types.pptxDNA repair mechanism and their types.pptx
DNA repair mechanism and their types.pptx
 
TOPIC NAME Structure of DNA and their Type.pptx
TOPIC NAME  Structure of DNA and their Type.pptxTOPIC NAME  Structure of DNA and their Type.pptx
TOPIC NAME Structure of DNA and their Type.pptx
 
LAC OPERON SYSTEM.pptx
LAC  OPERON  SYSTEM.pptxLAC  OPERON  SYSTEM.pptx
LAC OPERON SYSTEM.pptx
 
LAC OPERON 2.pptx
LAC  OPERON 2.pptxLAC  OPERON 2.pptx
LAC OPERON 2.pptx
 
DNA STRUCTURE AND TYPES.pptx
DNA STRUCTURE AND TYPES.pptxDNA STRUCTURE AND TYPES.pptx
DNA STRUCTURE AND TYPES.pptx
 
TOPIC-DNA repair mechanism and their types.pptx
TOPIC-DNA repair mechanism and their types.pptxTOPIC-DNA repair mechanism and their types.pptx
TOPIC-DNA repair mechanism and their types.pptx
 

Kürzlich hochgeladen

Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxPooja Bhuva
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxUmeshTimilsina1
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Pooja Bhuva
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxannathomasp01
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxDr. Ravikiran H M Gowda
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 

Kürzlich hochgeladen (20)

Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 

BASIC CONCEPT OF MATRIX.pptx

  • 2. DEFINITION OF MATRIX  A matrix is an ordered rectangular array of numbers that representation some data.  A matrix on its own has no value – it is just a representation of data.  Forms the basis of computer programming.
  • 3. TYPES OF MATRIX  Row matrix : it having only one row. Ex- [ 1 4 5 ]  Column matrix : it having only one column. Ex-  Zero matrix : A matrix is called a zero matrix if all the entries are 0. Ex-  Square matrix: if number of rows is equal to number of columns. Ex-  Diagonal matrix: A square matrix is called diagonal matrix, if all of its non-diagonal elements are zero. Ex-  Scalar matrix: A square matrix is called scalar matrix if diagonal elements are same and other are “0”. Ex-
  • 4. TYPES OF MATRIX  Identity/ unit matrix: A square matrix is identity if diagonal entries are 1 and other are 0. Ex- REPRESENTATION OF MATRIX  A=[aij]M×N  aij= element in row ‘i’ and column ‘j’ ,where ‘a’ is an element in the matrix.
  • 5. ADDITION OF TWO MATRICES  When two matrices of same order are added, their corresponding entries are added.  Type equation here.,  A = 𝟐 𝟒𝟓 𝟕𝟐 𝟔 𝟑 𝟎 𝟕 𝟗 𝟏𝟎 𝟑 × 𝟑 𝐁 = 𝟒𝟎 𝟕 𝟗 𝟔 𝟏 𝟐 𝟕 𝟐 𝟖 3×3  A+B= 𝟐 𝟒𝟓 𝟕𝟐 𝟔 𝟑 𝟎 𝟕 𝟗 𝟏𝟎 + 𝟒𝟎 𝟕 𝟗 𝟔 𝟏 𝟐 𝟕 𝟐 𝟖 = (𝟐 + 𝟒𝟎) (𝟒𝟓 + 𝟕) (𝟕𝟐 + 𝟗) (𝟔 + 𝟔) (𝟑 + 𝟏) (𝟎 + 𝟐) (𝟕 + 𝟕) (𝟗 + 𝟐) (𝟏𝟎 + 𝟖) = 𝟒𝟐 𝟓𝟐 𝟖𝟏 𝟏𝟐 𝟒 𝟐 𝟏𝟒 𝟏𝟏 𝟏𝟖 3×3  Only matrices of the same order can be added.  Rule 1: A+B=B+A
  • 6. SUBTRACTION OF TWO MATRICES  When two matrices of same order are subtracted, their corresponding entries are subtracted.  A= 𝟏𝟖 𝟐𝟔 𝟏𝟐 𝟏𝟎 𝟏𝟏 𝟏𝟐 𝟖 𝟏𝟎 𝟏𝟔 𝟑 × 𝟑 𝐁 = 𝟕 𝟐 𝟏𝟓 𝟏𝟑 𝟑 𝟓 𝟓 𝟖 𝟗 3×3  A-B= 𝟏𝟖 𝟐𝟔 𝟏𝟐 𝟏𝟎 𝟏𝟏 𝟏𝟐 𝟖 𝟏𝟎 𝟏𝟔 − 𝟕 𝟐 𝟏𝟓 𝟏𝟑 𝟑 𝟓 𝟓 𝟖 𝟗 = (𝟏𝟖 − 𝟕) (𝟐𝟔 − 𝟐) (𝟏𝟐 − 𝟏𝟓) (𝟏𝟎 − 𝟏𝟑) (𝟏𝟏 − 𝟑) (𝟏𝟐 − 𝟓) (𝟖 − 𝟓) (𝟏𝟎 − 𝟖) (𝟏𝟔 − 𝟗) = 𝟏𝟏 𝟐𝟒 −𝟑 −𝟑 𝟖 𝟕 𝟑 𝟐 𝟕  B-A= 𝟕 𝟐 𝟏𝟓 𝟏𝟑 𝟑 𝟓 𝟓 𝟖 𝟗 − 𝟏𝟖 𝟐𝟔 𝟏𝟐 𝟏𝟎 𝟏𝟏 𝟏𝟐 𝟖 𝟏𝟎 𝟏𝟔 = −𝟏𝟏 −𝟐𝟒 𝟑 𝟑 −𝟖 −𝟕 −𝟑 −𝟐 −𝟕 𝟑 × 𝟑  Role 2: A-B ≠ B-A
  • 7. MULTIPLICATION OF MATRICES  In matrix multiplication, the production of m×n matrix. for, example, matrix A is a 2×3 matrix and matrix B is a 3×4 matrix, then AB is a 2×4 matrices.  A= 𝟎 𝟐 𝟐 𝟏 𝟑 𝟒 𝟐 × 𝟑 𝐁= 𝟏 𝟓 𝟖 𝟐 𝟔 𝟑 𝟏 𝟐𝟐 𝟏𝟏 𝟗 𝟏𝟎 𝟕 3× 𝟒  AB= (𝟎 × 𝟏 + 𝟐 × 𝟐 + 𝟑 × 𝟏) (𝟎 × 𝟓 + 𝟐 × 𝟔 + 𝟑 × 𝟐𝟐) (𝟐 × 𝟏 + 𝟏 × 𝟐 + 𝟒 × 𝟏) (𝟐 × 𝟓 + 𝟏 × 𝟔 + 𝟒 × 𝟐𝟐) (𝟎 × 𝟖 + 𝟐 × 𝟑 + 𝟑 × 𝟏𝟏) (𝟐 × 𝟖 + 𝟏 × 𝟑 + 𝟒 × 𝟏𝟏) (𝟎 × 𝟗 + 𝟐 × 𝟏𝟎 + 𝟑 × 𝟕) (𝟐 × 𝟗 + 𝟏 × 𝟏𝟎 + 𝟒 × 𝟕) = 𝟕 𝟕𝟖 𝟖 𝟏𝟎𝟒 𝟑𝟗 𝟔𝟑 𝟒𝟏 𝟓𝟔 2× 𝟒
  • 8. TRANSPOSE OF MATRIX  Matrix formed by interchanging rows and columns of A is called A transpose(A’).