Which statement returns the roots for the polynomial x^2 + 2x - 4?
x^2 + 2x - 4
roots([1 2 -4])
polyfit(x^2 + 2x - 4 == 0)
solve(x^2 + 2x - 4 == 0)
poly([1 2 -4])