すべてのプログラムは代数学を単純化する数学的なステップを示すことができます。

すべてのプログラムは代数学を単純化する数学的なステップを示すことができます。

代数式を単純化するための数学的な手順を示すことができる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.

おすすめ記事