0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

5^x-3^x=16「【面白い解法】1分で解ける裏技」をChatGPTとWolframAlphaとsympyでやってみたい。

Last updated at Posted at 2023-06-27

計算によって,グラフがでます。
ChatGPT で計算できませんでした。
WolframAlphaで計算できました。
sympy で計算できませんでした。
WolframAlphaとsympyでグラフがでます。

オリジナル (youtube) PASSLABO様

(2023/07/21)

xxxx ChatGPT で(できませんでした。) xxx

実数xをすべて求めるよ.5^x-3^x=16

Mathematicaで(できませんでした。)

In
Solve[{5^x - 3^x == 16}, {x}]

Out
この系はSolveで使用できるメソッドでは解けません.

WolframAlphaで

グラフがでます。

解 x = 2

sympyで計算だけ(PASSLABO様のやり方)

勉強中

sympyで計算できませんでした。

計算エラーがでます。
グラフはでます。

from  sympy import *
x=symbols('x',real=True)
myEq=Eq(5**x-3**x,16)
plot(myEq.lhs,myEq.rhs,(x,-3,3))
print("#",solve(myEq,x))

①私の環境は,pycharmです。
②よく聞くのは、Jupyterです。
③web上で、上記のソースを「SymPy Live shell」に、コピー貼り付けでもできました。
黒背景の右上に、マウスを移動すると、コピーマークが発生します。
??? タブレット環境で、コピー貼り付けが実行できませんでした。???

plotは、縦横比が異なります。

0png.png

参考

私のおすすめです。

0
0
1

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?