$3SATplus$
Input: 2 CNF formulas $F_1$, $F_2$ where all clauses have exactly $3$ literals.
Question: Does every truth assignment satisfy at-least as many $F_2$ clauses as $F_1$'s?
Assume $3SATPLUS \in NP$
Prove $3SAT \leq_p$ $3SATplus$
The reduction is as follows
$F_1 = (x \lor \bar{x} \lor x) \land \dots \land (x \lor \bar{x} \lor x)$
For $n$ clauses. This means it will always accept $n$ clauses.
$F_2 = F$
This is polytime because its $2n$ clauses only $n$ more than $F$
if $F \in 3SAT$, then $F_1 = F_2$ since they both satisfy $n$ clauses so $F_1, F_2 \in 3SATplus$
I'll prove the contrapositive
If $F \notin 3SAT$, then $F_1$ satisfies $n$ clauses and $F_2$ can satisfies only up to $n-1$ so $F_1 > F_2$ always. Hence, $F_1, F_2 \notin 3SATplus$
Is there anything else left to say or does this confirm its $NP-hard$?