We have matrix $A \in \mathbb{R}^{n \times n}$ which we can write in columns form $A = (A_1|A_2|...|A_n)$, where $A_i$ is a column $i$.
Now, we make cyclic shift with a step 2 and add that to the old matrix and get a new matrix: $$B=(A_1+A_{n-1}|A_2+A_{n}|A_3+A_1|A_4+A_2|...|A_n+A_{n-2})$$
The task is to express $\det B$ in terms of $\det A$.
My attempt: I've tried to use linearity of determinant and decompose $\det B$ into $2^n$ terms. I know that a lot of the terms will be zero due to them having same columns, other non-zero terms are specific permutations which can be returned to $\det A$ by switching columns. But there are a lot of them and each one has it's own number of column shifts to return to $A$. So I am stuck here
Hint. Write $B=AC$ for some circulant matrix $C$. As there is an explicit formula for the determinant of a circulant matrix, you may calculate $\det(B)$ from $\det(A)$ and $\det(C)$.