Added examples/equation-solving.rkt
This commit is contained in:
parent
1c86406c9c
commit
66ceaeb682
8
bracket/examples/equation-solving.rkt
Normal file
8
bracket/examples/equation-solving.rkt
Normal 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
|
Loading…
Reference in New Issue
Block a user