[example:NonLinearSystem]
**Complex Case (System):** Consider the system solving for $(u, v)$ in terms of $(x, y)$:
\begin{align*}
F_1(x, y, u, v) &= u^3 + x v - y = 0 \\
F_2(x, y, u, v) &= v^3 + y u - x = 0
\end{align*}
Let $F = (F_1, F_2)$. We check solvability near a solution, say $p_0 = (x, y, u, v) = (1, 1, 1, 0)$.
The Jacobian block corresponding to the last two variables $(u, v)$ is:
\begin{align*}
D_{(u,v)} F = \begin{bmatrix} \frac{\partial F_1}{\partial u} & \frac{\partial F_1}{\partial v} \\ \frac{\partial F_2}{\partial u} & \frac{\partial F_2}{\partial v} \end{bmatrix} = \begin{bmatrix} 3u^2 & x \\ y & 3v^2 \end{bmatrix}
\end{align*}
Evaluating at $p_0=(1,1,1,0)$:
\begin{align*}
\det \begin{bmatrix} 3(1)^2 & 1 \\ 1 & 3(0)^2 \end{bmatrix} = \det \begin{bmatrix} 3 & 1 \\ 1 & 0 \end{bmatrix} = -1 \neq 0
\end{align*}
Since the determinant is non-zero, there exist unique functions $u(x, y)$ and $v(x, y)$ defined in a neighborhood of $(1, 1)$ satisfying the system.
[/example]