Assume I have two functions, $f_1$ and $f_2$, that both depend on $x$ and $y$, so that $f_1(x,y)$ and $f_2(x,y)$.
I don't know the exact functions, but know values of each function at some points (actually, any points I want).
So, for example, let's say that:
at $x=+1$ and $y=-1$, $$f_1=+9,$$ $$f_2=+7,$$
at $x=-1$ and $y=+1$, $$f_1=-2,$$ $$f_2=-6,$$
at $x=+1$ and $y=+1,$ $$f_1=+11,$$ $$f_2=+9.$$
at $x=-1$ and $y=-1,$ $$f_1=-7,$$ $$f_2=-8.$$
I need to find the values for $x$ and $y$ where both functions equal $0$.
If each function only depended on one variable a linear interpolation would suffice. But as both functions depend on $2$ variables I'm getting a bit confused.
I've been searching on bilinear and trilinear interpolation, but I can't really pinpoint what I actually need to use.
Thank you all.