SlideShare a Scribd company logo
1 of 13
Section 1 : Linear
Algebra
Topic 2 : System of Linear Equations
Linear System
 Linear equation: ax1 + bx2 = c
where, a, b, c = constants x1, x2 = variables
 A linear system consists of more than one linear equations.
 For example:- a1x1 + b1x2 + c1x3= k1……………….(1)
a2x1 + b2x2 + c2x2= k2……………….(2)
a3x1 + b3x2 + c3x3= k3……………….(3)
 To find a solution of this system means to find the value/values of x1, x2, x3 which satisfies all
the equations in the linear system.
 A linear system can have a unique solution, more than one solutions or no solution.
Linear System
 Rewriting the above equation in form of matrix
AX = B
A =
𝑎1 𝑏1 𝑐1
𝑎2 𝑏2 𝑐2
𝑎3 𝑏3 𝑐3
, X =
𝑥1
𝑥2
𝑥3
, B =
𝑘1
𝑘2
𝑘3
 The matrix A is called the coefficient matrix and the block matrix [A B] , is the augmented
matrix of the linear system.Type equation here.
Augmented matrix :
𝑎1 𝑏1 𝑐1 𝑘1
𝑎2 𝑏2 𝑐2 𝑘2
𝑎3 𝑏3 𝑐3 𝑘3
 If all the elements of B are zero then linear system is called Homogeneous otherwise Non-
Homogeneous.
Row Reduced Echelon Form of a
Matrix
 A matrix C is said to be in the row reduced form if
1. The first non-zero entry in each row of C is 1
2. The column containing this 1 has all its other entries zero
e.g. A =
1 1 3
0 3 2
0 0 1
B =
1 0 1 −2
0 1 2 3
0 0 4 1
0 0 −1 −2
C =
1 −1
0 2
Gauss Elimination Method
 Gaussian elimination is a method of solving a linear system AX = B (consisting of m
equations in n unknowns) by bringing the augmented matrix
[A B] =
𝑎11 𝑎12 ⋯ 𝑎1𝑛 𝑏1
𝑎21 𝑎22 ⋯ 𝑎2𝑛 𝑏2
⋮ ⋮ ⋱ ⋮ ⋮
𝑎𝑚1 𝑎𝑚2 ⋯ 𝑎𝑚𝑛 𝑏𝑚
 to an upper triangular form (or reduced row echelon form)
𝑐11 𝑐12 ⋯ 𝑐1𝑛 𝑑1
0 𝑐22 ⋯ 𝑐2𝑛 𝑑2
⋮ ⋮ ⋱ ⋮ ⋮
0 0 ⋯ 𝑐𝑚𝑛 𝑑𝑚
 This elimination process is also called the forward elimination method.
Gauss Elimination Method
E.X. 1 y + z = 2
2x + 3z = 5
x + y + z = 5
Solution:- Augmented matrix =
0 1 1 2
2 0 3 5
1 1 1 3
 Interchange 1st and 2nd equation
2 0 3 5
0 1 1 2
1 1 1 3
Gauss Elimination Method
 Divide the 1st equation by 2
1 0
3
2
5
2
0 1 1 2
1 1 1 3
 Add −1 times the 1st equation to the 3rd equation
1 0
3
2
5
2
0 1 1 2
0 1 −
1
2
1
2
 Add −1 times the 2nd equation to the 3rd equation
1 0
3
2
5
2
0 1 1 2
0 0 −
3
2
−
3
2
Gauss Elimination Method
 Multiply the 3rd equation by −2/3
1 0
3
2
5
2
0 1 1 2
0 0 1 1
 Rewriting this matrix in algebraic form:
 x +
3
2
z =
5
2
 y + z = 2
 Z = 1
 The last equation gives z = 1, the second equation now gives y = 1. Finally the first equation
gives x = 1.
Solution : x = 1, y = 1, z = 2
Rank of a Matrix
 Unique solution, multiple solutions  Consistent
 No solution  Inconsistent
 Rank of a matrix : The number of non-zero rows in the row reduced form of a matrix is
called the row-rank of the matrix.
e.g. A =
1 2 1
2 3 1
1 1 2
 To find rank of this matrix, first convert it into row echelon form.
 Multiplying 1st row with (-2 and adding in 2nd row, -1 and adding in 3rd row)
1 2 1
0 −1 −1
0 −1 1
Rank of a Matrix
 Multiplying 2nd row with -1 and adding 2nd row in 3rd row,
