I have another linearization question similar to the one in here. This time, I have got two variables in my equation and I am in search of an "$A+B\rho$" or possibly "$A+B\rho+C\theta$" approximation. Here is my equation:
$$W = \frac{\theta}{2(1-\rho)}$$
where $\theta,\rho\in \mathbb{R}^+$ and $\rho\in[0,1)$ i.e., $0\leq \rho <1$.
I tried to come up with "$A+B\rho$", although I feel like the correct form of the linearization should be "$A+B\rho+C\theta$". I followed Leibovici's linear regression method with Taylor series.
I minimized the norm:
$$F = \int_a^b \left(A + B \rho - \frac{\theta}{2(1-\rho)}\right)^{2}$$
After integration, I came up with the following two equations:
$\frac{\partial W}{\partial A} = - 2 A a + 2 A b - B a^{2} + B b^{2} - \theta \log{\left (a - 1 \right )} + \theta \log{\left (b - 1 \right )}$ $\frac{\partial W}{\partial B} = - A a^{2} + A b^{2} - \frac{2 B a^{3}}{3} + \frac{2 B b^{3}}{3} - a \theta + b \theta - \theta \log{\left (a - 1 \right )} + \theta \log{\left (b - 1 \right )}$
Setting $a=0.0$ and $b=0.1$, I came up with the following approximation (which is still nonlinear):
$W\approx 0.499055\theta + 0.554939\theta\rho$
I do not know if this makes life easier or not, but, we have the following relationship between $\rho$ and $\theta$:
$$\rho = \sum_{j\in J} \frac{\lambda_j}{\mu_j}$$ and $$\theta = \sum_{j\in J} \frac{\lambda_j}{\mu_j^2}$$
Additionally, I am not really in search of a Newton/Newton-Raphson linearization, as I believe a linear line with a single point approximation does not satisfactorily represent the curve in this case. Considering $\theta\in \mathbb{R}^+$, I do not think, Newton derived methods would help me.
Any recommendation is appreciated.