I have a symbolic matrix given as
$$ A = \begin{bmatrix} 0 & 12.5 & 12.5 k_1-5. \\ 12.5 & 12.5 k_1-5. & 2.\, -5. k_1 \\ k_1 & 0. & 0. \\ \end{bmatrix} $$ when I calculate the inverse of this matrix with Inverse, I obtain the following matrix
.
The problem with this matrix is that all $10^{-15}$ should be rounded to $0$. I do this by using Chop. Basically I just use
Chop[expr, 10^-1] which then gives me
.
However, for example, (1,3) should just simplify to $\frac{1}{k_1}$, but I cannot achieve this with FullSimplify. Is there any other way?