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

Matlab ch1 (4)
Matlab ch1 (4)Matlab ch1 (4)
Matlab ch1 (4)mohsinggg
 
Gauss jordan method.pptx
Gauss jordan method.pptxGauss jordan method.pptx
Gauss jordan method.pptxRehmanRasheed3
 
system of linear equations by Diler
system of linear equations by Dilersystem of linear equations by Diler
system of linear equations by Dilerkishor pokar
 
Numerical Solution of Ordinary Differential Equations
Numerical Solution of Ordinary Differential EquationsNumerical Solution of Ordinary Differential Equations
Numerical Solution of Ordinary Differential EquationsMeenakshisundaram N
 
Rank nullity theorem
Rank nullity theoremRank nullity theorem
Rank nullity theoremRoqui Gonzaga
 
Section 10: Lagrange's Theorem
Section 10: Lagrange's TheoremSection 10: Lagrange's Theorem
Section 10: Lagrange's TheoremKevin Johnson
 
Taylor's and Maclaurin series
Taylor's and Maclaurin seriesTaylor's and Maclaurin series
Taylor's and Maclaurin seriesHarsh Parmar
 
Linear Algebra and Matrix
Linear Algebra and MatrixLinear Algebra and Matrix
Linear Algebra and Matrixitutor
 
Thomas algorithm
Thomas algorithmThomas algorithm
Thomas algorithmParidhi SK
 
Gauss jordan and Guass elimination method
Gauss jordan and Guass elimination methodGauss jordan and Guass elimination method
Gauss jordan and Guass elimination methodMeet Nayak
 
Systems of Inequalities
Systems of InequalitiesSystems of Inequalities
Systems of Inequalitiesswartzje
 
system linear equations and matrices
 system linear equations and matrices system linear equations and matrices
system linear equations and matricesAditya Vaishampayan
 
System of linear equations
System of linear equationsSystem of linear equations
System of linear equationsDiler4
 
presentation on Euler and Modified Euler method ,and Fitting of curve
presentation on Euler and Modified Euler method ,and Fitting of curve presentation on Euler and Modified Euler method ,and Fitting of curve
presentation on Euler and Modified Euler method ,and Fitting of curve Mukuldev Khunte
 
IGCSE MATHS - Algebraic and Graph - Graph of Functions (quadratic, cubic....)
IGCSE MATHS - Algebraic and Graph - Graph of Functions (quadratic, cubic....)IGCSE MATHS - Algebraic and Graph - Graph of Functions (quadratic, cubic....)
IGCSE MATHS - Algebraic and Graph - Graph of Functions (quadratic, cubic....)Iskandar Zulqarnain Mohd Ishak
 
Linear algebra-Basis & Dimension
Linear algebra-Basis & DimensionLinear algebra-Basis & Dimension
Linear algebra-Basis & DimensionManikanta satyala
 

What's hot (20)

Matlab ch1 (4)
Matlab ch1 (4)Matlab ch1 (4)
Matlab ch1 (4)
 
Gauss jordan method.pptx
Gauss jordan method.pptxGauss jordan method.pptx
Gauss jordan method.pptx
 
system of linear equations by Diler
system of linear equations by Dilersystem of linear equations by Diler
system of linear equations by Diler
 
Numerical Solution of Ordinary Differential Equations
Numerical Solution of Ordinary Differential EquationsNumerical Solution of Ordinary Differential Equations
Numerical Solution of Ordinary Differential Equations
 
Linear and non linear equation
Linear and non linear equationLinear and non linear equation
Linear and non linear equation
 
Taylor's series
 Taylor's  series   Taylor's  series
Taylor's series
 
Rank nullity theorem
Rank nullity theoremRank nullity theorem
Rank nullity theorem
 
Section 10: Lagrange's Theorem
Section 10: Lagrange's TheoremSection 10: Lagrange's Theorem
Section 10: Lagrange's Theorem
 
VECTOR CALCULUS
VECTOR CALCULUSVECTOR CALCULUS
VECTOR CALCULUS
 
Taylor's and Maclaurin series
Taylor's and Maclaurin seriesTaylor's and Maclaurin series
Taylor's and Maclaurin series
 
Linear Algebra and Matrix
Linear Algebra and MatrixLinear Algebra and Matrix
Linear Algebra and Matrix
 
Thomas algorithm
Thomas algorithmThomas algorithm
Thomas algorithm
 
Gauss jordan and Guass elimination method
Gauss jordan and Guass elimination methodGauss jordan and Guass elimination method
Gauss jordan and Guass elimination method
 
Systems of Inequalities
Systems of InequalitiesSystems of Inequalities
Systems of Inequalities
 
system linear equations and matrices
 system linear equations and matrices system linear equations and matrices
system linear equations and matrices
 
System of linear equations
System of linear equationsSystem of linear equations
System of linear equations
 
Myp10 system of linear equations with solution
Myp10 system of linear equations with solutionMyp10 system of linear equations with solution
Myp10 system of linear equations with solution
 
presentation on Euler and Modified Euler method ,and Fitting of curve
presentation on Euler and Modified Euler method ,and Fitting of curve presentation on Euler and Modified Euler method ,and Fitting of curve
presentation on Euler and Modified Euler method ,and Fitting of curve
 
IGCSE MATHS - Algebraic and Graph - Graph of Functions (quadratic, cubic....)
IGCSE MATHS - Algebraic and Graph - Graph of Functions (quadratic, cubic....)IGCSE MATHS - Algebraic and Graph - Graph of Functions (quadratic, cubic....)
IGCSE MATHS - Algebraic and Graph - Graph of Functions (quadratic, cubic....)
 
Linear algebra-Basis & Dimension
Linear algebra-Basis & DimensionLinear algebra-Basis & Dimension
Linear algebra-Basis & Dimension
 

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
 
Linear Algebra- Gauss Elim-converted.pptx
Linear Algebra- Gauss Elim-converted.pptxLinear Algebra- Gauss Elim-converted.pptx
Linear Algebra- Gauss Elim-converted.pptxMazwan3
 

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)
 
Linear Algebra- Gauss Elim-converted.pptx
Linear Algebra- Gauss Elim-converted.pptxLinear Algebra- Gauss Elim-converted.pptx
Linear Algebra- Gauss Elim-converted.pptx
 

Recently uploaded

Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 

Recently uploaded (20)

Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.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