7 - a - 4b - ax = 0
8 - 2a - 5b + bx = 0
9 - 3a - 6b - x = 0
I just have to find the value of x.
What is the fastest algorithm to solve a problem of the above given template with possibly different constants and co-efficients. The template will always remain the same. Eg: if n=4(here n=3), then I would get an extra column of constant c and an extra equation too.
x might have 1 to n number of solutions depending on the equations.
The system is not a Linear System because of the existence of $ax$ and $bx$ in equations $1$ and $2$. However, we will try Gaussian_elimination. Note: you will need to scroll to see the rest of the answer...
Note:
If you write the system as:
you could follow the same process and get a general result.