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

Linear Systems Gauss Seidel
Linear Systems   Gauss SeidelLinear Systems   Gauss Seidel
Linear Systems Gauss Seidel
Eric Davishahl
 
Linear Algebra and Matrix
Linear Algebra and MatrixLinear Algebra and Matrix
Linear Algebra and Matrix
itutor
 
Ordinary differential equations
Ordinary differential equationsOrdinary differential equations
Ordinary differential equations
Ahmed Haider
 

What's hot (20)

METHOD OF JACOBI
METHOD OF JACOBIMETHOD OF JACOBI
METHOD OF JACOBI
 
Newton's forward & backward interpolation
Newton's forward & backward interpolationNewton's forward & backward interpolation
Newton's forward & backward interpolation
 
Graphic Notes on Introduction to Linear Algebra
Graphic Notes on Introduction to Linear AlgebraGraphic Notes on Introduction to Linear Algebra
Graphic Notes on Introduction to Linear Algebra
 
1st order differential equations
1st order differential equations1st order differential equations
1st order differential equations
 
System of linear equations
System of linear equationsSystem of linear equations
System of linear equations
 
Differential equations of first order
Differential equations of first orderDifferential equations of first order
Differential equations of first order
 
GAUSS ELIMINATION METHOD
 GAUSS ELIMINATION METHOD GAUSS ELIMINATION METHOD
GAUSS ELIMINATION METHOD
 
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
 
Gauss Elimination & Gauss Jordan Methods in Numerical & Statistical Methods
Gauss Elimination & Gauss Jordan Methods in Numerical & Statistical MethodsGauss Elimination & Gauss Jordan Methods in Numerical & Statistical Methods
Gauss Elimination & Gauss Jordan Methods in Numerical & Statistical Methods
 
Linear Systems Gauss Seidel
Linear Systems   Gauss SeidelLinear Systems   Gauss Seidel
Linear Systems Gauss Seidel
 
Gauss Quadrature Formula
Gauss Quadrature FormulaGauss Quadrature Formula
Gauss Quadrature Formula
 
Gradient , Directional Derivative , Divergence , Curl
Gradient , Directional Derivative , Divergence , Curl Gradient , Directional Derivative , Divergence , Curl
Gradient , Directional Derivative , Divergence , Curl
 
Rank of a matrix
Rank of a matrixRank of a matrix
Rank of a matrix
 
Linear Algebra and Matrix
Linear Algebra and MatrixLinear Algebra and Matrix
Linear Algebra and Matrix
 
Gauss jordan and Guass elimination method
Gauss jordan and Guass elimination methodGauss jordan and Guass elimination method
Gauss jordan and Guass elimination method
 
Homogeneous Linear Differential Equations
 Homogeneous Linear Differential Equations Homogeneous Linear Differential Equations
Homogeneous Linear Differential Equations
 
Gaussian elimination method & homogeneous linear equation
Gaussian elimination method & homogeneous linear equationGaussian elimination method & homogeneous linear equation
Gaussian elimination method & homogeneous linear equation
 
Exact Differential Equations
Exact Differential EquationsExact Differential Equations
Exact Differential Equations
 
Ordinary differential equations
Ordinary differential equationsOrdinary differential equations
Ordinary differential equations
 
Partial differential equations
Partial differential equationsPartial differential equations
Partial differential equations
 

Similar to GATE Engineering Maths : System of 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
eyebolloptics
 
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
 

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

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
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
PECB
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
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
heathfieldcps1
 

Recently uploaded (20)

Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
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Ữ Â...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
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
 
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
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
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
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
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
 
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
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptx
 
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
 

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