Computer memory can be minimized by using a different storage mode when the coefficient matrix is symmetric. An n × n symmetric matrix A = (ai j ) has the property that ai j = a j i , so only the elements on and below the main diagonal need to be stored in a vector of length n(n + 1)/2. The elements of the matrix A are placed in a vector v = (vk ) in this order: a11, a21, a22, a31, a32, a33, . . . , an,n. Storing a matrix in this way is known as symmetric storage mode and affects a savings of n(n − 1)/2 memory locations. Here, 
statements.
Write and test procedures
Gauss Sym(n, (vi ), (li ))
Solve Sym(n, (vi ), (li ), (bi ))
which are analogous to procedures Gauss and Solve, except that the coefficient matrix is stored in symmetric storage mode in a one-dimensional array (vi ) and the solution is returned in array (bi ).
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.