I was defining the following assumptions
$Assumptions = {A ∈ Matrices[{3, 3}, Reals],
x ∈ Vectors[3, Reals], b ∈ Vectors[3, Reals]}
Reduce[A . x == b, x]
or
Solve[A . x == b, x]
None of them is working. I was expecting something in the lines of x = Inv(A).b


MatrixQ[A]returnsFalse– bmf Jan 12 '23 at 16:30I was expecting something in the lines of x = Inv(A).bpresupposes thatAis non-singular. – Syed Jan 12 '23 at 18:58