I am trying to do a proof by resolution but I don't think I have the correct translation into logic for one of the sentences given.
Sentence: There is a SUV that is bigger than every car.
My current answer is this: ∃ x ∀ y [SUV(x) ∧ Car(y)] --> Bigger(x, y)
This is my answer in CNF: ¬SUV(f) ∨ ¬Car(g) ∨ Bigger(f, g)
Is this correct? Or am I doing something wrong?
Your association is a bit off.
"There is something (call it $x$) that is a SUV and, for anything (call it $y$), $x$ is bigger than $y$ if $y$ is a car."
$$\exists x~\Big(\operatorname{SUV}(x)\land \forall y~\big(\operatorname{Car}(y)\to\operatorname{Bigger}(x,y)\big)\Big)$$
Which is equivalent to the PRENEX form:
$$\exists x~\forall y~\Big(\operatorname{SUV}(x)\land \big(\operatorname{Car}(y)\to\operatorname{Bigger}(x,y)\big)\Big)$$
So try your resolution encoding again from that.