// Program to demonstrate solving using the solvingTransformations.frink file.
// This wee program will do your algebra for you.
use derivatives.frink
use solvingTransformations.frink
showApproximations[false]
symbolicMode[true]
while (text = input["Enter expression: "])
{
expr = parseToExpression[text]
 // This version shows without trace.
// res = transformExpression[expr]
// println["\n$res"]
 // This version shows trace
res = transformExpressionTrace[expr]
println["\n" + join["\n",res]]
}
View or download solve.frink in plain text format
This is a program written in the programming language Frink.
For more information, view the Frink
Documentation or see More Sample Frink Programs.
Alan Eliasen was born 14705 days, 20 hours, 13 minutes ago.