[Note: The given 2 solutions deal only with a simple example but not with the real problem]
Can I force MMA to use original expressions in a result of RowReduce instead of displaying only the condensed result?
For better understanding I give a simple example with Solve instead of RowReduce:
Solve[5x-2==3,x]
x->1
I want a result that includes original terms, e.g.
x->(3+2)/5
My code with RowReduce:
RowReduce[{{-1/(
2 Sqrt[2]) (√(Sqrt[(s6^2 (s1^2 + s3^2) +
s4^2 (s1^2 + s5^2) + s2^2 (s3^2 + s5^2))^2 -
4 (s1^2 s3^2 + s1^2 s5^2 + s3^2 s5^2) (s2^2 s4^2 +
s2^2 s6^2 + s4^2 s6^2)] + s6^2 (s1^2 + s3^2) +
s4^2 (s1^2 + s5^2) + s2^2 (s3^2 + s5^2))), 0, 0, (s1 s4)/2,
0, -(1/2) (s1 s6)}, {0, -1/(
2 Sqrt[2]) (√(Sqrt[(s6^2 (s1^2 + s3^2) +
s4^2 (s1^2 + s5^2) + s2^2 (s3^2 + s5^2))^2 -
4 (s1^2 s3^2 + s1^2 s5^2 + s3^2 s5^2) (s2^2 s4^2 +
s2^2 s6^2 + s4^2 s6^2)] + s6^2 (s1^2 + s3^2) +
s4^2 (s1^2 + s5^2) + s2^2 (s3^2 + s5^2))), -(1/2) (s2 s3),
0, (s2 s5)/2,
0}, {0, -(1/2) (s2 s3), -1/(
2 Sqrt[2]) (√(Sqrt[(s6^2 (s1^2 + s3^2) +
s4^2 (s1^2 + s5^2) + s2^2 (s3^2 + s5^2))^2 -
4 (s1^2 s3^2 + s1^2 s5^2 + s3^2 s5^2) (s2^2 s4^2 +
s2^2 s6^2 + s4^2 s6^2)] + s6^2 (s1^2 + s3^2) +
s4^2 (s1^2 + s5^2) + s2^2 (s3^2 + s5^2))), 0, 0, (s3 s6)/
2}, {(s1 s4)/2, 0,
0, -1/(2 Sqrt[
2]) (√(Sqrt[(s6^2 (s1^2 + s3^2) + s4^2 (s1^2 + s5^2) +
s2^2 (s3^2 + s5^2))^2 -
4 (s1^2 s3^2 + s1^2 s5^2 + s3^2 s5^2) (s2^2 s4^2 +
s2^2 s6^2 + s4^2 s6^2)] + s6^2 (s1^2 + s3^2) +
s4^2 (s1^2 + s5^2) + s2^2 (s3^2 + s5^2))), -(1/2) (s4 s5),
0}, {0, (s2 s5)/2,
0, -(1/2) (s4 s5), -1/(
2 Sqrt[2]) (√(Sqrt[(s6^2 (s1^2 + s3^2) +
s4^2 (s1^2 + s5^2) + s2^2 (s3^2 + s5^2))^2 -
4 (s1^2 s3^2 + s1^2 s5^2 + s3^2 s5^2) (s2^2 s4^2 +
s2^2 s6^2 + s4^2 s6^2)] + s6^2 (s1^2 + s3^2) +
s4^2 (s1^2 + s5^2) + s2^2 (s3^2 + s5^2))),
0}, {-(1/2) (s1 s6), 0, (s3 s6)/2, 0,
0, -1/(2 Sqrt[
2]) (√(Sqrt[(s6^2 (s1^2 + s3^2) + s4^2 (s1^2 + s5^2) +
s2^2 (s3^2 + s5^2))^2 -
4 (s1^2 s3^2 + s1^2 s5^2 + s3^2 s5^2) (s2^2 s4^2 +
s2^2 s6^2 + s4^2 s6^2)] + s6^2 (s1^2 + s3^2) +
s4^2 (s1^2 + s5^2) + s2^2 (s3^2 + s5^2)))}}]
In the solution I would like to see all roots as they appear in the above expression so that I can easily associate the terms.
This answer about RowReduce does not work in my case.


Solvewithout rewritingSolveby yourself. Also, you should specify more precisely what you mean by "any other operation" because there are thousands of different "operations" in Mathematica, working very differently from each other. You probably have some particular problem in mind – show it explicitly. – Domen Mar 22 '23 at 14:22Solvewhen you actually want a solution forRowReduce. Show the actual problem you have. It can be simplified (like using a smaller, simpler matrix), but not completely different. – Domen Mar 22 '23 at 14:33mat, postmat[[1;;2, 1;;2]], or make up a simpler matrix! Stop other people wasting time, and answering your question by usingSolve. – Domen Mar 22 '23 at 17:09