I will ask a simple question and might have an issue on the site that explains better about it, but not found.
I am formulating a code that defines me an equation that I can generate a plot.
m = {{1, 1, 1}, {1, 2, 3}, {1, 4, 9}};
b = {1, 2, 3};
abc=LinearSolve[m, b]
f=abc[[1]]*x+ abc[[2]]*y+ abc[[3]]*z
sol=Solve[f==0,z]
Plot3D[sol,{x,0,15},{y,0,15}]
Or
Plot3D[z,{x,0,15},{y,0,15}]
I'm realizing that there is a mistake, but I do not know how to get an equation from LinearSolve output.

Dot[]to form the equation, of course. – J. M.'s missing motivation Jul 14 '16 at 23:24RotationMatrix[]is built-in, no? Do you know how to work with the Hessian form of a plane? – J. M.'s missing motivation Jul 15 '16 at 00:25Solve[]altogether:sol = Expand[-Most[abc].{x, y}/Last[abc]]. – J. M.'s missing motivation Jul 17 '16 at 13:27