LoginSignup
0
0

More than 1 year has passed since last update.

式の値(対称式)「21年 静岡文芸大 デザイン 1(1)」をwolframalphaとsympy でやってみたい。

Last updated at Posted at 2022-05-30

オリジナル
a ^(1/ 3)+ a^( −1/ 3) = √ 6

対称式を使っていません。

wolframalpaでできませんでした。

sympyで方程式を解いてもらいました。

from sympy import *
ans=solve(x**(Rational(1,3))+x**(Rational(-1,3))-sqrt(Rational(6,1)),x)[0]
print(simplify(ans**Rational(2,3)+ans**Rational(-2,3)))
print(simplify(ans               +ans**        (-1)  ))

答え
(i ) 4
(ii) 3*sqrt(6)

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