Suppose that $\{a_{i}\}_{i=-\infty}^{\infty}$ with $\sum_{i=-\infty}^\infty a_{i} \lt \infty$ is known and that $\{b_i\}_{i=-\infty}^{\infty}$ is such that
$$\sum_{i=-\infty}^\infty a_{i}b_{-i} =1,$$
and that, for all $k \in \mathbb Z/\{0\}$,
$$\sum_{i=-\infty}^\infty a_{i}b_{-i+k} =0.$$
Is it possible to solve for $\{b_{i}\}_{i=-\infty}^{\infty}$ as a function of $\{a_{i}\}_{i=-\infty}^{\infty}$?
I just can't figure out where to start from.
It is impossible to get the analytical solution because computing a numerical method is forced. If you want to obtain the exact solution, it needs modify the problem definition. The following description is redefined from the above original question:
Herewith, circular convolution appears in left side. When we want to estimate the infinity convolution between non-periodic functions, we use the periodic summation of one hand signal. This operation is very important in signal processing. Additionally, the equation can be expressed by linear algebra such like matrix and vectors:
$$ \mathsf{A} \ \boldsymbol{b}=\boldsymbol{v} $$
where
$$ \mathsf{A}= \begin{bmatrix} a_{-n} & a_{n} & a_{n-1} & \cdots & a_{1-n} \\ a_{1-n} & a_{-n} & a_{n} & \cdots & a_{2-n} \\ a_{2-n} & a_{1-n} & a_{-n} & \cdots & a_{3-n} \\ \vdots & \vdots & \vdots & \ddots & \vdots \\ a_{n} & a_{n-1} & a_{n-2} & \cdots & a_{-n} \end{bmatrix} $$
$$ \boldsymbol{b}= \begin{bmatrix} b_{-n} & b_{-n+1} & \cdots & b_{n-1} & b_{n} \end{bmatrix} ^{\text{T}} $$
and $\boldsymbol{v}$ is all zero vector except last element as one:
$$ \boldsymbol{v}= \begin{bmatrix} 0 & 0 & \cdots & \cdots & 0 & 1 \end{bmatrix} ^{\text{T}} $$
Particularly, the matrix $\mathsf{A}$ is circulant matrix which has special form in Toepliz matrix. Then each one side are $N=2n+1$. Furthermore, it can be diagonalized and generated the diagonal matrix $\mathsf{D}$ using DFT matrix $\mathsf{W}$:
$$ \mathsf{W}=\cfrac{1}{\sqrt{N}} \begin{bmatrix} \omega_{0,0} & \omega_{1,0} & \omega_{2,0} & \cdots & \omega_{N-1,0} \\ \omega_{0,1} & \omega_{1,1} & \omega_{2,1} & \cdots & \omega_{N-1,1} \\ \vdots & \ddots & \ddots & \ddots & \vdots \\ \vdots & \ddots & \omega_{j,k} & \ddots & \vdots \\ \vdots & \ddots & \ddots & \ddots & \vdots \\ \omega_{0,N-1} & \cdots & \cdots & \cdots & \omega_{N-1,N-1} \end{bmatrix} $$
where,
$$ \omega_{j,k}=\exp\biggl(\cfrac{2\pi i}{N}jk\biggr) \ \ \ \ (j,k=0,1,\cdots,N-1). $$
Therefore the explicit solution to $\boldsymbol{b}$ is follows:
$$ \boldsymbol{b}= \mathsf{W}^{\text{T}}\mathsf{D}^{-1}\mathsf{W} \ \boldsymbol{v} $$
where $\mathsf{D}$ is:
$$ \mathsf{D}= \begin{cases} \displaystyle \sum_{k=-n}^{n}a_{-k}\omega_{j,k} & (j=k) \\ \\ 0 & (\text{otherwise}) \end{cases} $$
Then, each diagonal elements show the eigenvalues of $\mathsf{A}$. Furthermore, $b_{j}$ can be expressed by the expansion form as follows:
$$ b_{j+1}=\lim_{n\to \infty} \begin{bmatrix} \displaystyle \sum_{l=0}^{2n} \cfrac{w_{j,l}w_{2n,l} }{\displaystyle\sum_{k=-n}^{n}a_{-k}\omega_{j,k}} \end{bmatrix} $$