Understanding Matrices Infinite: Case 3

  • Context: Undergrad 
  • Thread starter Thread starter jwxie
  • Start date Start date
  • Tags Tags
    Infinite Matrices
Click For Summary

Discussion Overview

The discussion revolves around understanding the conditions for solutions of a 3x3 matrix equation, specifically focusing on cases of unique solutions, no solutions, and infinite solutions. Participants are exploring the implications of the determinant of the matrix and how changes in specific elements affect the solution set.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant expresses confusion about the concept of infinite solutions in relation to a 3x3 matrix and seeks clarification on how this case arises.
  • Another participant confirms the matrix equation format and explains that a unique solution exists when the determinant is non-zero, while a determinant of zero indicates either no solutions or infinite solutions, depending on the corresponding rows of the augmented matrix.
  • A participant shares a specific matrix and discusses the process of row reduction, questioning how to achieve a certain form in the third row.
  • There is a correction regarding the classification of cases based on the determinant, emphasizing that the determinant must be zero for infinite solutions and that the values of the vector b are crucial for distinguishing between no solutions and infinite solutions.
  • Another participant provides a detailed explanation of the row reduction process, suggesting steps to achieve the desired echelon form and correcting terminology from "room" to "cell" in the context of matrices.

Areas of Agreement / Disagreement

Participants generally agree on the conditions for unique solutions and the role of the determinant. However, there is some disagreement regarding the classification of cases and the specific steps in row reduction, indicating that the discussion remains unresolved in certain aspects.

Contextual Notes

Participants have not fully resolved the implications of the determinant being zero, particularly in distinguishing between no solutions and infinite solutions. There are also unresolved assumptions regarding the specific values of A1 and b1 in the matrix.

jwxie
Messages
278
Reaction score
0
I don't understand the asepcts of matrices infinite.

Let say I have 3 x 3 matrix

A = [ (A1) 2 3; 2 3 4; 4 4 5 ]
b = [ (b1); 2; 3]

I want to find all three conditions:
case 1 det =/ 0 - > unique solution
case 2 det = 0, no solution
case 3 infinite solution

I am actually writing a program for these 3 cases. I am only allow to change A1 and b2 (they are variables). I know how to program them. But what I don't understand is the concept of matrices in terms of the 3 cases.

Can someone explains, how does one gets case 3?
i see how case 2 you can use det to determine something solution or no solution.
what about case 3?
 
Physics news on Phys.org
jwxie said:
I don't understand the asepcts of matrices infinite.

Let say I have 3 x 3 matrix

A = [ (A1) 2 3; 2 3 4; 4 4 5 ]
b = [ (b1); 2; 3]
I have no idea what this means. Do you mean you have the matrix equation Ax= b
[tex]\begin{bmatrix}A_1 & 2 & 3 \\ 2 & 3 & 4 \\ 4 & 4 & 5\end{bmatrix}\begin{bmatrix}x \\ y \\ z\end{bmatrix}= \begin{bmatrix}b_1 \\ 2 \\ 3\end{bmatrix}[/tex]?

I want to find all three conditions:
case 1 det =/ 0 - > unique solution
case 2 det = 0, no solution
case 3 infinite solution

I am actually writing a program for these 3 cases. I am only allow to change A1 and b2 (they are variables). I know how to program them. But what I don't understand is the concept of matrices in terms of the 3 cases.

Can someone explains, how does one gets case 3?
i see how case 2 you can use det to determine something solution or no solution.
what about case 3?
A matrix equation, Ax= b, has a unique solution if and only if its determinant is non-zero. That means you can row-reduce A without getting a row consisting only of "0"s. If the determinant is 0, then row-reducing A will give at least one row consisting of "0"s. If the corresponding rows of b, row-reduced along with A, are also 0 there are an infinite number of solutions. If any of them are not 0, there is no solution.
 
Yes. Thanks for the response. Here is the Matrix

3 2 0 | 4
0 1 2 | 0
4 0 0 | 0

I was looking at the reduction form - so if I make the first row reduces by 1/3 I will get 1 2/3 0 and 4/3
Now, I have the first two rows fit in the diagonally form of 1 1 1. But the third room, how do I make the 3rd zero into 1 so I have 1 1 1 for each row?
Work out det(A) as a function of alpha. All values where det(A) is not 0 are unique solutions.

For the one value of alpha where det(A) = 0, I would use row reduction on the system to find the values of beta that produce an inconsistent (no solutions) or consistent (infinite solutions) system.

You have your cases listed incorrectly, which will make it hard to solve your problem. They should be:

case 1 det A /= 0 -> unique solution
case 2 det A = 0, no solution
case 3 det A = 0, infinite solutions

The determinant of A depends only on A, so you need b to distinguish between cases 2 and 3.
 
jwxie said:
Yes. Thanks for the response. Here is the Matrix

3 2 0 | 4
0 1 2 | 0
4 0 0 | 0

I was looking at the reduction form - so if I make the first row reduces by 1/3 I will get 1 2/3 0 and 4/3
Now, I have the first two rows fit in the diagonally form of 1 1 1. But the third room, how do I make the 3rd zero into 1 so I have 1 1 1 for each row?
What happened to A1 and b1?

Any way, you can, as you say, multiply the first row by 1/3 to get a 1 in the first cell of the first row. But you should not worry about the other columns until you have completed the first column. You want
[tex]\begin{bmatrix}1 \\ 0 \\ 0\end{bmatrix}[/tex]
and already have a "0" in the second row so just subtract 4 times that (new) first row from the third:
[tex]\left[\begin{array}{ccc}1 & \frac{2}{3} & 0 \\ 0 & 1 & 2 \\ 0 & -\frac{8}{3} & 0\end{array}\right |\left|\begin{array}{c}\frac{4}{3} \\ 0 \\ -\frac{16}{3}\end{array}\right][/tex]

Now, you already have a "1" in the "pivot" position, the second cell in the second row. To get rid of that "-8/3" add 8/3 times the second row to the third:
[tex]\left[\begin{array}{ccc}1 & \frac{2}{3} & 0 \\ 0 & 1 & 2 \\ 0 & 0 & \frac{16}{3}\end{array}\right |\left|\begin{array}{c}\frac{4}{3} \\ 0 \\ -\frac{16}{3}\end{array}\right][/tex]

Notice that, in doing that the final pivot position, the third cell in the third row, is no longer 0. The final step to get it in "echelon" form would be to divide the third row by 16/3.
If you want it in diagonal form, it is easy to "back substitute".

By the way, in talking about matrices, the standard English term is "cell", not "room".
 
Last edited by a moderator:

Similar threads

  • · Replies 11 ·
Replies
11
Views
6K
  • · Replies 4 ·
Replies
4
Views
3K
Replies
13
Views
4K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 6 ·
Replies
6
Views
1K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 9 ·
Replies
9
Views
3K