Hi forum!
I have to find the solution of this system of linear equations:

2x+3y=2
4x+5y=9

I know out to solve the system with paper and a pencil:cool:
However I donĀ“t know the way to do this in C# code!
Could you give me some tips?

Best regards

Eduardo

Well I solved this already...
I used a C# matrix library and I managed:
A=[2,3;4,5];
B=[2;9];
MatrixSolution=(A^-1)*B,
where A^-1 is the inverse of matrix A

Thanks anyway
Eduardo

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.