Jhenrique said:
1) Let A a square matrix, x a colum vector and b another colum vector. So, I want solve for x the following equation: Ax=b
So: x=b÷A = b×A-1 And this is the answer! Or would be this the correct answer x = A-1×b ?
First of all, you shouldn't use the division symbol ÷ for matrices. Why not? Matrices are noncommutative. This is, it can happen that ##AB \neq BA##. The division ÷ is ambiguous in the noncommutative case, because it is unclear whether ##A##÷##B## means ##AB^{-1}## or ##B^{-1}A##. So you should always use the ##B^{-1}## notation.
Anyway, you want to solve ##A\mathbf{x} = \mathbf{b}##. First of all, ##A## might not be an invertible matrix, in which case, you can't always solve this system (and if you can, the solution might not be unique!). If your matrix is invertible, then you can multiply the equation
on the left with ##A^{-1}## and you get
[tex]\mathbf{x} = A^{-1}A\mathbf{x} = A^{-1}\mathbf{b}[/tex]
Multiplying the equation on the right doesn't work since you'll get
[tex]A\mathbf{x}A^{-1} = \mathbf{b}A^{-1}[/tex]
We can't simplify the left-hand side due to noncommutativity.
2) Is possible to solve the equation above for A ? How?
If you mean that ##\mathbf{x}## and ##\mathbf{b}## are known, then no. You don't have enough data for a unique solution. That is, there will be many solutions to this problem.