My polygon is given by $P=$$\left\{x\geq 0, y\geq 0, 3x-4y\leq 2, 4x+3y\leq 12\right\}$
Now trying to find the largest circle inscribed inside these half-planes. But whenever I formulate it as an LP problem, the answers don't make sense. I'm using the method of Chebyshev Center and these notes. So then I get:
Maximize r
Subject to the constraints:
$3x_c + 5r \leq 2$
$-4x_c + 5r \leq 2$
$4x_c + 5r \leq 12$
$3x_c + 5r \leq 12$
Plugging into maple I get $(x_c, r) = (1/4, 1/4)$ but that doesn't really make sense. Is there something wrong with my formulation?