I have an optimisation problem:
$$ \max_{\theta} \quad \theta \\ \text{such that} \qquad |x + \theta a| \leq b $$
where $x, a \in \mathbb{R}^{n}$. We know that $|x| \leq b$. The norm referred to here is the $\ell_{1}$-norm.
Is there a simple way to solve this kind of optimisation problem that does not require using a full blown convex optimisation technique? Given that the problem is one dimensional my only thought was to solve this problem for different intervals of $\theta$ manually. i.e. for $\theta \in [0, 10]$ we may know that $x_{1} + \theta a_{1} \leq 0$ and $x_{i} + \theta a_{i} \geq 0$ for all $ 1< i \leq n$. Then we can replace the constraint with a simple sum and solve. But this would still require a number of checks dependent on the dimension of $a$ which I would like to avoid if possible. Does this problem have a well known analytical solution?