我正在寻找 Linux 中的程序,甚至是一个可以显示简化代数表达式的数学步骤的库
例子:
简化2(3x+5)
步骤1:2*3x + 2*5
第2步:6x + 2*5
解决方案:6x + 10
答案1
嗯,Mathomatic 可以满足你的要求:
$ mathomatic <<EOF
> 2(3x+5)
> simplify
> unfactor
> EOF
Mathomatic version 16.0.5
Copyright (C) 1987-2012 George Gesslein II.
200 equation spaces available in RAM; 2 megabytes per equation space.
ANSI color mode enabled; manage by typing "help color".
Anything done here is temporary, unless it is saved or redirected.
#1: 2*((3*x) + 5)
#1: (6*x) + 10
#1: (6*x) + 10
End of input.
ByeBye!! from Mathomatic.