Ubuntu

任何程序都可以顯示簡化代數的數學步驟

  • May 14, 2021

我正在尋找 linux 中的程序,甚至是可以顯示數學步驟以簡化代數表達式的庫

例子:

簡化2(3x+5)

步驟1:2*3x + 2*5

第2步:6x + 2*5

解決方案:6x + 10

好吧,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.

引用自:https://unix.stackexchange.com/questions/649666