It seems c is constant in Ben's context. So the exact expression of(c1,...,cn)^T should be changed to (v1,...vn)^T. Please see the following changes.
Original form in Ben's context:
Ac^T = (0,...,0)^T
is replaced by the right expression as follows.
Av^T = (0,...,0)^T
In addition, b is not vector but scalar. So the mathematical arrow symbol of vector should be deleted in order to address the right context.
- Homogeneous Linear System(HLS) - Ternary Form
With regard to the following homogenous linear system Ax = 0, A is a coefficient matrix,
a11x1 + a12x2 + a13x3 = 0,
a21x1 + a22x2 + a23x3 = 0,
a31x1 + a32x2 + a33x3 = 0;
The homogeneous linear system has the two kinds of solutions.
1). zero solution
The sufficient and necessary condition of the zero solution for is listed as follows:
det(A) ≠ 0;
2). Non-zero solution:
The sufficient and necessary condition of the zero solution is listed as follow:
det(A) = 0;
- Non-Homogenous(NHLS) - Ternary Form:
With regard to the non-homogenous linear system Ax = b while A is an augmented matrix including b (in contrast with the above-mentioned coefficient matrix), it has the standard ternary linear form form.
a11x1 + a12x2 + a13x3 = b1,
a21x1 + a22x2 + a23x3 = b2,
a31x1 + a32x2 + a33x3 = b3;
Please remember aij is co-efficient(that forms the co-efficient matrix A), xi(or x1,x2,x3) is vector and bi(or b1,b2,b3) is scalar.
We will get the three scenarios as follows.
1). Unique solution:
We will get a unique solution after reducing the above-mentioned matrix A(that is an augmented form) to the strictly upper triangular matrix U that is the echelon form with all zero items following after the non-zero diagonal items according to the elimination method of Gauss-Jordan (or LU decomposition).
2). Infinitely many solutions
We will get infinitely many solutions after reducing the (augmented) matrix A to the following form.
either the combination as follows:
x1 + c13x3 = d1,
x2 + c23x3 = d2,
0 = 0;
where both d1 and d2 are scalars after using element-elimination operation(s).
or the following form as follows:
x1 + c12x2 + c13x3 = d1,
0 = 0,
0 = 0;
3). No solution
We will get no solution after reducing the original coefficient matrix(or non-augmented matrix) with b = 0 to the variant forms as follows;
either the reduced combination (one of them have one zero item):
x1 + c13x3 = d1,
x2 + c23x3 = d2,
0 = d3;
where d1, d2 and d3 are obtained scalars after using element-elimination operations.
or the reduced combinations (with two zeros):
x1 + c12x2 + c13x3 = d1,
0 = d2,
0 = 0;
Notes:
The linear algebra is quite abstract, but it is the essence of the matrix arithmetic.
Any first listed equation in the ternary equation systems should be a monic polynomial.