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 3 years have passed since last update.

積分「22年 岩手大 理工 3(2)」をwolframAlphaとAI_Programmerでやってみたい。

Last updated at Posted at 2022-10-10

曲線y=√(3x-9)とx軸および直線x=6で囲まれた図形の面積を求めよ.

オリジナル

上と同じです。大学入試数学問題集成>【3】(2)

wolframAlphaで

3から6の範囲で√(3x-9)を積分

Integrate[√(3x-9),{x,3,6}]

AI_Programmerで、あと一歩でした。

プロトタイプとして無償公開
「コードを生成」を複数回クリックの場合があります。

Python
曲線y=√(3x-9)とx軸および直線x=6で囲まれた図形の面積を求めよ.

y=math.sqrt(3*x-9)
x=6
A=math.sqrt(3*x-9)*x
print(A)

Python
曲線y=√(3x-9)とx軸および直線x=6で囲まれた図形の面積を求めよ.

from math import *

def f(x):
    return sqrt(3*x-9)

a = 6

S = integral(f, 0, a)
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?