The problem statement is find the maximum and minimum of $f(x,y) = \frac 3 2 x^2y^2+5x + 18y + 25$ under the constraints $ -5 \le 2x - y \le 5 $ and $ 0 \le x + 2y \le 2.5$. I graphed the restricted domain here.
For unconstrained extrema (aka local extrema) $f(x,y)$ has a critical point $\large (\frac{-3 ~10^{2/3}}{5},\frac{-~10^{2/3}}{6}) $ which turns out to be a saddle point using the second derivative test. I don't know if you would include that in the test points, but in any case this point is not in the domain.
Next, I tested the boundaries, and I tried to use Lagrange multipliers. But note that the domain is a parallelogram bounded by $4$ line segments. Thus we have $4$ restrictions. $$ 2x -y -5= 0 \\ 2x -y +5= 0 \\ x+2y = 0 \\ x + 2y - 2.5 = 0 $$ Then I defined $$ L:= f(x,y) - \lambda_1 (2x-y-5) - \lambda_2( 2x-y+5 ) - \lambda_3(x+2y) - \lambda_4(x+2y-2.5)$$ Solving $\nabla L = \bf 0$, I obtain no solutions. Note that I realize I can plug in the lines into the original function and use one variable calculus approach but I was wondering if I could use Lagrange multipliers here. According to Wolfram the maximum is 67 at the critical point $(-1.5, -2)$. My question, is the Lagrange multiplier approach doomed from the start? What is wrong with my hypotheses.