The following function is given: $$f:\Bbb R^3 \rightarrow \Bbb R^2, \left(\begin{matrix}x \\ y \\ z\\ \end{matrix}\right) \mapsto \left(\begin{matrix}-2x^2 + y^2 + z^2 \\ x^2+e^{y-1} - 2y \end{matrix}\right)$$
The first task is to determine whether the function can be solved in terms of $y$ and $z$ at the point $(1, 1, 1)^T$, when $f = (0, 0)^T$. Should this be possible, the next task would be to calculate the derivative at the aforementioned point.
Attempt at a solution:
$f\left(\begin{matrix}1 \\ 1 \\ 1\\ \end{matrix}\right) = \left(\begin{matrix} 0 \\ 0\\ \end{matrix}\right)$ is clear.
Calculate the determinant of the following Jacobian matrix $$\left| \begin{matrix} \frac{\partial f_1(1,1,1)}{\partial y} && \frac{\partial f_1(1,1,1)}{\partial z} \\ \frac{\partial f_2(1,1,1)}{\partial y} && \frac{\partial f_2(1,1,1)}{\partial z}\end{matrix}\right|,$$where $f_1(x,y,z)=-2x^2 + y^2 + z^2$, $f_2(x,y,z)=x^2+e^{y-1} - 2y$.
Thus, we have$$\left| \begin{matrix} 2y^2 && 2z^2 \\ e^{y-1}-2 && 0 \end{matrix}\right|_{(1,1,1)}=\left| \begin{matrix} 2 && 2 \\ -1 && 0 \end{matrix}\right|=2 \neq 0$$
Thus, by the implicit function theorem, there exist open neighborhoods $U\subseteq \Bbb R$ and $V\subseteq \Bbb R^2$ with $1\in U$ and $(1,1)^T \in V$ and a continuously differentiable function $g:U \rightarrow V$ such that for all $(x,y) \in U \times V$ the following holds:$$f(x,y) = 0 \iff y=g(x)$$
It's the next task that I'm not 100% sure on. Do I need to calculate the partial of $f$ w.r.t. $y$ and then again w.r.t. $z$? How does one do this?