Given the following data points
| X | Y | Z |
|---|---|---|
| 18.23 | 3 | 80 |
| 42.2 | 5.5 | 600 |
| 377.30 | 52.04 | 900 |
| 6835.86 | 646.91 | 17 000 |
| X | Y | Z |
|---|---|---|
| 250 | 20 | ? |
Can I find the function of X and Y that best predicts the value of Z?
In my (basic) understanding, a multivariate regression will give me the equation of a plane, which is not super precise.
How can I get the equivalent of a polynomial function as the fitting function? What tool can I use?

