SlideShare uma empresa Scribd logo
1 de 12
linear algebra
For any Assignment related queries, Call us at:- +1 678 648
4277
You can mail us at info@mathsassignmenthelp.com or
reach us at: https://www.mathsassignmenthelp.com/
Problem - The figure shows that cos(α) = v1/ǁvǁ and sin(α) = v2/ǁvǁ. Similarly cos(β) is
and sin(β) is . The angle θ is β − α. Substitute into the trigonometry
formula cos(α) cos(β) +sin(β) sin(α) for cos(β −α) to find cos(θ) = v · w/ǁvǁǁwǁ.
Solution
ǁ ǁ ǁ ǁ
First blank: w1/ w . Second blank: w2/ w . Substituting into the trigonome try formula yields
cos(β − α) = (w1/ǁwǁ)(v1/ǁvǁ) + (w2/ǁwǁ)(v2/ǁvǁ) = v · w/ǁvǁǁwǁ.
Problem - Can three vectors in the xy plane have u · v < 0 and v · w < 0 and u · w < 0?
Solution
Yes. For instance take u = (1, 0), v = (−1 , √3 ), w = (−1 , −√3 ). Notice
2
u · v = v · w = u · w = −1 .
Problem - Find a combination x1w1 + x2w2 + x3w3 that gives the zero vector:
Solution
Yes. For instance take u = (1, 0), v = (−1 , √3 ), w = (−1 , −√3 ).
Notice
2
u · v = v · w = u · w = −1 .
Can three vectors in the xy plane have u · v < 0 and v · w < 0 and u · w < 0?
Can three vectors in the xy plane have u · v < 0 and v · w < 0 and u · w < 0?
Can three vectors in the xy plane have u · v < 0 and v · w < 0 and u · w < 0?
Those vectors are (independent)(dependent). The three vectors lie in a . The matrix W with those
columns is not invertible.
Solution
Observe w1 − 2w2 + w3 = 0. The vectors are dependent. They lie in a plane.
Problem - The very last words say that the 5 by 5 centered difference matrix is not
invertible. Write down the 5 equations Cx = b. Find a
combination of left sides that gives zero. What combination of b1, b2, b3, b4, b5
must be zero?
The 5 by 5 centered difference matrix is
The five equations Cx = b are
x2 = b1, −x1 + x3 = b2, −x2 + x4 = b3, −x3 + x5 = b4, −x4 = b5.
Observe that the sum of the first, third, and fifth equations is zero. Similarly, b1 + b3 + b5 = 0
Problem - Start with the vector u0 = (1, 0). Multiply again and again by the same “Markov
matrix” A = [.8 .3; .2 .7]. The next three vectors are u1, u2, u3
What property do you notice for all four vectors u0, u1, u2, u3. Solution
Computing, we get .
7 .65 u2 = u3 = . .3 .35 All four vectors have components that sum to one
Problem : Continue Problem 29 from u0 = (1, 0) to u7, and also from v0 = (0, 1) to v7. What
do you notice about u7 and v7? Here are two MATLAB codes, with while and for. They plot u0
to u7 and v0 to v7.
The u’s and the v’s are approaching a steady state vector s. Guess that vector and check that
As = s. If you start with s, then you stay with s.
Solution
Here is the code entered into MATLAB.
u= [1; 0];
A= [.8 .3; .2 .7];
x= u;
k= [0 : 7];
while size (x, 2)<=7 u= A*u; x= [x, u]; end
plot (k,x)
v= [0;1];
A= [.8 .3; .2 .7];
x= v;
k= [0:7];
for j=1:7
v= A*v; x=[x, v]; end
plot (k, x)
In this graph, we see that the sequence u1, u2, . . . , u7 is approaching (.6, .4).
In this graph, we see that the sequence v1, v2, . . . , v7 is approaching (.6, .4).
From the graphs, we guess that s = (.6, .4) is a steady state vector. We verify this with the
computation
Problem Three planes can fail to have an intersection point, even if no planes are parallel. The
system is singular if row 3 of A is a of the first two rows. Find a third equation that can’t be
solved together with x + y + z = 0 and x − 2y − z = 1.
Solution
The system is singular if row 3 of A is a linear combination of the first two rows. There are many
possible choices of a third equation that cannot be solved together with the ones given. An
example is 2x + 5y + 4z = 1. Note that the left hand side of the third equation is the three times
the left hand side of thte first minus the left hand side of the second. However, the right hand
side does not satisfy this relation.
Problem Start with 100 equations Ax = 0 for 100 unknowns x = (x1, . . . , x100). Suppose elimination
reduces the 100th equation to 0 = 0, so the system is “singular”.
Elimination takes linear combinations of the rows. So this singular system has the singular
property: Some linear combination of the 100 rows is .
Singular systems Ax = 0 have infinitely many solutions. This means that some linear combination
of the 100 columns is .
Invent a 100 by 100 singular matrix with no zero entries.
For your matrix, describe in words the row picture and the column picture of
Ax = 0. Not necessary to draw 100-dimensional space.
Zero.
Solution
Zero. (c) There are many possible answers. For instance, the matrix
for which every row is (1 2 3 · · · 100). (d) The row picture is 100 copies of the
hyperplane in 100-space defined by the equation
x1 + 2x2 + 3x3 + · · · + 100x100 = 0.
The column picture is the 100 vectors proportional to (1 1 1
10, 20, . . . , 1000.
Problem : The entries of A and x are aij and xj . So the first
component of Ax is a1j xj = a11x1 + + a1nxn. If E21 subtracts row 1 from row 2,
write a formula for
the third component of Ax
the (2, 1) entry of E21A
the (2, 1) entry of E21(E21A)
the first component of E21Ax.
Solution
Problem : Find the triangular matrix E that reduces “Pascal’s matrix ” to a smaller Pascal:
Which matrix M (multiplying several E’s) reduces Pascal all the way to I?
One can eliminate the second column with the matrix
and the third column with the matrix
Multiplying these together, we get

Mais conteúdo relacionado

Semelhante a linear algebra.pptx

1  Part 2 Systems of Equations Which Do Not Have A Uni.docx
1  Part 2  Systems of Equations Which Do Not Have A Uni.docx1  Part 2  Systems of Equations Which Do Not Have A Uni.docx
1  Part 2 Systems of Equations Which Do Not Have A Uni.docx
eugeniadean34240
 
0.3.e,ine,det.
0.3.e,ine,det.0.3.e,ine,det.
0.3.e,ine,det.
m2699
 
Module 1 plane coordinate geometry
Module 1   plane coordinate geometryModule 1   plane coordinate geometry
Module 1 plane coordinate geometry
dionesioable
 
Mc ty-cubicequations-2009-1
Mc ty-cubicequations-2009-1Mc ty-cubicequations-2009-1
Mc ty-cubicequations-2009-1
Brit4
 
Mc ty-cubicequations-2009-1
Mc ty-cubicequations-2009-1Mc ty-cubicequations-2009-1
Mc ty-cubicequations-2009-1
Harsh Arora
 
Linear equations rev
Linear equations revLinear equations rev
Linear equations rev
Yash Jain
 
IIT JEE - Mathematics 2009 i
IIT JEE  - Mathematics  2009  iIIT JEE  - Mathematics  2009  i
IIT JEE - Mathematics 2009 i
Vasista Vinuthan
 

Semelhante a linear algebra.pptx (20)

Class xii practice questions
Class xii practice questionsClass xii practice questions
Class xii practice questions
 
1  Part 2 Systems of Equations Which Do Not Have A Uni.docx
1  Part 2  Systems of Equations Which Do Not Have A Uni.docx1  Part 2  Systems of Equations Which Do Not Have A Uni.docx
1  Part 2 Systems of Equations Which Do Not Have A Uni.docx
 
1560 mathematics for economists
1560 mathematics for economists1560 mathematics for economists
1560 mathematics for economists
 
0.3.e,ine,det.
0.3.e,ine,det.0.3.e,ine,det.
0.3.e,ine,det.
 
Analytic Geometry Period 1
Analytic Geometry Period 1Analytic Geometry Period 1
Analytic Geometry Period 1
 
Module 1 plane coordinate geometry
Module 1   plane coordinate geometryModule 1   plane coordinate geometry
Module 1 plane coordinate geometry
 
Maths
MathsMaths
Maths
 
Mc ty-cubicequations-2009-1
Mc ty-cubicequations-2009-1Mc ty-cubicequations-2009-1
Mc ty-cubicequations-2009-1
 
Mc ty-cubicequations-2009-1
Mc ty-cubicequations-2009-1Mc ty-cubicequations-2009-1
Mc ty-cubicequations-2009-1
 
Nbhm m. a. and m.sc. scholarship test 2007
Nbhm m. a. and m.sc. scholarship test 2007 Nbhm m. a. and m.sc. scholarship test 2007
Nbhm m. a. and m.sc. scholarship test 2007
 
.
..
.
 
Linear Equations
Linear Equations Linear Equations
Linear Equations
 
Consistency of linear equations in two and three variables
Consistency of linear equations in two and three variablesConsistency of linear equations in two and three variables
Consistency of linear equations in two and three variables
 
Linear equations rev
Linear equations revLinear equations rev
Linear equations rev
 
Linear Algebra Gauss Jordan elimination.pptx
Linear Algebra Gauss Jordan elimination.pptxLinear Algebra Gauss Jordan elimination.pptx
Linear Algebra Gauss Jordan elimination.pptx
 
IIT JEE - Mathematics 2009 i
IIT JEE  - Mathematics  2009  iIIT JEE  - Mathematics  2009  i
IIT JEE - Mathematics 2009 i
 
Aieee Mathematics 2006
Aieee Mathematics   2006Aieee Mathematics   2006
Aieee Mathematics 2006
 
Partial midterm set7 soln linear algebra
Partial midterm set7 soln linear algebraPartial midterm set7 soln linear algebra
Partial midterm set7 soln linear algebra
 
My Lecture Notes from Linear Algebra
My Lecture Notes fromLinear AlgebraMy Lecture Notes fromLinear Algebra
My Lecture Notes from Linear Algebra
 
Assignments for class XII
Assignments for class XIIAssignments for class XII
Assignments for class XII
 

Mais de Maths Assignment Help

Unlock Your Academic Success with Expert Math Assignment Help!
Unlock Your Academic Success with Expert Math Assignment Help!Unlock Your Academic Success with Expert Math Assignment Help!
Unlock Your Academic Success with Expert Math Assignment Help!
Maths Assignment Help
 
Unlock Your Mathematical Potential with MathAssignmentHelp.com! 🧮✨
Unlock Your Mathematical Potential with MathAssignmentHelp.com! 🧮✨Unlock Your Mathematical Potential with MathAssignmentHelp.com! 🧮✨
Unlock Your Mathematical Potential with MathAssignmentHelp.com! 🧮✨
Maths Assignment Help
 

Mais de Maths Assignment Help (20)

Unlock Your Academic Success with Expert Math Assignment Help!
Unlock Your Academic Success with Expert Math Assignment Help!Unlock Your Academic Success with Expert Math Assignment Help!
Unlock Your Academic Success with Expert Math Assignment Help!
 
Unlock Your Mathematical Potential with MathAssignmentHelp.com! 🧮✨
Unlock Your Mathematical Potential with MathAssignmentHelp.com! 🧮✨Unlock Your Mathematical Potential with MathAssignmentHelp.com! 🧮✨
Unlock Your Mathematical Potential with MathAssignmentHelp.com! 🧮✨
 
Linear Algebra.pptx
Linear Algebra.pptxLinear Algebra.pptx
Linear Algebra.pptx
 
Maths Assignment help
Maths Assignment helpMaths Assignment help
Maths Assignment help
 
Maths Assignment Help
Maths Assignment HelpMaths Assignment Help
Maths Assignment Help
 
13 Introduction To Probability And Statistics.pptx
13 Introduction To Probability And Statistics.pptx13 Introduction To Probability And Statistics.pptx
13 Introduction To Probability And Statistics.pptx
 
Math Assignment Help
Math Assignment HelpMath Assignment Help
Math Assignment Help
 
Calculus with Theory, Problem Set Solutions 4.pptx
Calculus with Theory, Problem Set Solutions 4.pptxCalculus with Theory, Problem Set Solutions 4.pptx
Calculus with Theory, Problem Set Solutions 4.pptx
 
Calculus with Theory, Problem Set Solutions 1.pptx
Calculus with Theory, Problem Set Solutions 1.pptxCalculus with Theory, Problem Set Solutions 1.pptx
Calculus with Theory, Problem Set Solutions 1.pptx
 
Linear Algebra Assignment Help
Linear Algebra Assignment HelpLinear Algebra Assignment Help
Linear Algebra Assignment Help
 
Introduction to Stochastic Processes, Solution 4.pptx
Introduction to Stochastic Processes, Solution 4.pptxIntroduction to Stochastic Processes, Solution 4.pptx
Introduction to Stochastic Processes, Solution 4.pptx
 
matrix theory and linear algebra.pptx
matrix theory and linear algebra.pptxmatrix theory and linear algebra.pptx
matrix theory and linear algebra.pptx
 
NUMBER THEORY ASSIGNMENT HELP
NUMBER THEORY ASSIGNMENT HELPNUMBER THEORY ASSIGNMENT HELP
NUMBER THEORY ASSIGNMENT HELP
 
Linear Algebra Communications Assignment Help.pptx
Linear Algebra Communications Assignment Help.pptxLinear Algebra Communications Assignment Help.pptx
Linear Algebra Communications Assignment Help.pptx
 
Online Maths Assignment Help
Online Maths Assignment HelpOnline Maths Assignment Help
Online Maths Assignment Help
 
Differential Equations Assignment Help
Differential Equations Assignment HelpDifferential Equations Assignment Help
Differential Equations Assignment Help
 
Maths Assignment Help
Maths Assignment HelpMaths Assignment Help
Maths Assignment Help
 
Numerical Analysis Assignment Help
Numerical Analysis Assignment HelpNumerical Analysis Assignment Help
Numerical Analysis Assignment Help
 
Complex Variables Assignment Help
Complex Variables Assignment HelpComplex Variables Assignment Help
Complex Variables Assignment Help
 
Math Homework Help
Math Homework HelpMath Homework Help
Math Homework Help
 

Último

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
 
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
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 

Último (20)

Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
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
 
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
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
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
 
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
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
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
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
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 ...
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
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.
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
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
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 

linear algebra.pptx

  • 1. linear algebra For any Assignment related queries, Call us at:- +1 678 648 4277 You can mail us at info@mathsassignmenthelp.com or reach us at: https://www.mathsassignmenthelp.com/
  • 2. Problem - The figure shows that cos(α) = v1/ǁvǁ and sin(α) = v2/ǁvǁ. Similarly cos(β) is and sin(β) is . The angle θ is β − α. Substitute into the trigonometry formula cos(α) cos(β) +sin(β) sin(α) for cos(β −α) to find cos(θ) = v · w/ǁvǁǁwǁ. Solution ǁ ǁ ǁ ǁ First blank: w1/ w . Second blank: w2/ w . Substituting into the trigonome try formula yields cos(β − α) = (w1/ǁwǁ)(v1/ǁvǁ) + (w2/ǁwǁ)(v2/ǁvǁ) = v · w/ǁvǁǁwǁ. Problem - Can three vectors in the xy plane have u · v < 0 and v · w < 0 and u · w < 0? Solution Yes. For instance take u = (1, 0), v = (−1 , √3 ), w = (−1 , −√3 ). Notice 2 u · v = v · w = u · w = −1 .
  • 3. Problem - Find a combination x1w1 + x2w2 + x3w3 that gives the zero vector: Solution Yes. For instance take u = (1, 0), v = (−1 , √3 ), w = (−1 , −√3 ). Notice 2 u · v = v · w = u · w = −1 . Can three vectors in the xy plane have u · v < 0 and v · w < 0 and u · w < 0? Can three vectors in the xy plane have u · v < 0 and v · w < 0 and u · w < 0? Can three vectors in the xy plane have u · v < 0 and v · w < 0 and u · w < 0?
  • 4. Those vectors are (independent)(dependent). The three vectors lie in a . The matrix W with those columns is not invertible. Solution Observe w1 − 2w2 + w3 = 0. The vectors are dependent. They lie in a plane. Problem - The very last words say that the 5 by 5 centered difference matrix is not invertible. Write down the 5 equations Cx = b. Find a combination of left sides that gives zero. What combination of b1, b2, b3, b4, b5 must be zero? The 5 by 5 centered difference matrix is The five equations Cx = b are x2 = b1, −x1 + x3 = b2, −x2 + x4 = b3, −x3 + x5 = b4, −x4 = b5. Observe that the sum of the first, third, and fifth equations is zero. Similarly, b1 + b3 + b5 = 0
  • 5. Problem - Start with the vector u0 = (1, 0). Multiply again and again by the same “Markov matrix” A = [.8 .3; .2 .7]. The next three vectors are u1, u2, u3 What property do you notice for all four vectors u0, u1, u2, u3. Solution Computing, we get . 7 .65 u2 = u3 = . .3 .35 All four vectors have components that sum to one
  • 6. Problem : Continue Problem 29 from u0 = (1, 0) to u7, and also from v0 = (0, 1) to v7. What do you notice about u7 and v7? Here are two MATLAB codes, with while and for. They plot u0 to u7 and v0 to v7. The u’s and the v’s are approaching a steady state vector s. Guess that vector and check that As = s. If you start with s, then you stay with s. Solution Here is the code entered into MATLAB. u= [1; 0]; A= [.8 .3; .2 .7]; x= u; k= [0 : 7]; while size (x, 2)<=7 u= A*u; x= [x, u]; end plot (k,x) v= [0;1]; A= [.8 .3; .2 .7]; x= v; k= [0:7]; for j=1:7 v= A*v; x=[x, v]; end plot (k, x)
  • 7. In this graph, we see that the sequence u1, u2, . . . , u7 is approaching (.6, .4). In this graph, we see that the sequence v1, v2, . . . , v7 is approaching (.6, .4).
  • 8. From the graphs, we guess that s = (.6, .4) is a steady state vector. We verify this with the computation
  • 9. Problem Three planes can fail to have an intersection point, even if no planes are parallel. The system is singular if row 3 of A is a of the first two rows. Find a third equation that can’t be solved together with x + y + z = 0 and x − 2y − z = 1. Solution The system is singular if row 3 of A is a linear combination of the first two rows. There are many possible choices of a third equation that cannot be solved together with the ones given. An example is 2x + 5y + 4z = 1. Note that the left hand side of the third equation is the three times the left hand side of thte first minus the left hand side of the second. However, the right hand side does not satisfy this relation. Problem Start with 100 equations Ax = 0 for 100 unknowns x = (x1, . . . , x100). Suppose elimination reduces the 100th equation to 0 = 0, so the system is “singular”. Elimination takes linear combinations of the rows. So this singular system has the singular property: Some linear combination of the 100 rows is . Singular systems Ax = 0 have infinitely many solutions. This means that some linear combination of the 100 columns is . Invent a 100 by 100 singular matrix with no zero entries. For your matrix, describe in words the row picture and the column picture of Ax = 0. Not necessary to draw 100-dimensional space.
  • 10. Zero. Solution Zero. (c) There are many possible answers. For instance, the matrix for which every row is (1 2 3 · · · 100). (d) The row picture is 100 copies of the hyperplane in 100-space defined by the equation x1 + 2x2 + 3x3 + · · · + 100x100 = 0. The column picture is the 100 vectors proportional to (1 1 1 10, 20, . . . , 1000. Problem : The entries of A and x are aij and xj . So the first component of Ax is a1j xj = a11x1 + + a1nxn. If E21 subtracts row 1 from row 2, write a formula for the third component of Ax the (2, 1) entry of E21A the (2, 1) entry of E21(E21A) the first component of E21Ax. Solution
  • 11. Problem : Find the triangular matrix E that reduces “Pascal’s matrix ” to a smaller Pascal: Which matrix M (multiplying several E’s) reduces Pascal all the way to I? One can eliminate the second column with the matrix and the third column with the matrix