[guided]Let $x,y,z \in A$. The Jacobi identity is the statement that the map
\begin{align*}
J: A \times A \times A &\to A \\
(x,y,z) &\mapsto [x,[y,z]] + [y,[z,x]] + [z,[x,y]]
\end{align*}
is identically zero. We prove this by expanding every bracket until only products of three elements remain.
First expand the inner bracket $[y,z] = yz - zy$ and then the outer commutator with $x$:
\begin{align*}
[x,[y,z]]
&= x[y,z] - [y,z]x \\
&= x(yz - zy) - (yz - zy)x \\
&= x(yz) - x(zy) - (yz)x + (zy)x.
\end{align*}
Associativity is the algebraic hypothesis used here: it allows us to remove parentheses from products of three elements. Thus
\begin{align*}
[x,[y,z]]
&= xyz - xzy - yzx + zyx.
\end{align*}
Now expand the second cyclic term. Since $[z,x] = zx - xz$,
\begin{align*}
[y,[z,x]]
&= y[z,x] - [z,x]y \\
&= y(zx - xz) - (zx - xz)y \\
&= y(zx) - y(xz) - (zx)y + (xz)y \\
&= yzx - yxz - zxy + xzy.
\end{align*}
Again, the last equality uses associativity of multiplication in $A$.
Finally, since $[x,y] = xy - yx$,
\begin{align*}
[z,[x,y]]
&= z[x,y] - [x,y]z \\
&= z(xy - yx) - (xy - yx)z \\
&= z(xy) - z(yx) - (xy)z + (yx)z \\
&= zxy - zyx - xyz + yxz.
\end{align*}
We now add the three expanded expressions:
\begin{align*}
J(x,y,z)
&= [x,[y,z]] + [y,[z,x]] + [z,[x,y]] \\
&= (xyz - xzy - yzx + zyx) \\
&\quad + (yzx - yxz - zxy + xzy) \\
&\quad + (zxy - zyx - xyz + yxz).
\end{align*}
The terms cancel in opposite-sign pairs:
\begin{align*}
xyz - xyz &= 0, &
-xzy + xzy &= 0, \\
-yzx + yzx &= 0, &
-yxz + yxz &= 0, \\
-zxy + zxy &= 0, &
zyx - zyx &= 0.
\end{align*}
Therefore
\begin{align*}
J(x,y,z) = 0.
\end{align*}
Since $x,y,z \in A$ were arbitrary, the Jacobi identity holds for all elements of $A$.[/guided]