Algebraic functions and Manipulations

Definitions

Solving an Equation

The syntax is solve(equation,variable)
Suppose the equation in question is 3x^2-2x-7=0 type

solve(3*x^2-2*x-7=0,x)
hit ENTER
result
hit ENTER

The solutions to that quadratic should be returned.
You can also ask the problem in a more english like query like...

What are the roots to 3*x^2-2*x-7 in terms of x

Factoring