I want to recreate the following:
What I have is this:
\begin{equation} \label{eq1}
\begin{split}
\nabla f(x_i) = \nabla f(x_i, y_j, z_k) & \approx ( \dfrac{1}{2} \left( f(x_{i+1}, y_j, z_k) - f(x_{i-1}, y_j, z_k) \right), \\
& \phantom{abc} \dfrac{1}{2} \left( f(x_{i}, y_{j+1}, z_k) - f(x_{i}, y_{j-1}, z_k) \right), \\
& \phantom{abc} \dfrac{1}{2} \left( f(x_{i}, y_j, z_{k+1}) - f(x_{i}, y_j, z_{k-1}) \right) )
\end{split}
\end{equation}
Which produces this:
When I try to change the size of the first and last bracket with \left and \right I get an error. How else could I adjust the sizes of the first and last bracket?


\left( ... \right)doesn't work over ampersands and multi lines equations. instead it you need to use\bigl(or\biggl(etc braces, or closed each line with\right.however, this not guaranty that the left and right parenthesis will have the same size. – Zarko Dec 06 '17 at 15:39