Added examples/equation-solving.rkt

This commit is contained in:
Jens Axel Søgaard 2012-07-04 23:43:51 +02:00
parent 1c86406c9c
commit 66ceaeb682

View File

@ -0,0 +1,8 @@
#lang bracket
DeclareVars(x,a,b,c);
Solve(2*x=1,x); % x = 1/2
Solve(2*x+3=1,x); % x = -1
Solve(a*x+b=c,x); % x = (c-b)/a