web-dev-qa-db-ja.com

Python TypeError:^のサポートされていないオペランドタイプ: 'float'および 'int'

数値積分を使用して定積分の評価を近似する簡単なプログラムを作成しました。ただし、タイトルにエラーが表示される理由については困惑しています。私は1年半の間pythonに触れていないので、私が行方不明になっていることは信じられないほど明白なことかもしれませんが、あなたが私を助けることができればまだ感謝しています:)コードは次のとおりです。

import math
def f(x):
    f=math.sqrt(1+(6*x+4)^2)
    return f


lbound=int(input("Input lower bound for the integral"))
ubound=int(input("Input upper bound for the integral"))
n=int(input("Input number of intervals"))
dx=((ubound-lbound)/n)
integral=0
for i in range(1,n):
    integral=integral+dx*f(i*dx)

print (integral)

コードを実行しようとしたときにIDLEから提供される完全なエラーレポートを次に示します。

Traceback (most recent call last):
  File "C:\Users\******\Desktop\integrals.py", line 13, in <module>
    integral=integral+dx*f(n*dx)
  File "C:\Users\******\Desktop\integrals.py", line 3, in f
    f=math.sqrt(1+(6*x+4)^2)
TypeError: unsupported operand type(s) for ^: 'float' and 'int'
20
Aris Pap

累乗する場合は、オペランドを使用して**でなく^

f=math.sqrt(1+(6*x+4)**2)
28
ilyas patanam