1 2 1
0 1 1
0 0 2
 Multiplying 3rd row with ½ and multiplying 2nd row with -2 and adding in 1st
1 0 −1
0 1 1
0 0 1
 Adding 3rd row in 1st and multiplying 3rd row with -1 and adding in 1st
1 0 0
0 1 0
0 0 1

1 0 2
0 1 −1
0 0 0
(Rank = 2),
1 −3 1
0 0 0
0 0 0
(Rank = 3)
Rank = 3
Rank of a Matrix
 Let AX = B be a linear system with m equations and n unknowns.
 row-rank(A) ≥ row-rank([A B])  Consistent
 row-rank(A) < row-rank([A B])  Inconsistent
Linear Dependent and Linear
Independent
 Row vector : [x1 x2 x3 x4]
 Column vector :
𝑥
𝑦
𝑧
 Given any set of m vectors a(1), …., a(m) (with the same number of components), a linear
combination of these vectors is an expression of the form
c1a(1) + c2a(2)+….+ cma(m)
where c1, c2,….,cm are any scalars. Now, consider
c1a(1) + c2a(2)+….+ cma(m) = 0
 If all cjs are zero, then a(1), …., a(m) are said to form a linearly independent set. Otherwise
linearly dependent.
Linear Dependent and Linear
Independent
 Example:
a(1) = [3 0 2 2]
a(2) = [-6 42 24 54]
a(3) = [21 -21 0 -15]
are linearly dependent because,
6a(1) - ½ a(2) – a(3) = 0

More Related Content

What's hot

Gauss Jordan Method
Gauss Jordan MethodGauss Jordan Method
Gauss Jordan MethodZunAib Ali
 
My Lecture Notes from Linear Algebra
My Lecture Notes fromLinear AlgebraMy Lecture Notes fromLinear Algebra
My Lecture Notes from Linear AlgebraPaul R. Martin
 
Matrices And Application Of Matrices
Matrices And Application Of MatricesMatrices And Application Of Matrices
Matrices And Application Of Matricesmailrenuka
 
Thomas algorithm
Thomas algorithmThomas algorithm
Thomas algorithmParidhi SK
 
Presentation on application of numerical method in our life
Presentation on application of numerical method in our lifePresentation on application of numerical method in our life
Presentation on application of numerical method in our lifeManish Kumar Singh
 
Numerical
NumericalNumerical
Numerical1821986
 
Methods of successive over relaxation
Methods of successive over relaxationMethods of successive over relaxation
Methods of successive over relaxationKhushdil Ahmad
 
Matrices and System of Linear Equations ppt
Matrices and System of Linear Equations pptMatrices and System of Linear Equations ppt
Matrices and System of Linear Equations pptDrazzer_Dhruv
 
NUMERICAL METHODS
NUMERICAL   METHODSNUMERICAL   METHODS
NUMERICAL METHODSAMOGHA A K
 
Application of Matrices on Cryptography
Application of Matrices on CryptographyApplication of Matrices on Cryptography
Application of Matrices on CryptographyRam Gupta
 
Crout s method for solving system of linear equations
Crout s method for solving system of linear equationsCrout s method for solving system of linear equations
Crout s method for solving system of linear equationsSugathan Velloth
 
Systems of linear equations and augmented matrices
Systems of linear equations and augmented matricesSystems of linear equations and augmented matrices
Systems of linear equations and augmented matricesST ZULAIHA NURHAJARURAHMAH
 
Presentation on Numerical Integration
Presentation on Numerical IntegrationPresentation on Numerical Integration
Presentation on Numerical IntegrationTausif Shahanshah
 

What's hot (20)

Gauss Jordan Method
Gauss Jordan MethodGauss Jordan Method
Gauss Jordan Method
 
Systems of linear equations; matrices
Systems of linear equations; matricesSystems of linear equations; matrices
Systems of linear equations; matrices
 
My Lecture Notes from Linear Algebra
My Lecture Notes fromLinear AlgebraMy Lecture Notes fromLinear Algebra
My Lecture Notes from Linear Algebra
 
Matrices And Application Of Matrices
Matrices And Application Of MatricesMatrices And Application Of Matrices
Matrices And Application Of Matrices
 
matrices basic operation.ppt
matrices basic operation.pptmatrices basic operation.ppt
matrices basic operation.ppt
 
Thomas algorithm
Thomas algorithmThomas algorithm
Thomas algorithm
 
Presentation on application of numerical method in our life
Presentation on application of numerical method in our lifePresentation on application of numerical method in our life
Presentation on application of numerical method in our life
 
