So I know that L2 regression problems can be solved by simple autocorrelations and matrix inversions.
Similarly, L1 and L$_{\infty}$ problems can be solved by linear programs.
But what about Lp, for $p \in (1, 2)$? How can I pose these problems in a way that I can solve numerically? What algorithms can be used?
Edit For Clarity: I am looking to develop my own software to solve problems of the form:
$$\underset{\mathbf{\beta}}{\text{minimize}} ||\mathbf{y} - X\mathbf{\beta}||_{p}, p\in (1,2)$$
If you are only interested in the answer, I would recommend you to download CVX (if you are using Matlab) or cvxpy if you are using python. They are very general solvers for convex problems and are super great! If you are interested in solving these problems fast and/or if your problems are very big, you should probably opt for a custom made solver. Since you interested in solving problems with $p\in(1,2)$ you might find this interesting (I guess your problem is similar to equation (27) and (33)?). You can also find the code on one of the authors home page.