eki / mathcraft

A mathtastic computer algebra system.
0 stars 0 forks source link

Solve systems of equations #7

Open eki opened 4 years ago

eki commented 4 years ago

We'd need to change the parser to allow the creation of multiple equations or statements. Probably most easily accomplished by using a comma as delimiter.

x + y = 10, 2x = 4  # => x = 2, y = 8
x = y, x + y = 10   # => x = 5, y = 5