A* Search Algorithm
A* Search AlgorithmA* Search Algorithm
A* Search Algorithm
 
Numerical
NumericalNumerical
Numerical
 
Numerical analysis ppt
Numerical analysis pptNumerical analysis ppt
Numerical analysis ppt
 
Methods of successive over relaxation
Methods of successive over relaxationMethods of successive over relaxation
Methods of successive over relaxation
 
Unit4
Unit4Unit4
Unit4
 
Numerical Methods 3
Numerical Methods 3Numerical Methods 3
Numerical Methods 3
 
Matrices and System of Linear Equations ppt
Matrices and System of Linear Equations pptMatrices and System of Linear Equations ppt
Matrices and System of Linear Equations ppt
 
NUMERICAL METHODS
NUMERICAL   METHODSNUMERICAL   METHODS
NUMERICAL METHODS
 
Morphological operations
Morphological operationsMorphological operations
Morphological operations
 
Application of Matrices on Cryptography
Application of Matrices on CryptographyApplication of Matrices on Cryptography
Application of Matrices on Cryptography
 
Crout s method for solving system of linear equations
Crout s method for solving system of linear equationsCrout s method for solving system of linear equations
Crout s method for solving system of linear equations
 
Systems of linear equations and augmented matrices
Systems of linear equations and augmented matricesSystems of linear equations and augmented matrices
Systems of linear equations and augmented matrices
 
Presentation on Numerical Integration
Presentation on Numerical IntegrationPresentation on Numerical Integration
Presentation on Numerical Integration
 

Similar to GATE Engineering Maths : System of Linear Equations

Chapter 3 solving systems of linear equations
Chapter 3 solving systems of linear equationsChapter 3 solving systems of linear equations
Chapter 3 solving systems of linear equationsssuser53ee01
 
matrices and algbra
matrices and algbramatrices and algbra
matrices and algbragandhinagar
 
Algebra unit 9.1
Algebra unit 9.1Algebra unit 9.1
Algebra unit 9.1Mark Ryder
 
Gaussian elimination
Gaussian eliminationGaussian elimination
Gaussian eliminationAwais Qureshi
 
Linear equations in two variables
Linear equations in two variablesLinear equations in two variables
Linear equations in two variablesvijayapatil27
 
Gauss Jorden and Gauss Elimination method.pptx
Gauss Jorden and Gauss Elimination method.pptxGauss Jorden and Gauss Elimination method.pptx
Gauss Jorden and Gauss Elimination method.pptxAHSANMEHBOOB12
 
Elementary-linear-algebra- chapter 1.pdf
Elementary-linear-algebra- chapter 1.pdfElementary-linear-algebra- chapter 1.pdf
Elementary-linear-algebra- chapter 1.pdfRanaHammad39
 
Mathematics 8 Systems of Linear Inequalities
Mathematics 8 Systems of Linear InequalitiesMathematics 8 Systems of Linear Inequalities
Mathematics 8 Systems of Linear InequalitiesJuan Miguel Palero
 
Ch9-Gauss_Elimination4.pdf
Ch9-Gauss_Elimination4.pdfCh9-Gauss_Elimination4.pdf
Ch9-Gauss_Elimination4.pdfRahulUkhande
 
Linear equations
Linear equationsLinear equations
Linear equationsNisarg Amin
 
For the following matrices, determine a cot of basis vectors for the.pdf
For the following matrices, determine a cot of basis vectors for  the.pdfFor the following matrices, determine a cot of basis vectors for  the.pdf
For the following matrices, determine a cot of basis vectors for the.pdfeyebolloptics
 
Lecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equationsLecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equationsHazel Joy Chong
 
Pair of linear equation in two variables (sparsh singh)
Pair of linear equation in two variables (sparsh singh)Pair of linear equation in two variables (sparsh singh)
Pair of linear equation in two variables (sparsh singh)Sparsh Singh
 
Pair of linear equation in two variables (sparsh singh)
Pair of linear equation in two variables (sparsh singh)Pair of linear equation in two variables (sparsh singh)
Pair of linear equation in two variables (sparsh singh)Sparsh Singh
 
System Of Linear Equations
System Of Linear EquationsSystem Of Linear Equations
System Of Linear Equationssaahil kshatriya
 

Similar to GATE Engineering Maths : System of Linear Equations (20)

Chapter 3 solving systems of linear equations
Chapter 3 solving systems of linear equationsChapter 3 solving systems of linear equations
Chapter 3 solving systems of linear equations
 
