I have couple of various questions.
1. When using matricies to solve a system of equasions do I need to get the "upper/lower triangular" (after endles row-operations) or is it enough that
I get one row with one value thats NOT ZERO, one row with 2 values that are NOT ZERO etc...
basically if I have a system with 4 unknowns (x, y, z, u) and 4 equasions do I need to get a matrix like:
n n n n | 6 (x) (numbers are random)
0 n n n | 5 (y)
0 0 n n | -9 (z)
0 0 0 n | 2 (u)
and from that extrapolate u, than z, than y, than x
or can I get a matrix like:
n 0 0 n | 6 (x) (numbers are random)
0 n n n | 5 (y)
n n n n | -9 (z)
0 0 0 n | 2 (u)
and from that extrapolate u, than x (because of 2 zeroes), than y, than z
2. Regarding Inverse Matricies.
As far as Ive figured:
A matrix is regular if its determinant is NOT ZERO
A Matrix is singular if its determinat is ZERO
If a matrix is singular than it DOES NOT have an inverse matrix
I think I have it right so far but does every REGULAR matrix have an inverse matrix?
SO if a determinant of matrix A != 0 doest that mean that A has to have an Inverse matrix?
More questions to come
1. When using matricies to solve a system of equasions do I need to get the "upper/lower triangular" (after endles row-operations) or is it enough that
I get one row with one value thats NOT ZERO, one row with 2 values that are NOT ZERO etc...
basically if I have a system with 4 unknowns (x, y, z, u) and 4 equasions do I need to get a matrix like:
n n n n | 6 (x) (numbers are random)
0 n n n | 5 (y)
0 0 n n | -9 (z)
0 0 0 n | 2 (u)
and from that extrapolate u, than z, than y, than x
or can I get a matrix like:
n 0 0 n | 6 (x) (numbers are random)
0 n n n | 5 (y)
n n n n | -9 (z)
0 0 0 n | 2 (u)
and from that extrapolate u, than x (because of 2 zeroes), than y, than z
2. Regarding Inverse Matricies.
As far as Ive figured:
A matrix is regular if its determinant is NOT ZERO
A Matrix is singular if its determinat is ZERO
If a matrix is singular than it DOES NOT have an inverse matrix
I think I have it right so far but does every REGULAR matrix have an inverse matrix?
SO if a determinant of matrix A != 0 doest that mean that A has to have an Inverse matrix?
More questions to come