I'm wondering what the "best" way to approach solving a system of the following form would be:
$A_1X + Be^{CY} = A_2$
$A_3X + Be^{CY} = A_4$
$A_5X + Be^{CY} = A_6$
etc.
EDIT: Coefficients $A_i, B, C$ are all real numbers - X and Y are unknowns.
With this system it looks like I could take the log of both sides and then use least squares to fit a line to the log of the data. What would be the best way to go about it in the more general case if it were not possible to linearize the equation in that way? Apply Newton's method?