First time here? Check out the FAQ!
answered 2017-04-18 21:47:38 +0100
You should add as a second argument to solve the variable(s) to solve for, which is x in your case:
solve
x
sage: solve(x^2+3*x+2==0, x) [x == -2, x == -1]
Type solve? for more details and examples.
solve?