Is there a way to solve for a system of multiple equations with multiple variables and variables on both sides in java
Lets say im given three (or more) equations in an array list or array like so...
4A=1C
10A=2D
2B=2C+1D
and im allowed to set one variable equal to 1 (lets say A)
is there a java function or quick/simple aproach to get the values of each variable as whole numbers.
(please help)