Matrix algebra - Gauss 0=0, determinant = 0

Click For Summary
SUMMARY

The discussion centers around solving a system of equations using mesh analysis, specifically for finding current z in an electrical circuit represented by the matrix equation A*x=b. The matrix A, defined as A= \left(\begin{array}{ccc}+30x&-15y&-15z\\-15x&+30y&-15z\\-15x&-15y&+30z\end{array}\right), has a determinant of zero, rendering Cramer's method inapplicable. The Gauss elimination method leads to the equation 0=0, indicating an infinite number of solutions, including z=0. The original matrix formulation was incorrect, necessitating a revision to achieve a solvable system.

PREREQUISITES
  • Understanding of matrix algebra and determinants
  • Familiarity with Gauss elimination and Cramer's method
  • Basic knowledge of electrical circuit analysis
  • Ability to formulate and manipulate systems of linear equations
NEXT STEPS
  • Review the principles of matrix determinants and their implications in linear systems
  • Study the application of Gauss elimination in solving linear equations
  • Learn about the physical interpretation of infinite solutions in electrical circuits
  • Examine correct matrix formulations for mesh analysis in circuit theory
USEFUL FOR

Electrical engineering students, circuit analysts, and anyone involved in solving linear systems in electrical circuits will benefit from this discussion.

DrOnline
Messages
73
Reaction score
0

Homework Statement


Mesh Analysis, find current z:

A= \left(\begin{array}{ccc}+30x&-15y&-15z\\-15x&+30y&-15z\\-15x&-15y&+30z\end{array}\right)

b= \left(\begin{array}{c}+10\\-10\\0\end{array}\right)

Homework Equations



A*x=b
A= resistance
x= currents
b= voltage sources

Gauss elimination

Cramer's method

The Attempt at a Solution



I first tried Cramer's method. This requires the determinant of A. Unfortunately, that determinant = zero, make the method impossible as I cannot divide by zero.

Then I try Gauss elimination, and end up with zero = zero.

The correct answer for current z should be 0.

What should I do? None of the methods work. What does this prove? I have checked, and rechecked my matrices...

So how can I calculate the current z?
 
Last edited:
Physics news on Phys.org
If the equation "Ax= B" reduces to "0= 0" then the original equation is true for all x.
 
I wonder how that actually translate to the electrical circuit...

It's so strange. With just batteries and resistors, surely there always be currents != zero, and the answers must be concrete.

Can you shed some more light on this?
 
Try posting the original problem. There may be some error in the matrix formulation.
 
TttHQ.jpg


All R's are 15Ω And all U's are 10V

\begin{array}{ccc}R1(x-z)&0&R3(x-y)&0&=U1\\0&R2(y-z)&R3(y-x)&0&=-U2\\R1(z-x)&R2(z-y)&0&R4z&=0\end{array}

Sorting into:

\begin{array}{ccc}(R1+R3)*x&-R3*y&-R1*z\\-R3*x&(R2+R3)*y&-R2*z\\-R1*x&-R2*y&(R1+R2)*z\end{array}

A=\left(\begin{array}{ccc}30&-15&-15\\-15&30&-15\\-15&-15&30\end{array}\right)

x=\left(\begin{array}{c}x\\y\\z\end{array}\right)

b=\left(\begin{array}{c}10\\-10\\0\end{array}\right)

A*x=b

Find current z. Answer is given as 0A.
 
Last edited:
DrOnline said:

Homework Statement


Mesh Analysis, find current z:

A= \left(\begin{array}{ccc}+30x&-15y&-15z\\-15x&+30y&-15z\\-15x&-15y&+30z\end{array}\right)

b= \left(\begin{array}{c}+10\\-10\\0\end{array}\right)

Homework Equations



A*x=b
A= resistance
x= currents
b= voltage sources

Gauss elimination

Cramer's method

The Attempt at a Solution



I first tried Cramer's method. This requires the determinant of A. Unfortunately, that determinant = zero, make the method impossible as I cannot divide by zero.

Then I try Gauss elimination, and end up with zero = zero.

The correct answer for current z should be 0.

What should I do? None of the methods work. What does this prove? I have checked, and rechecked my matrices...

So how can I calculate the current z?

The matrix A should not have x,y and z it it; with A as you have written it, the system Ax = b will be a set of coupled quadratic equations!

So, you have the system of equations
30x - 15y - 15z = 10\\<br /> -15x + 30y - 15z = -10\\<br /> -15x - 15y + 30z = 0.
So, solving the third equation for x, say, gives x = 2z-y, and substituting that into the first two equations gives
-45y + 45z = 10\\<br /> 45y - 45z = -10.
One of these is redundant, so all we end up with is 45y = 45z - 10, or y = z - (2/9).
This gives x = z + (2/9). So that is the form of solution: x = z + (2/9), y = z - (2/9), z = anything.

That is always what happens when you do Gaussian elimination on a system with determinant = 0: you either get no solution at all, or else you get an infinite number of solutions (as in this case). Just saying 0 = 0 misses a whole lot of important information.
 
Wow, thanks, but if z has an infinite number of solutions, how can the answer be stated as z=0?

I know the currents should not be in the A matrix, that was a lazy mistake on my part because it takes a while to write all the matrices in tex I kinda mashed two together for Gauss. See my new post that clearly outlines my method. I don't think I made any mistakes creating the matrices.
 
DrOnline said:
Wow, thanks, but if z has an infinite number of solutions, how can the answer be stated as z=0?

I know the currents should not be in the A matrix, that was a lazy mistake on my part because it takes a while to write all the matrices in tex I kinda mashed two together for Gauss. See my new post that clearly outlines my method. I don't think I made any mistakes creating the matrices.


Well, in answer to your question: z = 0 is one of the possible solutions, but there are infinitely many others as well. However, tht does not solve your physical problem, which arises because your matrix is wrong. Your original equations are
R_1(x−z)+R_3(x-y)=U_1\\<br /> R_2(y-z)+R_3(y-x) = -U_2\\<br /> R_1(z-x)+R_2(z-y)+R_4z=0
so the last equation is -R1 x - R2 y + (R1 + R2 + R4)z = 0, or -15x -15y + 45z = 0. Therefore, A should have '45' (not '30') in the bottom right corner.

Whenever you see an 'unsolvable' problem in a formulation of a simple physical question, you (should) know that you must have done something wrong!
 
... sorry for wasting your time. Like I wrote, I checked and rechecked and spent a while on it, and all the time it was a stupid mistake like that.

Thanks!
 

Similar threads

  • · Replies 9 ·
Replies
9
Views
3K
Replies
1
Views
2K
  • · Replies 32 ·
2
Replies
32
Views
3K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 34 ·
2
Replies
34
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 18 ·
Replies
18
Views
3K