program for solving equation in c#

c#, math

Solution

You need to follow several steps:

- You need to have a parser, to pass these two equations.

- Then you can use method like Solving Systems of Equations with Matrices ( for linear systems)

Problem

x+2y=8 , 2x+y=14 this are equations this is just example i gave for understanding . from this equation i like to find x,y values using c# program anybody help for me.how can implement this in program?...

Original source