matrices and algbra
matrices and algbramatrices and algbra
matrices and algbra
 
Linear algebra03fallleturenotes01
Linear algebra03fallleturenotes01Linear algebra03fallleturenotes01
Linear algebra03fallleturenotes01
 
Algebra unit 9.1
Algebra unit 9.1Algebra unit 9.1
Algebra unit 9.1
 
Gaussian elimination
Gaussian eliminationGaussian elimination
Gaussian elimination
 
TABREZ KHAN.ppt
TABREZ KHAN.pptTABREZ KHAN.ppt
TABREZ KHAN.ppt
 
Linear equations in two variables
Linear equations in two variablesLinear equations in two variables
Linear equations in two variables
 
Gauss Jorden and Gauss Elimination method.pptx
Gauss Jorden and Gauss Elimination method.pptxGauss Jorden and Gauss Elimination method.pptx
Gauss Jorden and Gauss Elimination method.pptx
 
1565 matrix01-ppt
1565 matrix01-ppt1565 matrix01-ppt
1565 matrix01-ppt
 
Elementary-linear-algebra- chapter 1.pdf
Elementary-linear-algebra- chapter 1.pdfElementary-linear-algebra- chapter 1.pdf
Elementary-linear-algebra- chapter 1.pdf
 
Mathematics 8 Systems of Linear Inequalities
Mathematics 8 Systems of Linear InequalitiesMathematics 8 Systems of Linear Inequalities
Mathematics 8 Systems of Linear Inequalities
 
Ch9-Gauss_Elimination4.pdf
Ch9-Gauss_Elimination4.pdfCh9-Gauss_Elimination4.pdf
Ch9-Gauss_Elimination4.pdf
 
Linear equations
Linear equationsLinear equations
Linear equations
 
Linear Equations
Linear Equations Linear Equations
Linear Equations
 
For the following matrices, determine a cot of basis vectors for the.pdf
For the following matrices, determine a cot of basis vectors for  the.pdfFor the following matrices, determine a cot of basis vectors for  the.pdf
For the following matrices, determine a cot of basis vectors for the.pdf
 
Lecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equationsLecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equations
 
Lemh104
Lemh104Lemh104
Lemh104
 
Pair of linear equation in two variables (sparsh singh)
Pair of linear equation in two variables (sparsh singh)Pair of linear equation in two variables (sparsh singh)
Pair of linear equation in two variables (sparsh singh)
 
Pair of linear equation in two variables (sparsh singh)
Pair of linear equation in two variables (sparsh singh)Pair of linear equation in two variables (sparsh singh)
Pair of linear equation in two variables (sparsh singh)
 
System Of Linear Equations
System Of Linear EquationsSystem Of Linear Equations
System Of Linear Equations
 

Recently uploaded

Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
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
 
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
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
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
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
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
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
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
 
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
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
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
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 

Recently uploaded (20)

Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
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.
 
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...
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
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Ữ Â...
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.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
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
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
 
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
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
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
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 

