特定函数的泰勒级数逼近

huangapple go评论60阅读模式
英文:

taylor series approximation of a specific function

问题

我在这里只提供代码部分的翻译:

我在尝试为选定的函数程序中的func(x)编写泰勒级数逼近并绘制逼近值与精确值的图形逼近的阶数/精度是用户指定的值此外这必须在不使用数组的情况下完成

import math, matplotlib.pyplot as plt, numpy as np
order = float(input("输入泰勒级数逼近阶数 (n): "))
file_object = open("taylor.dat", "w")
x = -2*np.pi
n = 0
approx = 0
taylor_list = []
def func(x):
    fx = np.sin(x)*np.exp(-x/2)
    return fx
def deriv(n):
    nth = ((-(math.sqrt(5))/2)**n)*np.sin(-n*np.arctan(2))
    return nth
def taylor(x, n):
    tx = ((deriv(n))/(np.math.factorial(n)))*(x**n)
    return tx
while x <= 2*np.pi:
    file_object.write(str(round(x, 10))
    file_object.write(" ")
    fx = func(x)
    file_object.write(str(round(fx, 10))
    file_object.write(" ")
    if n <= order:
        tx = taylor(x, n)
        approx = approx + tx
        n = n + 1
        print(approx)
    file_object.write(str(round(approx, 10))
    file_object.write("\n")
    taylor_list.append(approx)
    x = x + (1/25)*np.pi
file_object.close()

请注意,这是您提供的代码的翻译版本,不包含问题或建议。

英文:

i'm struggling to write a Taylor series approximation for a chosen function (func(x) in the programme) and plot a graph of approximated values against exact. The order/accuracy of the approximation is a user-specified value. Also this must be done without using arrays.

import math, matplotlib.pyplot as plt, numpy as np
order = float(input(&quot;Enter the Taylor series aproximation order (n):  &quot;))
file_object = open(&quot;taylor.dat&quot;, &quot;w&quot;)
x = -2*np.pi
n = 0
approx = 0
taylor_list = []
def func(x):
	fx = np.sin(x)*np.exp(-x/2)
	return fx
def deriv(n):
	nth = ((-(math.sqrt(5))/2)**n)*np.sin(-n*np.arctan(2))
	return nth
def taylor(x, n):
	tx = ((deriv(n))/(np.math.factorial(n)))*(x**n)
	return tx
while x &lt;= 2*np.pi:
	file_object.write(str(round(x, 10)))
	file_object.write(&quot; &quot;)
	fx = func(x)
	file_object.write(str(round(fx, 10)))
	file_object.write(&quot; &quot;)
	if n &lt;= order:
		tx = taylor(x, n)
		approx = approx + tx
		n = n + 1
		print(approx)
	file_object.write(str(round(approx, 10)))
	file_object.write(&quot;\n&quot;)
	taylor_list.append(approx)
	x = x + (1/25)*np.pi
file_object.close()

my issue is that the numbers received by the taylor approximation (approx) arent working no matter what degree of accuracy selected, also it converges around an arbitrary number (25.1281585765..)
the only thing left out is the graphing code which works fine. if you see any problems or suggestions, you'd make my day 特定函数的泰勒级数逼近

答案1

得分: 0

你从不为新的 x 值重置你的 approxn,因此你只是在每个 x 值处附加第一个计算出的值。

英文:

You never reset your approx and n for new values of x, so you just append the first calculated value at every value of x.

huangapple
  • 本文由 发表于 2023年2月24日 01:22:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/75548237.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定