.
Hello, there is simple and direct way to check if the given number is the root to given equation.
This way is to substitute the value unto equation and calculate.
Next, if you are given two values -3 and 1, then there are TWO WAYS to construct a quadratic equation with the given roots.
First way is to take two associated binomials (x-(-3)) = (x+3) and (x-1) and multiply these binomials.
So, your quadratic equation will be
(x+3)*(x-1) = 0.
If you want to have left side in the standard form, make FOIL.
Second way is to use Vieta's theorem.
It says that the sough equation has the leading coefficient 1 (one) at x^2;
the coefficient at x is the sum of the supposed roots with the opposite sign;
and the constant term is the product of the supposed roots.
So, in your case, the leading coefficient is 1; the coefficient at x is -((-3) + 1) = - (-2) = 2 and the constant term is (-3)*1 = -3.
Thus the quadratic polynomial is x^2 + 2x - 3 (exactly, as your polynomial).
So, I wrote a lot at this post, and it is just time for me to STOP.