I'm trying to solve this problem:
Prove that the number of answers for $|a_1|+|a_2|+...+|a_k|≤n$ is equal to the number of answers for $|a_1|+|a_2|+...+|a_n|≤k$. all $a_i$ is an integer number.
I have a solution for non negative $a_i$: We convert $|a_1|+|a_2|+...+|a_k|≤n$ to $a_1+a_2+...+a_k+c=n$ and convert $|a_1|+|a_2|+...+|a_n|≤k$ to $a_1+a_2+...+a_n+c=k$.
By bars and stars theorem: Number of answers for $a_1+a_2+...+a_k+c=n$ is equal to $\binom{n+k}{k}$ and number of answers for $a_1+a_2+...+a_n+c=k$ is equal to $\binom{n+k}{n}$. That $\binom{n+k}{k} = \binom{n+k}{n}$.
but i don't know how to prove for negative integers.
Let $f(n,k)$ be the number of solutions to $|a_1|+\dots+|a_n|\le k$. Note that $$ f(n,k) = f(n-1,k)+2f(n-1,k-1)+2f(n-1,k-2)+\dots+2f(n-1,0),\tag{*} $$ by conditioning on the value of $a_n$. Rearranging, and using $(*)$ applied to $f(n,k-1)$, we get $$ \begin{align} f(n,k) &= f(n-1,k)+f(n-1,k-1)+[f(n-1,k-1)+2f(n-1,k-2)+\dots+2f(n-1,0)]\\ &= f(n-1,k)+f(n-1,k-1)+f(n,k-1) \end{align} $$ The above shows that $f(n,k)$ obeys a recurrence which is symmetric in $n,k$. Since you can easily verify the symmetric base cases $f(n,0)=f(0,k)=1$, the result $f(n,k)=f(k,n)$ follows by induction.