I have a system of equations that cannot be solved for in closed form:
$F_1(x_1,x_2,\beta)=0 ~\&~ F_2(x_1,x_2,\beta)=0 $
I want to solve for functions $x_1=x_1(\beta) ~\&~ x_2=x_2(\beta)$
My approach so far:
- Fix $\beta=\beta_1$
- Solve system numerically for $x^1_1,x^1_2$.
- Repeat for a different $\beta$ on some pre-defined finite support
- Generate a vector of $\mathbf{x_1}=(x^1_1...x^n_1)$ with corresponding $\mathbf{b}=(\beta_1...\beta_n)$
- Approximate the relationship between $x_1$ and $\beta$ using Sieve to get $\hat{x}_1(\beta)$ [repeat for $x_2$]
The problem with this method is that it gets computationally out of hand once I have many equations and parameters due to step 3.
I do know that the system has a solution for any $\beta$, which motivated this method. I also can easily get the Jacobian of $F$ analytically.
Is there a preferable method that is not as computationally burdensome?
Fgiven eachbeta. – Chris Rackauckas May 22 '17 at 21:33