LoginSignup
0
0

More than 1 year has passed since last update.

「2+√3と√3+2の表示の順序」について,wolframAlphaとsympyで調べてみた。

Last updated at Posted at 2022-09-27

wolframAlphaで

入力 2 + sqrt(3)

入力 sqrt(3) + 2

sympyで

from sympy import *
print("#",2+sqrt(3))
print("#",sqrt(3)+2)
# sqrt(3) + 2
# sqrt(3) + 2

ここで、質問です。

「√3+2 又は 2+√3」 と聞いて、皆さんは、ピンとくるものでしょうか?

google検索で、ヒットしませんでした。
ページ下の、「この記事は以下の記事からリンクされています。」を見て下さい。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0