GATE Engineering Maths : System of Linear Equations

  • 1. Section 1 : Linear Algebra Topic 2 : System of Linear Equations
  • 2. Linear System  Linear equation: ax1 + bx2 = c where, a, b, c = constants x1, x2 = variables  A linear system consists of more than one linear equations.  For example:- a1x1 + b1x2 + c1x3= k1……………….(1) a2x1 + b2x2 + c2x2= k2……………….(2) a3x1 + b3x2 + c3x3= k3……………….(3)  To find a solution of this system means to find the value/values of x1, x2, x3 which satisfies all the equations in the linear system.  A linear system can have a unique solution, more than one solutions or no solution.
  • 3. Linear System  Rewriting the above equation in form of matrix AX = B A = 𝑎1 𝑏1 𝑐1 𝑎2 𝑏2 𝑐2 𝑎3 𝑏3 𝑐3 , X = 𝑥1 𝑥2 𝑥3 , B = 𝑘1 𝑘2 𝑘3  The matrix A is called the coefficient matrix and the block matrix [A B] , is the augmented matrix of the linear system.Type equation here. Augmented matrix : 𝑎1 𝑏1 𝑐1 𝑘1 𝑎2 𝑏2 𝑐2 𝑘2 𝑎3 𝑏3 𝑐3 𝑘3  If all the elements of B are zero then linear system is called Homogeneous otherwise Non- Homogeneous.
  • 4. Row Reduced Echelon Form of a Matrix  A matrix C is said to be in the row reduced form if 1. The first non-zero entry in each row of C is 1 2. The column containing this 1 has all its other entries zero e.g. A = 1 1 3 0 3 2 0 0 1 B = 1 0 1 −2 0 1 2 3 0 0 4 1 0 0 −1 −2 C = 1 −1 0 2
  • 5. Gauss Elimination Method  Gaussian elimination is a method of solving a linear system AX = B (consisting of m equations in n unknowns) by bringing the augmented matrix [A B] = 𝑎11 𝑎12 ⋯ 𝑎1𝑛 𝑏1 𝑎21 𝑎22 ⋯ 𝑎2𝑛 𝑏2 ⋮ ⋮ ⋱ ⋮ ⋮ 𝑎𝑚1 𝑎𝑚2 ⋯ 𝑎𝑚𝑛 𝑏𝑚  to an upper triangular form (or reduced row echelon form) 𝑐11 𝑐12 ⋯ 𝑐1𝑛 𝑑1 0 𝑐22 ⋯ 𝑐2𝑛 𝑑2 ⋮ ⋮ ⋱ ⋮ ⋮ 0 0 ⋯ 𝑐𝑚𝑛 𝑑𝑚  This elimination process is also called the forward elimination method.
  • 6. Gauss Elimination Method E.X. 1 y + z = 2 2x + 3z = 5 x + y + z = 5 Solution:- Augmented matrix = 0 1 1 2 2 0 3 5 1 1 1 3  Interchange 1st and 2nd equation 2 0 3 5 0 1 1 2 1 1 1 3
  • 7. Gauss Elimination Method  Divide the 1st equation by 2 1 0 3 2 5 2 0 1 1 2 1 1 1 3  Add −1 times the 1st equation to the 3rd equation 1 0 3 2 5 2 0 1 1 2 0 1 − 1 2 1 2  Add −1 times the 2nd equation to the 3rd equation 1 0 3 2 5 2 0 1 1 2 0 0 − 3 2 − 3 2
  • 8. Gauss Elimination Method  Multiply the 3rd equation by −2/3 1 0 3 2 5 2 0 1 1 2 0 0 1 1  Rewriting this matrix in algebraic form:  x + 3 2 z = 5 2  y + z = 2  Z = 1  The last equation gives z = 1, the second equation now gives y = 1. Finally the first equation gives x = 1. Solution : x = 1, y = 1, z = 2
  • 9. Rank of a Matrix  Unique solution, multiple solutions  Consistent  No solution  Inconsistent  Rank of a matrix : The number of non-zero rows in the row reduced form of a matrix is called the row-rank of the matrix. e.g. A = 1 2 1 2 3 1 1 1 2  To find rank of this matrix, first convert it into row echelon form.  Multiplying 1st row with (-2 and adding in 2nd row, -1 and adding in 3rd row) 1 2 1 0 −1 −1 0 −1 1
  • 10. Rank of a Matrix  Multiplying 2nd row with -1 and adding 2nd row in 3rd row, 1 2 1 0 1 1 0 0 2  Multiplying 3rd row with ½ and multiplying 2nd row with -2 and adding in 1st 1 0 −1 0 1 1 0 0 1  Adding 3rd row in 1st and multiplying 3rd row with -1 and adding in 1st 1 0 0 0 1 0 0 0 1  1 0 2 0 1 −1 0 0 0 (Rank = 2), 1 −3 1 0 0 0 0 0 0 (Rank = 3) Rank = 3
  • 11. Rank of a Matrix  Let AX = B be a linear system with m equations and n unknowns.  row-rank(A) ≥ row-rank([A B])  Consistent  row-rank(A) < row-rank([A B])  Inconsistent
  • 12. Linear Dependent and Linear Independent  Row vector : [x1 x2 x3 x4]  Column vector : 𝑥 𝑦 𝑧  Given any set of m vectors a(1), …., a(m) (with the same number of components), a linear combination of these vectors is an expression of the form c1a(1) + c2a(2)+….+ cma(m) where c1, c2,….,cm are any scalars. Now, consider c1a(1) + c2a(2)+….+ cma(m) = 0  If all cjs are zero, then a(1), …., a(m) are said to form a linearly independent set. Otherwise linearly dependent.
  • 13. Linear Dependent and Linear Independent  Example: a(1) = [3 0 2 2] a(2) = [-6 42 24 54] a(3) = [21 -21 0 -15] are linearly dependent because, 6a(1) - ½ a(2) – a(3) = 0